@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {

    /* Colors */
    --primary-color: #009738;
    --secondary-color: #2E2E2E;
    --title-color: #3e3e3e;
    --text-color: ##7f7f7f;
    --body-bg-color: #FAFFFC;
    --white-color: #ffffff;

    /* Typography */
    --body-font: 'Lato', sans-serif;
    --title-font: 'Lato', sans-serif;
    --font-weight-small: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

    /* Others */
    --transition: .3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: var(--body-font);
    background-color: var(--body-bg-color);
    overflow: hidden;
    transition: all .3s, background-color 0s;
}

img {
    max-width: 100%;
    height: auto;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    backface-visibility: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: var(--font-weight-semi-bold);
    color: var(--title-color);
    margin-bottom: 0;
}

h1 {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    line-height: 83px;
}

h2 {
    font-size: 3.125rem;
    line-height: 88px;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.15rem;
}

p {
    font: var(--font-weight-normal) 1.125rem/32px var(--body-font);
    color: var(--text-color);
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    font-family: var(--body-font);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-color);
}

input,
textarea,
select,
button {
    outline: none;
    border: none;
}

input::placeholder {
    font-size: 1rem;
    font-weight: var(--font-weight-small);
    color: var(--text-color-light);
}

/* General Css */

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.p-50 {
    padding: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-200 {
    padding-top: 200px;
}

.pt-300 {
    padding-top: 300px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-200 {
    padding-bottom: 200px;
}

.px-50 {
    padding: 0 50px;
}

.px-100 {
    padding: 0 100px;
}

.py-70 {
    padding: 70px 0;
}

.py-80 {
    padding: 80px 0;
}

.mr-50 {
    margin-right: 50px;
}

.sec-spacer-80 {
    padding: 100px 0;
}

.sec-spacer-50 {
    padding: 50px 0;
}

.sec-spacer-top {
    padding-top: 100px;
}

.mah-btn {
    display: inline-block;
    width: max-content;
    height: 48px;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    line-height: 46px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 0 30px;
    text-align: center;
}

.primary-btn {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.primary-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.secondary-btn {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.secondary-btn:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--white-color);
}

.color-text {
    color: var(--primary-color);
}

.overflow-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    text-overflow: ellipsis;
}

input {
    width: 100%;
    height: 65px;
    background-color: #E8EFF3;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 0 30px;
}

input::placeholder {
    color: var(--text-color);
}

/* Header */

/* Product */

.listing-title {
    text-align: left;
    padding: 10px 20px;
    font-size: 2.4rem;
    color: #262626;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
}

.home-bottom-product-listing {
    margin: 30px 0;
    padding: 10px 0;
    background: #fff;
}

.home-bottom-product-listing .product-items .product-item {
    flex: 25%;
    max-width: 25%;
}

.home-bottom-product-listing .product-items .product-item .product-item-info {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* All Css */

.logo img {
    -webkit-width: 140px;
}

.widget-product.upsell {
    margin-top: 20px
}

.account .sidebar.sidebar-main {
    margin-top: 92px
}

.account .sidebar.sidebar-main .block-collapsible-nav-title {
    display: none
}

.account .sidebar .block .block-collapsible-nav-content ul li.current {
    display: block;
    padding: 5px 10px;
    background: #e8e8e8;
    border-left: 3px solid #fcb800
}

.account .sidebar .block .block-collapsible-nav-content ul li.current strong {
    font-weight: 600
}

.account .sidebar .block .block-collapsible-nav-content ul li a {
    display: block;
    background: #f5f5f5;
    padding: 5px 10px
}

.account .sidebar .block .block-collapsible-nav-content ul li a:hover {
    background: #e8e8e8
}

.additional-attributes-wrapper .additional-attributes tr th {
    border-right: 1px solid #ccc !important
}

.additional-attributes-wrapper .additional-attributes tr th,
.additional-attributes tr td {
    padding: 10px 30px !important
}

#co-payment-form .rewards-block #reward-points-form .rewards-checkout-buttons-block {
    position: initial
}

.field>input[type=checkbox]:checked+label:after {
    border: none;
    margin-left: 0 !important
}

.ourbrands-index-view .category-description {
    display: none
}

.aw-ar-review-form .fieldset .control .admin__field-value {
    font-size: 20px;
    font-weight: 500
}

.aw-ar-review-form .fieldset .field .label {
    font-weight: 500
}

.aw-ar-review-form .fieldset .field .control .admin__control-textarea,
.aw-ar-review-form .fieldset .field .control .select {
    width: 100%
}

.aw-ar-review-form .fieldset .field:nth-child(3) {
    display: none
}

.catalog-product-view .product-sku-and-brand {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;
    clear: both;
    align-items: center
}

.catalog-product-view .product-info-stock-sku {
    margin-top: 10px
}

.catalog-product-view .product-info-main .product-info-price .product-info-stock-sku .stock {
    margin-top: 0
}

.product-brand-info .brand-link img {
    max-width: 100px
}

.home-bottom-product-listing {
    margin: 30px 0;
    padding: 10px 0;
    background: #fff
}

.listing-title {
    text-align: left;
    padding: 10px 20px;
    font-size: 2.4rem;
    color: #262626;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1
}

.home-bottom-product-listing .product-items {
    padding: 0 15px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap
}

.home-bottom-product-listing .product-items .product-item {
    flex: 25%;
    max-width: 25%
}

.home-bottom-product-listing .product-items .product-item .product-item-info {
    padding: 0 15px;
    margin-bottom: 30px
}

.home-bottom-product-listing .trigger-next,
.home-bottom-product-listing .viewmore-spinner {
    text-align: center
}

.home-bottom-product-listing .trigger-next button {
    border-radius: 30px;
    padding: 7px 40px;
    /* background: rgba(0, 0, 0, 0.8);
    background: linear-gradient(90deg, #f5d000 0%, rgba(0, 0, 0, 0.8) 100%); */
    background: #26D8E0;
    color: #fff;
    font-weight: 500;
    border: none
}

@media screen and (max-width:991px) {
    .home-bottom-product-listing .product-items .product-item {
        flex: 33%;
        max-width: 33%
    }
}

@media screen and (max-width:575px) {
    .home-bottom-product-listing .product-items .product-item {
        flex: 50%;
        max-width: 50%
    }
}

/* Style-1 */

.action-primary:focus,
.action-primary:active {
    background: #006bb4;
    border: 1px solid #006bb4;
    color: #fff
}

.action-primary:hover {
    background: #006bb4;
    border: 1px solid #006bb4;
    color: #fff
}

.action-primary.disabled,
.action-primary[disabled],
fieldset[disabled] .action-primary {
    opacity: .5;
    cursor: default;
    pointer-events: none
}

.abs-action-link-button:focus,
.abs-action-link-button:active {
    background: #e2e2e2;
    border: 1px solid #cdcdcd;
    color: #333
}

.abs-action-link-button:hover {
    background: #e2e2e2;
    border: 1px solid #cdcdcd;
    color: #555
}

.abs-action-link-button.disabled,
.abs-action-link-button[disabled],
fieldset[disabled] .abs-action-link-button {
    opacity: .5;
    cursor: default;
    pointer-events: none
}

.abs-action-link-button:hover,
.abs-action-link-button:active,
.abs-action-link-button:focus {
    text-decoration: none
}

.abs-action-remove,
.abs-discount-block .action.check,
.abs-add-fields .action.remove {
    line-height: 1.42857143;
    padding: 0;
    color: #1979c3;
    text-decoration: none;
    background: 0 0;
    border: 0;
    display: inline;
    border-radius: 0;
    font-weight: 400;
    color: #262626
}

.abs-action-button-as-link:visited,
.abs-action-remove:visited,
.abs-discount-block .action.check:visited,
.abs-add-fields .action.remove:visited {
    color: #1979c3;
    text-decoration: none
}

.abs-action-button-as-link:hover,
.abs-action-remove:hover,
.abs-discount-block .action.check:hover,
.abs-add-fields .action.remove:hover {
    color: #006bb4;
    text-decoration: underline
}

.abs-action-button-as-link:active,
.abs-action-remove:active,
.abs-discount-block .action.check:active,
.abs-add-fields .action.remove:active {
    color: #ff5501;
    text-decoration: underline
}

.abs-action-button-as-link:hover,
.abs-action-button-as-link:active,
.abs-action-button-as-link:focus,
.abs-action-remove:hover,
.abs-action-remove:active,
.abs-action-remove:focus,
.abs-discount-block .action.check:hover,
.abs-discount-block .action.check:active,
.abs-discount-block .action.check:focus,
.abs-add-fields .action.remove:hover,
.abs-add-fields .action.remove:active,
.abs-add-fields .action.remove:focus {
    background: 0 0;
    border: 0
}

.abs-action-button-as-link.disabled,
.abs-action-button-as-link[disabled],
fieldset[disabled] .abs-action-button-as-link,
.abs-action-remove.disabled,
.abs-action-remove[disabled],
fieldset[disabled] .abs-action-remove,
.abs-discount-block .action.check.disabled,
.abs-discount-block .action.check[disabled],
fieldset[disabled] .abs-discount-block .action.check,
.abs-add-fields .action.remove.disabled,
.abs-add-fields .action.remove[disabled],
fieldset[disabled] .abs-add-fields .action.remove {
    color: #1979c3;
    opacity: .5;
    cursor: default;
    pointer-events: none;
    text-decoration: underline
}

.abs-action-remove:active,
.abs-action-remove:not(:focus),
.abs-discount-block .action.check:active,
.abs-discount-block .action.check:not(:focus),
.abs-add-fields .action.remove:active,
.abs-add-fields .action.remove:not(:focus) {
    box-shadow: none;
    color: rgba(252, 184, 0, .99)
}

.abs-revert-to-action-secondary {
    background: #f2f2f2;
    border: 1px solid #cdcdcd;
    color: #333
}

.abs-revert-secondary-color:focus,
.abs-revert-secondary-color:active,
.abs-revert-to-action-secondary:focus,
.abs-revert-to-action-secondary:active {
    background: #e2e2e2;
    border: 1px solid #cdcdcd;
    color: #333
}

.abs-revert-secondary-color:hover,
.abs-revert-to-action-secondary:hover {
    background: #e2e2e2;
    border: 1px solid #cdcdcd;
    color: #555
}

.abs-dropdown-simple:before,
.abs-dropdown-simple:after {
    content: '';
    display: table
}

.abs-dropdown-simple:after {
    clear: both
}

.abs-dropdown-simple .action.toggle {
    cursor: pointer;
    display: inline-block;
    text-decoration: none
}

.abs-dropdown-simple .action.toggle:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: inherit;
    content: "\f3d0";
    font-family: 'mbicon';
    margin: 0 0 0 5px;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-dropdown-simple .action.toggle:hover:after {
    color: inherit
}

.abs-dropdown-simple .action.toggle:active:after {
    color: inherit
}

.abs-dropdown-simple .action.toggle.active {
    display: inline-block;
    text-decoration: none
}

.abs-dropdown-simple .action.toggle.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: inherit;
    content: '\e618';
    font-family: 'mbicon';
    margin: 0 0 0 5px;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-dropdown-simple .action.toggle.active:hover:after {
    color: inherit
}

.abs-dropdown-simple .action.toggle.active:active:after {
    color: inherit
}

.abs-dropdown-simple ul.dropdown {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #fff;
    border: 1px solid #bbb;
    margin-top: 4px;
    min-width: 200px;
    z-index: 100;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .15)
}

.abs-dropdown-simple ul.dropdown li {
    margin: 0;
    padding: 5px 5px 5px 23px
}

.abs-dropdown-simple ul.dropdown li:hover {
    background: #e8e8e8;
    cursor: pointer
}

.abs-dropdown-simple ul.dropdown:before,
.abs-dropdown-simple ul.dropdown:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.abs-dropdown-simple ul.dropdown:before {
    border: 6px solid;
    border-color: transparent transparent #fff;
    z-index: 99
}

.abs-dropdown-simple ul.dropdown:after {
    border: 7px solid;
    border-color: transparent transparent #bbb;
    z-index: 98
}

.abs-dropdown-simple ul.dropdown:before {
    left: 10px;
    top: -12px
}

.abs-dropdown-simple ul.dropdown:after {
    left: 9px;
    top: -14px
}

.abs-dropdown-simple.active {
    overflow: visible
}

.abs-dropdown-simple.active ul.dropdown {
    display: block
}

.abs-remove-button-for-blocks>span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.abs-remove-button-for-blocks:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 15px;
    color: #7f7f7f;
    content: "\e935";
    font-family: 'mbicon';
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-remove-button-for-blocks:hover:before {
    color: #494949
}

.abs-remove-button-for-blocks:active:before {
    color: #7f7f7f
}

.abs-product-link>a:visited {
    color: #333;
    text-decoration: underline
}

.abs-product-link>a:hover {
    color: #333;
    text-decoration: underline
}

.abs-product-link>a:active {
    color: #333;
    text-decoration: underline
}

.abs-like-link:visited {
    color: #1979c3;
    text-decoration: none
}

.abs-like-link:hover {
    color: #006bb4;
    text-decoration: underline
}

.abs-like-link:active {
    color: #ff5501;
    text-decoration: underline
}

.abs-add-fields .action.remove {
    width: auto;
    line-height: normal;
    position: absolute;
    top: 34px;
    margin-left: 73%
}

.mgz__actions-switch-checkbox {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.abs-navigation-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 34px;
    line-height: 1.2;
    color: inherit;
    content: "\e93a";
    font-family: 'mbicon';
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-split-button:before,
.abs-split-button:after {
    content: '';
    display: table
}

.abs-split-button:after {
    clear: both
}

.abs-split-button .action.split {
    float: left;
    margin: 0
}

.abs-split-button .action.toggle {
    float: right;
    margin: 0
}

.abs-split-button button.action.split {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.abs-split-button button+.action.toggle {
    border-bottom-left-radius: 0;
    border-left: 0;
    border-top-left-radius: 0
}

.abs-split-button .action.toggle {
    padding: 4px 5.5px;
    display: inline-block;
    text-decoration: none
}

.abs-split-button .action.toggle>span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.abs-split-button .action.toggle:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: inherit;
    content: "\f3d0";
    font-family: 'mbicon';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-split-button .action.toggle:hover:after {
    color: inherit
}

.abs-split-button .action.toggle:active:after {
    color: inherit
}

.abs-split-button .action.toggle.active {
    display: inline-block;
    text-decoration: none
}

.abs-split-button .action.toggle.active>span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.abs-split-button .action.toggle.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: inherit;
    content: '\e618';
    font-family: 'mbicon';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-split-button .action.toggle.active:hover:after {
    color: inherit
}

.abs-split-button .action.toggle.active:active:after {
    color: inherit
}

.abs-split-button .items {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #fff;
    border: 1px solid #bbb;
    margin-top: 4px;
    min-width: 100%;
    z-index: 100;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .15)
}

.abs-split-button .items li {
    margin: 0;
    padding: 3px 5.5px
}

.abs-split-button .items li:hover {
    background: #e8e8e8;
    cursor: pointer
}

.abs-split-button .items:before,
.abs-split-button .items:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.abs-split-button .items:before {
    border: 6px solid;
    border-color: transparent transparent #fff;
    z-index: 99
}

.abs-split-button .items:after {
    border: 7px solid;
    border-color: transparent transparent #bbb;
    z-index: 98
}

.abs-split-button .items:before {
    right: 10px;
    top: -12px
}

.abs-split-button .items:after {
    right: 9px;
    top: -14px
}

.abs-split-button.active {
    overflow: visible
}

.abs-split-button.active .items {
    display: block
}

.abs-account-blocks .block-title {
    margin-bottom: 27.5px;
    padding-bottom: 11px;
    border-bottom: 1px solid #d1d1d1
}

.abs-account-blocks .block-title>strong,
.abs-account-blocks .block-title>span {
    color: #262626
}

.abs-tax-total:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 8px;
    line-height: 8px;
    color: inherit;
    content: "\e93a";
    font-family: 'mbicon';
    margin: 3px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-tax-total-expanded:after {
    content: "\e939"
}

.abs-dropdown-items-new .action.new {
    display: inline-block;
    text-decoration: none
}

.abs-icon-add:before,
.abs-dropdown-items-new .action.new:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 10px;
    color: inherit;
    content: "\e936";
    font-family: 'mbicon';
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-sidebar-totals .table-caption {
    display: none
}

.abs-table-striped>tbody>tr:nth-child(even)>td,
.abs-table-striped>tbody>tr:nth-child(even)>th {
    background: #fff
}

.abs-table-striped>thead>tr>th,
.abs-table-striped>tbody>tr>th,
.abs-table-striped>tfoot>tr>th,
.abs-table-striped>thead>tr>td,
.abs-table-striped>tbody>tr>td,
.abs-table-striped>tfoot>tr>td {
    border: none
}

.abs-table-striped>thead>tr>th,
.abs-table-striped>thead>tr>td {
    border-bottom: 1px solid #d1d1d1
}

.abs-field-date input {
    margin-right: 11px;
    width: calc(100% - (23px + 11px))
}

.abs-sidebar-totals .totals-tax-summary .amount .price>span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.abs-sidebar-totals .totals-tax-summary .amount .price:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 12px;
    color: inherit;
    content: "\e93a";
    font-family: 'mbicon';
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center
}

.abs-sidebar-totals .totals-tax-summary.expanded .amount .price:after {
    content: "\e939"
}

.required-captcha.checkbox {
    position: absolute;
    display: block;
    visibility: visible;
    overflow: hidden;
    opacity: 0;
    width: 1px;
    height: 1px
}

.block.newsletter .field-recaptcha .field .control:before {
    content: none
}

.review-form .field-recaptcha {
    margin-bottom: 10px
}

.form.send.friend .g-recaptcha {
    margin-top: 40px
}

@keyframes loading {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        transform: translate(-50%, -50%) rotate(359.9deg)
    }
}

@media print {
    .amfaq-social-buttons {
        display: none
    }
}

.iti {
    position: relative;
    display: inline-block
}

.iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.iti__hide {
    display: none
}

.iti__v-hide {
    visibility: hidden
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 31px;
    padding: 0 6px 0 8px
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid #555
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
    bottom: 100%;
    margin-bottom: -1px
}

@media (max-width:500px) {
    .iti__country-list {
        white-space: normal
    }
}

.iti__flag-box {
    display: inline-block;
    width: 20px
}

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc
}

.iti__country {
    padding: 5px 10px;
    outline: none
}

.iti__dial-code {
    color: #7f7f7f
}

.iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, .05)
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
    vertical-align: middle
}

.iti__flag-box,
.iti__country-name {
    margin-right: 6px
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0
}

.iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, .05)
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover {
    cursor: default
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag {
    background-color: transparent
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, .05)
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px
}

.iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px
}

.iti--container:hover {
    cursor: pointer
}

.iti-mobile .iti--container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed
}

.iti-mobile .iti__country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .iti__country {
    padding: 10px;
    line-height: 1.5em
}

.iti__flag {
    width: 20px
}

.iti__flag.iti__be {
    width: 18px
}

.iti__flag.iti__ch {
    width: 15px
}

.iti__flag.iti__mc {
    width: 19px
}

.iti__flag.iti__ne {
    width: 18px
}

.iti__flag.iti__np {
    width: 13px
}

.iti__flag.iti__va {
    width: 15px
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .iti__flag {
        background-size: 5652px 15px
    }
}

.iti__flag.iti__ac {
    height: 10px;
    background-position: 0 0
}

.iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0
}

.iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0
}

.iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0
}

.iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0
}

.iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0
}

.iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0
}

.iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0
}

.iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0
}

.iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0
}

.iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0
}

.iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0
}

.iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0
}

.iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0
}

.iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0
}

.iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0
}

.iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0
}

.iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0
}

.iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0
}

.iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0
}

.iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0
}

.iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0
}

.iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0
}

.iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0
}

.iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0
}

.iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0
}

.iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0
}

.iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0
}

.iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0
}

.iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0
}

.iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0
}

.iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0
}

.iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0
}

.iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0
}

.iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0
}

.iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0
}

.iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0
}

.iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0
}

.iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0
}

.iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0
}

.iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0
}

.iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0
}

.iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0
}

.iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0
}

.iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0
}

.iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0
}

.iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0
}

.iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0
}

.iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0
}

.iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0
}

.iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0
}

.iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0
}

.iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0
}

.iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0
}

.iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0
}

.iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0
}

.iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0
}

.iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0
}

.iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0
}

.iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0
}

.iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0
}

.iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0
}

.iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0
}

.iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0
}

.iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0
}

.iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0
}

.iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0
}

.iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0
}

.iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0
}

.iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0
}

.iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0
}

.iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0
}

.iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0
}

.iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0
}

.iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0
}

.iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0
}

.iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0
}

.iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0
}

.iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0
}

.iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0
}

.iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0
}

.iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0
}

.iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0
}

.iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0
}

.iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0
}

.iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0
}

.iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0
}

.iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0
}

.iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0
}

.iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0
}

.iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0
}

.iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0
}

.iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0
}

.iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0
}

.iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0
}

.iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0
}

.iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0
}

.iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0
}

.iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0
}

.iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0
}

.iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0
}

.iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0
}

.iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0
}

.iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0
}

.iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0
}

.iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0
}

.iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0
}

.iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0
}

.iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0
}

.iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0
}

.iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0
}

.iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0
}

.iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0
}

.iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0
}

.iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0
}

.iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0
}

.iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0
}

.iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0
}

.iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0
}

.iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0
}

.iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0
}

.iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0
}

.iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0
}

.iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0
}

.iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0
}

.iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0
}

.iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0
}

.iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0
}

.iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0
}

.iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0
}

.iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0
}

.iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0
}

.iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0
}

.iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0
}

.iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0
}

.iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0
}

.iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0
}

.iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0
}

.iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0
}

.iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0
}

.iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0
}

.iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0
}

.iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0
}

.iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0
}

.iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0
}

.iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0
}

.iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0
}

.iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0
}

.iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0
}

.iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0
}

.iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0
}

.iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0
}

.iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0
}

.iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0
}

.iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0
}

.iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0
}

.iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0
}

.iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0
}

.iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0
}

.iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0
}

.iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0
}

.iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0
}

.iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0
}

.iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0
}

.iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0
}

.iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0
}

.iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0
}

.iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0
}

.iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0
}

.iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0
}

.iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0
}

.iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0
}

.iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0
}

.iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0
}

.iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0
}

.iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0
}

.iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0
}

.iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0
}

.iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0
}

.iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0
}

.iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0
}

.iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0
}

.iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0
}

.iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0
}

.iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0
}

.iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0
}

.iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0
}

.iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0
}

.iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0
}

.iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0
}

.iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0
}

.iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0
}

.iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0
}

.iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0
}

.iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0
}

.iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0
}

.iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0
}

.iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0
}

.iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0
}

.iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0
}

.iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0
}

.iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0
}

.iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0
}

.iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0
}

.iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0
}

.iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0
}

.iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0
}

.iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0
}

.iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0
}

.iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0
}

.iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0
}

.iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0
}

.iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0
}

.iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0
}

.iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0
}

.iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0
}

.iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0
}

.iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0
}

.iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0
}

.iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0
}

.iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0
}

.iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0
}

.iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0
}

.iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0
}

.iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0
}

.iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0
}

.iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0
}

.iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0
}

.iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0
}

.iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0
}

.iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0
}

.iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0
}

.iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0
}

.iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0
}

.iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0
}

.iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0
}

.iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0
}

.iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0
}

.iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0
}

.iti__flag.iti__us {
    height: 11px;
    background-position: -5241px 0
}

.iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0
}

.iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0
}

.iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0
}

.iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0
}

.iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0
}

.iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0
}

.iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0
}

.iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0
}

.iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0
}

.iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0
}

.iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0
}

.iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0
}

.iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0
}

.iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0
}

.iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0
}

.iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0
}

.iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0
}

.iti__flag {
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url('../Dotdigitalgroup_Sms/images/flags.png');
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .iti__flag {
        background-image: url('../Dotdigitalgroup_Sms/images/flags@2x.png')
    }
}

.iti__flag.iti__np {
    background-color: transparent
}

.klarna-payments-method-cell {
    display: table-cell;
    vertical-align: middle
}

label.klarna-payments-method-cell>span {
    padding-left: 5px
}

span.klarna-payments-method-cell>img {
    display: block
}

.bfb-checkbox-item,
.bfb-radio-item {
    margin-top: .7rem
}

.mgz-control-radio,
.mgz-control-checkbox {
    cursor: pointer;
    opacity: .01;
    overflow: hidden;
    position: absolute !important;
    vertical-align: top
}

.mgz-control-radio:after,
.mgz-control-checkbox:after {
    display: none
}

.mgz-control-radio+label,
.mgz-control-checkbox+label {
    cursor: pointer;
    display: inline-block;
    vertical-align: sub
}

.mgz-control-radio+label:before,
.mgz-control-checkbox+label:before {
    font-family: 'Magezon-Icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #adadad;
    color: transparent;
    float: left;
    height: 1.6rem;
    text-align: center;
    vertical-align: top;
    width: 1.6rem
}

.mgz-control-radio+label,
.mgz-control-checkbox+label {
    padding-left: 2.2rem
}

.mgz-control-radio+label:before,
.mgz-control-checkbox+label:before {
    margin: 1px 0 0 -2.2rem
}

.mgz-control-radio:checked+label:before,
.mgz-control-checkbox:checked+label:before {
    color: #514943
}

.mgz-control-radio.disabled+label,
.mgz-control-checkbox.disabled+label,
.mgz-control-radio[disabled]+label,
.mgz-control-checkbox[disabled]+label {
    color: #303030;
    cursor: default;
    opacity: .5
}

.mgz-control-radio.disabled+label:before,
.mgz-control-checkbox.disabled+label:before,
.mgz-control-radio[disabled]+label:before,
.mgz-control-checkbox[disabled]+label:before {
    background-color: #e9e9e9;
    border-color: #adadad;
    cursor: default
}

._keyfocus .mgz-control-radio:not([disabled]):focus+label:before,
._keyfocus .mgz-control-checkbox:not([disabled]):focus+label:before,
._keyfocus .mgz-control-radio:not(.disabled):focus+label:before,
._keyfocus .mgz-control-checkbox:not(.disabled):focus+label:before {
    border-color: #007bdb
}

.mgz-control-radio:not([disabled]):hover+label:before,
.mgz-control-checkbox:not([disabled]):hover+label:before,
.mgz-control-radio:not(.disabled):hover+label:before,
.mgz-control-checkbox:not(.disabled):hover+label:before {
    border-color: #878787
}

.mgz-control-radio+label:before {
    border-radius: 1.6rem;
    content: '';
    transition: border-color .1s linear, color .1s ease-in
}

.mgz-control-radio.mgz-control-radio+label:before {
    line-height: 140%
}

.mgz-control-radio:checked+label {
    position: relative
}

.mgz-control-radio:checked+label:after {
    background-color: #514943;
    border-radius: 50%;
    content: '';
    height: 10px;
    left: 3px;
    position: absolute;
    top: 4px;
    width: 10px
}

.mgz-control-radio:checked:not([disabled]):hover,
.mgz-control-radio:checked:not(.disabled):hover {
    cursor: default
}

.mgz-control-radio:checked:not([disabled]):hover+label,
.mgz-control-radio:checked:not(.disabled):hover+label {
    cursor: default
}

.mgz-control-radio:checked:not([disabled]):hover+label:before,
.mgz-control-radio:checked:not(.disabled):hover+label:before {
    border-color: #adadad
}

.mgz-control-checkbox+label:before {
    border-radius: 1px;
    content: '';
    font-size: 0;
    transition: font-size .1s ease-out, color .1s ease-out, border-color .1s linear
}

.mgz-control-checkbox:checked+label:before {
    content: '\e62d';
    font-size: 1.1rem;
    line-height: 125%
}

.mgz__actions-switch {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.admin__field-control .mgz__actions-switch {
    line-height: 3.2rem
}

.mgz__actions-switch+.admin__field-service {
    min-width: 34rem
}

.mgz__actions-switch-checkbox {
    position: absolute !important
}

._disabled .mgz__actions-switch-checkbox+.mgz__actions-switch-label,
.mgz__actions-switch-checkbox.disabled+.mgz__actions-switch-label {
    cursor: not-allowed;
    opacity: .5;
    pointer-events: none
}

.mgz__actions-switch-checkbox:checked+.mgz__actions-switch-label:before {
    left: 15px
}

.mgz__actions-switch-checkbox:checked+.mgz__actions-switch-label:after {
    background: #79a22e
}

.mgz__actions-switch-checkbox:checked+.mgz__actions-switch-label .mgz__actions-switch-text:before {
    content: attr(data-text-on)
}

._error .mgz__actions-switch-checkbox+.mgz__actions-switch-label:before,
._error .mgz__actions-switch-checkbox+.mgz__actions-switch-label:after {
    border-color: #e22626
}

.mgz__actions-switch-label {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    position: relative;
    user-select: none;
    vertical-align: middle
}

.mgz__actions-switch-label:before,
.mgz__actions-switch-label:after {
    left: 0;
    position: absolute;
    right: auto;
    top: 0
}

.mgz__actions-switch-label:before {
    background: #fff;
    border: 1px solid #aaa6a0;
    border-radius: 100%;
    content: '';
    display: block;
    height: 22px;
    transition: left .2s ease-in 0s;
    width: 22px;
    z-index: 1
}

.mgz__actions-switch-label:after {
    background: #e3e3e3;
    border: 1px solid #aaa6a0;
    border-radius: 12px;
    content: '';
    display: block;
    height: 22px;
    transition: background .2s ease-in 0s;
    width: 37px;
    z-index: 0
}

.mgz__actions-switch-text:before {
    content: attr(data-text-off);
    padding-left: 47px;
    white-space: nowrap
}

.mgzFlex,
.mgz-newsletter-form-inline,
.mgz-newsletter-form-inline2,
.mgz-newsletter-form-inline .mgz-newsletter-fields,
.mgz-newsletter-form-inline2 .mgz-newsletter-fields {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.mgz-invisible {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.magezon-icon {
    font-family: 'Magezon-Icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.MgzFontAwesome {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.mgz-text-left {
    text-align: left
}

.mgz-text-right {
    text-align: right
}

.mgz-text-center {
    text-align: center
}

.mgz-text-justify {
    text-align: justify
}

.mgz-hidden {
    display: none
}

.mgz-hide {
    display: none
}

.mgz-visible {
    display: block
}

.mgz_fit {
    width: 1% !important
}

.mgz_center {
    text-align: center
}

.mgz-newsletter-form-wrapper {
    margin-bottom: 15px
}

.mgz-newsletter-form {
    max-width: 100%
}

.mgz-newsletter-form.loading .mgz-newsletter-btn span {
    visibility: hidden
}

.mgz-newsletter-form.loading .mgz-newsletter-btn:before {
    display: block
}

.mgz-newsletter-form .mgz-newsletter-fields .mgz-newsletter-field {
    margin-bottom: 10px
}

.mgz-newsletter-form .actions {
    margin-bottom: 10px
}

.mgz-newsletter-form .mgz-newsletter-btn {
    position: relative
}

.mgz-newsletter-form .mgz-newsletter-btn:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    margin-left: -13px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #fff;
    border-top-color: #262626;
    content: ''
}

.mgz-newsletter-message-success {
    color: #006400
}

.mgz-newsletter-message-error {
    color: #e02b27
}

.mgz-newsletter-form-inline .mgz-newsletter-fields,
.mgz-newsletter-form-inline2 .mgz-newsletter-fields {
    width: 100%
}

.mgz-newsletter-form-inline .mgz-newsletter-fields .mgz-newsletter-field,
.mgz-newsletter-form-inline2 .mgz-newsletter-fields .mgz-newsletter-field {
    padding-right: 10px;
    width: 100%
}

.mgz-newsletter-form-inline .mgz-newsletter-fields>.mgz-newsletter-field:last-child {
    padding: 0
}

.mgz-newsletter-form-inline .mgz-newsletter-btn {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin-left: -2px
}

.popupbuilder-popup {
    display: none
}

.popupbuilder-prevent-scroll {
    overflow: hidden
}

.mgz-flex.mgz-flex-position-top-left .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-center-left .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-bottom-left .popupbuilder-widget-content {
    left: 0
}

.mgz-flex.mgz-flex-position-top-right .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-center-right .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-bottom-right .popupbuilder-widget-content {
    right: 0
}

.mgz-flex.mgz-flex-position-top-left .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-top-center .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-top-right .popupbuilder-widget-content {
    top: 0
}

.mgz-flex.mgz-flex-position-bottom-left .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-bottom-center .popupbuilder-widget-content,
.mgz-flex.mgz-flex-position-bottom-right .popupbuilder-widget-content {
    bottom: 0
}

.popupbuilder-popup-modal {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    background-color: transparent;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.popupbuilder-popup-modal .popupbuilder-buttons-wrapper,
.popupbuilder-popup-modal .popupbuilder-header {
    display: none
}

.popupbuilder-popup-modal .popupbuilder-message {
    width: 100%;
    max-width: 100%
}

.popupbuilder-popup-modal .popupbuilder-widget-content {
    background-color: #fff;
    position: absolute;
    pointer-events: all;
    width: 700px
}

.popupbuilder-popup-modal .popupbuilder-poup-content-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    max-width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    overflow: auto;
    box-sizing: border-box
}

.popupbuilder-popup-modal .popupbuilder-poup-content-inner>.magezon-builder {
    width: 100%
}

.popupbuilder-popup-modal .popupbuilder-popup {
    display: block;
    width: 100%
}

.popupbuilder-popup-modal .popupbuilder-popup-close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #262626;
    z-index: 1200;
    cursor: pointer;
    pointer-events: all
}

.rewardssocial-buttons {
    order: -2;
    font-size: 11px;
    display: inline-block;
    width: 100%;
    line-height: 20px;
    margin-bottom: 10px;
    z-index: 2;
    position: relative
}

.rewardssocial-buttons>div {
    margin-bottom: 5px
}

.rewardssocial-buttons #facebook-message,
.rewardssocial-buttons #facebook-share-message,
.rewardssocial-buttons #twitter-message,
.rewardssocial-buttons #referral-message,
.rewardssocial-buttons #pinterest-message {
    display: none;
    position: absolute;
    background: #333;
    padding: 2px 5px;
    color: #fff;
    margin-top: -25px
}

.rewardssocial-buttons .buttons-facebook-like:hover #facebook-message {
    display: block
}

.rewardssocial-buttons .buttons-facebook-like .fb-like>span {
    width: 61px !important;
    height: 20px !important
}

.rewardssocial-buttons .buttons-facebook-like .fb-like>span iframe {
    width: 100% !important;
    height: 100% !important
}

.rewardssocial-buttons .buttons-pinterest-pin:hover #pinterest-message {
    display: block
}

.rewardssocial-buttons .buttons-twitter-like:hover #twitter-message {
    margin-top: -50px;
    display: block
}

.rewardssocial-buttons .buttons-referral-like>a {
    text-decoration: none;
    line-height: 18px;
    border-radius: 2px;
    padding: 0 3px;
    font-weight: 700;
    color: #333;
    font-size: 11px;
    border: 1px solid #ccc;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #eaeaea 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #eaeaea));
    background: -webkit-linear-gradient(top, #fff 0%, #eaeaea 100%);
    background: -o-linear-gradient(top, #fff 0%, #eaeaea 100%);
    background: -ms-linear-gradient(top, #fff 0%, #eaeaea 100%);
    background: linear-gradient(to bottom, #fff 0%, #eaeaea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0)
}

.rewardssocial-buttons .buttons-referral-like:hover #referral-message {
    display: block
}

.rewardssocial-buttons .fb_iframe_widget {
    margin-right: 10px;
    display: block;
    float: left
}

.rewardssocial-buttons .mst-rewardssocial-tweet {
    margin-right: 10px;
    display: block;
    float: left
}

.rewardssocial-buttons .referral {
    display: block;
    float: left
}

.rewardssocial-buttons .status-message {
    float: left;
    margin-left: 10px;
    color: #666
}

.rewardssocial-buttons .buttons-pinterest-pin>a {
    margin-right: 10px;
    float: left
}

.rewards-notification-message {
    border-style: solid !important;
    border-width: 1px !important;
    min-height: 24px !important;
    padding: 8px 8px 6px 32px !important;
    color: #3d6611;
    border-color: #446423;
    background-color: #eff5ea;
    margin-bottom: 10px
}

.rewards-notification-message li {
    margin-top: 2px
}

.rewards-social-buttons {
    display: inline-block;
    float: left
}

.rewards-social-buttons>.fb {
    position: relative;
    display: inline-block;
    margin-top: 0
}

.rewards-social-buttons>.tw {
    position: relative;
    display: inline-block;
    padding-top: 15px
}

.rewards-social-buttons>.gp {
    position: relative;
    display: inline-block;
    margin-top: 5px
}

.block-rewards-referral-list div.rewards-social-buttons {
    height: 20px
}

.block-rewards-referral-list div.rewards-social-buttons div.tw {
    padding-top: 0;
    position: relative;
    top: -2px
}

.block-rewards-referral-list div.rewards-social-buttons div.fb {
    position: relative;
    top: -6px
}

div.rewardssocial-buttons div.buttons-pinterest-pin,
div.rewardssocial-buttons div.buttons-twitter-like {
    height: 20px
}

div.rewardssocial-buttons div.buttons-facebook-like,
div.rewardssocial-buttons div.buttons-pinterest-pin,
div.rewardssocial-buttons div.buttons-referral-like {
    float: left
}

div.rewardssocial-buttons div.buttons-twitter-like {
    float: left;
    margin-right: 10px
}

div.rewardssocial-buttons div.buttons-twitter-like img {
    width: 20px;
    height: 20px
}

div.rewardssocial-buttons div.buttons-fb-share {
    float: left;
    margin-right: 10px
}

div.rewardssocial-buttons div.buttons-fb-share #rewards_fb_share {
    border-radius: 3px;
    font-size: 11px;
    height: 20px;
    padding: 0 10px;
    background: #4267b2;
    border: 0 solid #4267b2;
    color: #fff;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    -webkit-user-select: none;
    white-space: nowrap;
    display: inline-block;
    font-weight: 700
}

div.rewardssocial-buttons div.buttons-fb-share #rewards_fb_share ._49vg {
    vertical-align: text-top
}

div.rewardssocial-buttons div.buttons-fb-share #rewards_fb_share ._49vg img {
    margin-top: -10px
}

div.rewardssocial-buttons div.buttons-fb-share #rewards_fb_share .title {
    vertical-align: top
}

div.rewardssocial-buttons div.buttons-fb-share:hover #facebook-share-message {
    display: block;
    margin-top: -45px
}

.green {
    color: #1aa941
}

.red {
    color: #bb1212
}

.yellow {
    color: #ba0
}

.block-rewards-account-summary {
    margin-bottom: 2rem !important
}

.block-rewards-account-summary .unsubscribe {
    font-size: 14px !important;
    padding-top: 10px
}

.rewards-notification-block {
    list-style-type: none;
    padding: 0;
    background: #ecfdff
}

.rewards-notification-block>li {
    padding: 1rem
}

.rewards-referral-link {
    font-weight: 600
}

.link.rewards .counter {
    color: #7d7d7d;
    white-space: nowrap
}

.link.rewards .counter:before {
    content: '('
}

.link.rewards .counter:after {
    content: ')'
}

.form-discount .checkbox-group {
    margin-bottom: 10px
}

.rewards-message-block {
    float: left;
    display: inline-block;
    width: 100%
}

.rewards__checkout-cart-usepoints {
    margin-bottom: 1.5rem
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout #points_amount {
    border: 0;
    border-bottom: 1px solid silver
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout #points_amount:focus {
    border-bottom: 1px solid #262626
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout #points_amount:focus+label,
.rewards__checkout-cart-usepoints.magestore-onepagecheckout #points_amount:valid+label {
    top: -12px;
    font-size: 12px
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout .button {
    background-color: #262626;
    color: #fff;
    margin: 5px
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout .input-box {
    position: relative
}

.rewards__checkout-cart-usepoints.magestore-onepagecheckout .input-box label {
    position: absolute;
    top: 5px;
    color: #898989
}

.rewards__checkout-cart-usepoints .input-box {
    position: relative
}

.rewards__checkout-cart-usepoints .input-box label {
    position: absolute;
    top: 5px;
    left: 3px;
    color: #898989
}

.rewards__checkout-cart-usepoints #points_amount:focus+label,
.rewards__checkout-cart-usepoints #points_amount:valid+label {
    top: -18px;
    font-size: 12px
}

.rewards__checkout-cart-usepoints .discount-form p {
    margin-bottom: 15px
}

.rewards__checkout-cart-usepoints .discount-form .buttons-container {
    margin-top: 5px
}

.rewards__checkout-cart-usepoints .discount-form .checkbox-group {
    clear: both;
    padding-top: 10px
}

.rewards__checkout-cart-usepoints .amount {
    display: table;
    width: 100%;
    margin-bottom: .5rem
}

.rewards__checkout-cart-usepoints .amount .field {
    display: table-cell
}

.rewards__checkout-cart-usepoints .amount .actions-toolbar {
    display: table-cell;
    vertical-align: top;
    width: 1%
}

.rewards__checkout-cart-usepoints .amount .actions-toolbar button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin: 0 0 0 -1px;
    white-space: nowrap;
    width: auto
}

.rewards__checkout-cart-usepoints label.magestore-onestepcheckout-lab-fix {
    top: -2px !important;
    left: inherit;
    font-size: 14px !important;
    color: #898989 !important
}

.rewards__checkout-cart-usepoints .magestore-onestepcheckout-button-fix {
    padding: 0 5px;
    width: 105px;
    height: 35px;
    background-color: #262626 !important
}

.rewards__checkout-cart-usepoints .magestore-onestepcheckout-button-fix span {
    color: #fff
}

.checkbox-group label span.checkout-rewards-all-block {
    position: inherit;
    margin-left: 25px
}

.checkbox-group label span.checkout-rewards-all-block span {
    position: inherit;
    display: inline-block
}

.checkbox-group label span.checkout-rewards-all-block b {
    position: inherit
}

.aw-onestep-sidebar-block .actions-toolbar.rewards-buttons-block {
    max-width: inherit !important
}

.aw-onestep-sidebar-block .actions-toolbar.rewards-buttons-block .primary button {
    width: 49% !important
}

.checkout-payment-method .payment-option-content .actions-toolbar.rewards-checkout-buttons-block {
    display: inline;
    width: inherit
}

.checkout-payment-method .payment-option-content .actions-toolbar.rewards-checkout-buttons-block .button {
    margin-right: 10px
}

.catalog-product-view .rewards__product-points {
    display: inline-block;
    font-size: 12px;
    color: #f96b25
}

.catalog-product-view .rewards__product-points .price {
    font-size: 12px !important;
    line-height: 1em !important
}

.product-items .product-item-info .rewards__product-points {
    font-size: 12px;
    color: #262626;
    margin-top: -10px
}

.product-items .product-item-info .rewards__product-points .price {
    font-size: 12px;
    color: #f96b25
}

.rewards__product-earn-points.rewards__product-points .points-loader.loader {
    position: absolute;
    height: 17px
}

.block-products-list .rewards__product-points {
    margin-top: -2rem;
    margin-bottom: 2rem
}

.product-info-main .product-info-price {
    position: relative
}

.product-info-main .product-info-price .rewards__product-points .price {
    font-size: 12px;
    color: #f96b25
}

.product-info-main .product-info-price .product-info-stock-sku .stock {
    margin-top: 15px
}

#amasty-shopby-product-list .product-item-details .rewards__product-points,
.widget-product-grid .product-item-details .rewards__product-points {
    display: block;
    width: 100%;
    margin-top: 0;
    font-size: 12px;
    color: #f96b25
}

#amasty-shopby-product-list .product-item-details .rewards__product-points .price,
.widget-product-grid .product-item-details .rewards__product-points .price {
    font-size: 12px;
    color: #f96b25
}

.block-referral {
    width: 100%;
    text-align: center;
    margin-top: 25px
}

.block-referral li {
    list-style-position: inside
}

.block-title.earn.subtitle {
    margin-top: 25px;
    padding-top: 10px
}

.block-content.dashed-border {
    border: 1px dashed #ccc;
    padding: 5px;
    margin-bottom: 20px
}

.block-rewards-account-summary .table-wrapper.orders-recent {
    border: none
}

.rewards-account__tiers {
    margin-bottom: 3rem
}

.rewards-account__tiers .tier-progress-bar {
    margin-top: 5rem;
    margin-bottom: 5rem;
    margin-left: 3rem;
    margin-right: 3rem;
    position: relative;
    height: 1.1rem;
    background: #ccc;
    border-radius: 100px
}

.rewards-account__tiers .tier-progress-bar .points {
    width: auto;
    display: flex;
    justify-content: space-between
}

.rewards-account__tiers .tier-progress-bar .points .tier-point {
    width: 2rem;
    height: 2rem;
    background: #ccc;
    border-radius: 100%;
    margin-top: -.5rem;
    position: relative;
    z-index: 1
}

.rewards-account__tiers .tier-progress-bar .points .tier-point.closed {
    background: #fe5503
}

.rewards-account__tiers .tier-progress-bar .points .tier-point .tier-logo {
    position: absolute;
    left: 50%;
    top: -6rem;
    color: #727272;
    margin-left: -1.5rem;
    width: 3rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.rewards-account__tiers .tier-progress-bar .points .tier-point .label {
    position: absolute;
    left: 0;
    top: -3rem;
    color: #727272;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: -4.5rem;
    width: 11rem;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.rewards-account__tiers .tier-progress-bar .points .tier-point .label[data-description]:hover {
    text-decoration: underline;
    cursor: pointer
}

.rewards-account__tiers .tier-progress-bar .points .tier-point .number {
    position: absolute;
    left: 0;
    top: 2.5rem;
    margin-left: -3rem;
    width: 8rem;
    text-align: center
}

.rewards-account__tiers .tier-progress-bar .points .tier-point .number>span {
    display: inline-block;
    background: #fe5503;
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    padding: .1rem .5rem;
    white-space: nowrap
}

.rewards-account__tiers .tier-progress-bar .closers {
    width: auto;
    display: flex;
    justify-content: space-between
}

.rewards-account__tiers .tier-progress-bar .closers .closer {
    position: absolute;
    left: 0;
    top: .3rem;
    height: .5rem;
    padding: 0 2px;
    box-sizing: border-box
}

.rewards-account__tiers .tier-progress-bar .closers .closer .progress {
    height: .5rem;
    background: #fe5503
}

.rewards-account__tiers .to-next {
    margin-top: .5rem;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0
}

.rewards-account__tiers .to-next .open-popup {
    color: #727272;
    cursor: pointer
}

.opc-block-summary .vertex-message td,
.cart-summary .vertex-message td {
    padding: 0;
    border-top: none
}

@media (min-width:992px) {
    .cart.table-wrapper .product-item-photo {
        max-width: 100%
    }
}

@media all and (min-width:768px),
print {

    .abs-product-options-list-desktop dt,
    .block-giftregistry-shared .item-options dt {
        float: left;
        clear: left;
        margin: 0 11px 0 0
    }

    .block-giftregistry-shared .item-options dt:after {
        content: ': '
    }

    .rtl-layout .block-giftregistry-shared .item-options dt {
        float: right;
        clear: right;
        margin: 0 0 5.5px 11px
    }

    .abs-product-options-list-desktop dd,
    .block-giftregistry-shared .item-options dd {
        float: left;
        display: inline-block;
        margin: 0 0 5.5px
    }

    .rtl-layout .block-giftregistry-shared .item-options dd {
        float: right
    }

    .abs-button-desktop {
        width: auto
    }

    .abs-blocks-2columns,
    .abs-discount-block-desktop .block,
    .account .column.main .block:not(.widget) .block-content .box,
    .storecredit .block,
    .paypal-review-discount .block,
    .cart-discount .block {
        width: 48%
    }

    .abs-discount-block-desktop .block:nth-child(1),
    .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
    .storecredit .block:nth-child(1),
    .paypal-review-discount .block:nth-child(1),
    .cart-discount .block:nth-child(1) {
        float: left;
        clear: left
    }

    .rtl-layout .abs-discount-block-desktop .block:nth-child(1),
    .rtl-layout .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
    .rtl-layout .storecredit .block:nth-child(1),
    .rtl-layout .paypal-review-discount .block:nth-child(1),
    .rtl-layout .cart-discount .block:nth-child(1) {
        float: right;
        clear: right
    }

    .abs-discount-block-desktop .block:nth-child(2),
    .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
    .storecredit .block:nth-child(2),
    .paypal-review-discount .block:nth-child(2),
    .cart-discount .block:nth-child(2) {
        float: right
    }

    .abs-discount-block-desktop .block:nth-child(2)+*,
    .account .column.main .block:not(.widget) .block-content .box:nth-child(2)+*,
    .storecredit .block:nth-child(2)+*,
    .paypal-review-discount .block:nth-child(2)+*,
    .cart-discount .block:nth-child(2)+* {
        clear: both
    }

    .rtl-layout .abs-discount-block-desktop .block:nth-child(2),
    .rtl-layout .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
    .rtl-layout .storecredit .block:nth-child(2),
    .rtl-layout .paypal-review-discount .block:nth-child(2),
    .rtl-layout .cart-discount .block:nth-child(2) {
        float: left
    }

    .abs-reset-left-margin-desktop,
    .column.main .paypal-review .actions-toolbar,
    .column.main .block-giftregistry-shared-items .actions-toolbar {
        margin-left: 0
    }

    .abs-action-remove-desktop,
    .abs-add-fields-desktop .fieldset .additional .action.remove,
    .form-giftregistry-share .fieldset .additional .action.remove,
    .form-giftregistry-edit .fieldset .additional .action.remove,
    .form-create-return .fieldset .additional .action.remove,
    .form.send.friend .fieldset .additional .action.remove {
        margin-left: 90%
    }

    .abs-add-fields-desktop .fieldset .field .control,
    .form-giftregistry-share .fieldset .field .control,
    .form-giftregistry-edit .fieldset .field .control,
    .form-create-return .fieldset .field .control,
    .form.send.friend .fieldset .field .control {
        width: auto
    }

    .abs-margin-for-forms-desktop {
        margin-left: 25.8%
    }

    .abs-visually-hidden-desktop,
    .dashboard-welcome-toggler {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .abs-form-field-column-2 .fieldset .field,
    .form-giftregistry-share .fieldset .field,
    .form-giftregistry-edit .fieldset .field,
    .form-create-return .fieldset .field,
    .form.send.friend .fieldset .field {
        padding: 0 12px 0 0;
        box-sizing: border-box;
        display: inline-block;
        width: 50%;
        vertical-align: top
    }

    .form-giftregistry-share .fieldset .field:nth-last-child(1),
    .form-giftregistry-share .fieldset .field:nth-last-child(2),
    .form-giftregistry-edit .fieldset .field:nth-last-child(1),
    .form-giftregistry-edit .fieldset .field:nth-last-child(2),
    .form-create-return .fieldset .field:nth-last-child(1),
    .form-create-return .fieldset .field:nth-last-child(2),
    .form.send.friend .fieldset .field:nth-last-child(1),
    .form.send.friend .fieldset .field:nth-last-child(2) {
        margin-bottom: 0
    }

    .abs-form-field-column-2 .fieldset .field+.fieldset,
    .form-giftregistry-share .fieldset .field+.fieldset,
    .form-giftregistry-edit .fieldset .field+.fieldset,
    .form-create-return .fieldset .field+.fieldset,
    .form.send.friend .fieldset .field+.fieldset {
        clear: both
    }

    .abs-form-field-column-2 .fieldset .field .field,
    .form-giftregistry-share .fieldset .field .field,
    .form-giftregistry-edit .fieldset .field .field,
    .form-create-return .fieldset .field .field,
    .form.send.friend .fieldset .field .field {
        width: 100%;
        padding: 0
    }

    .abs-form-field-revert-column-1 {
        width: 100%
    }

    .abs-forms-general-desktop,
    .form-giftcard-redeem,
    .form-giftregistry-create {
        max-width: 500px
    }

    .abs-forms-general-desktop .legend,
    .form-giftcard-redeem .legend,
    .form-giftregistry-create .legend {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .abs-forms-general-desktop .legend+br,
    .form-giftcard-redeem .legend+br,
    .form-giftregistry-create .legend+br {
        display: none
    }

    .abs-revert-side-paddings,
    .checkout-cart-index .page-title-wrapper,
    .cart-summary .block .content,
    .cart-empty {
        padding-left: 0;
        padding-right: 0
    }

    .abs-account-block-font-size,
    .block-balance-giftcard .block-content,
    .block-reviews-dashboard .product-name {
        font-size: 1.6rem
    }

    .abs-account-table-margin-desktop,
    .table-wrapper.balance-history,
    .table-wrapper.reward-history {
        margin-top: -27.5px
    }

    .abs-action-print {
        display: inline-block;
        text-decoration: none
    }

    .abs-action-print:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px;
        line-height: 16px;
        color: inherit;
        content: "\e6b1";
        font-family: 'mbicon';
        margin: 0 4px 0 0;
        vertical-align: middle;
        display: inline-block;
        font-weight: 400;
        overflow: hidden;
        speak: none;
        text-align: center
    }

    .abs-no-display-desktop,
    .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
        display: none
    }

    .abs-status-desktop,
    .return-status {
        margin-top: 6px;
        padding: 5.5px 11px
    }

    .abs-title-orders-desktop .page-main .page-title-wrapper .order-date,
    .magento-rma-returns-returns .page-main .page-title-wrapper .order-date,
    .magento-rma-returns-view .page-main .page-title-wrapper .order-date,
    .account .page-main .page-title-wrapper .order-date,
    [class^=sales-guest-] .page-main .page-title-wrapper .order-date,
    .sales-guest-view .page-main .page-title-wrapper .order-date {
        margin: 0 0 15px
    }

    .abs-table-bordered-desktop {
        border: none
    }

    .abs-table-bordered-desktop>thead>tr>th,
    .abs-table-bordered-desktop>tbody>tr>th,
    .abs-table-bordered-desktop>tfoot>tr>th,
    .abs-table-bordered-desktop>thead>tr>td,
    .abs-table-bordered-desktop>tbody>tr>td,
    .abs-table-bordered-desktop>tfoot>tr>td {
        border: none
    }

    .abs-table-bordered-desktop>thead>tr>th,
    .abs-table-bordered-desktop>thead>tr>td {
        border-bottom: 1px solid #d1d1d1
    }

    .abs-pager-toolbar,
    .account .toolbar,
    .toolbar-giftregistry-results,
    .toolbar-wishlist-results {
        position: relative
    }

    .abs-pager-toolbar .toolbar-amount,
    .abs-pager-toolbar .limiter,
    .account .toolbar .toolbar-amount,
    .account .toolbar .limiter,
    .toolbar-giftregistry-results .toolbar-amount,
    .toolbar-giftregistry-results .limiter,
    .toolbar-wishlist-results .toolbar-amount,
    .toolbar-wishlist-results .limiter {
        position: relative;
        z-index: 1
    }

    .abs-pager-toolbar .toolbar-amount,
    .account .toolbar .toolbar-amount,
    .toolbar-giftregistry-results .toolbar-amount,
    .toolbar-wishlist-results .toolbar-amount {
        line-height: 32px;
        padding: 0
    }

    .abs-pager-toolbar .pages,
    .account .toolbar .pages,
    .toolbar-giftregistry-results .pages,
    .toolbar-wishlist-results .pages {
        position: absolute;
        z-index: 0;
        width: 100%
    }

    .abs-shopping-cart-items-desktop,
    .cart-container .crosssell,
    .block-cart-failed,
    .cart-container .form-cart,
    .cart-container .cart-gift-item {
        width: 70%;
        float: left;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        padding-right: 3%;
        position: relative
    }

    .rtl-layout .cart-container .crosssell,
    .rtl-layout .block-cart-failed,
    .rtl-layout .cart-container .form-cart,
    .rtl-layout .cart-container .cart-gift-item {
        float: right;
        padding-right: 0;
        padding-left: 3%
    }

    .abs-discount-block-desktop .block,
    .paypal-review-discount .block,
    .cart-discount .block {
        width: 100%
    }

    .abs-discount-block-desktop .block>.title,
    .paypal-review-discount .block>.title,
    .cart-discount .block>.title {
        border: 0;
        cursor: default;
        text-transform: uppercase;
        position: relative;
        padding: 0;
        margin-bottom: 20px;
        min-width: 100%
    }

    .abs-discount-block-desktop .block>.title strong,
    .paypal-review-discount .block>.title strong,
    .cart-discount .block>.title strong {
        border: 0;
        padding-bottom: 15px;
        margin-top: 0;
        margin-bottom: 0;
        display: inline-block;
        vertical-align: top
    }

    .paypal-review-discount .block>.title:after,
    .cart-discount .block>.title:after {
        display: none
    }

    .abs-discount-block-desktop .block .content,
    .paypal-review-discount .block .content,
    .cart-discount .block .content {
        display: block !important;
        padding: 20px;
        -moz-box-shadow: 1px 3px 1px rgba(50, 50, 50, .1);
        -webkit-box-shadow: 1px 3px 1px rgba(50, 50, 50, .1);
        -o-box-shadow: 1px 3px 1px rgba(50, 50, 50, .1);
        -ms-box-shadow: 1px 3px 1px rgba(50, 50, 50, .1);
        box-shadow: 1px 3px 1px rgba(50, 50, 50, .1)
    }

    .abs-discount-block-desktop .actions-toolbar .secondary,
    .paypal-review-discount .actions-toolbar .secondary,
    .cart-discount .actions-toolbar .secondary {
        bottom: -30px;
        left: 0;
        position: absolute
    }

    h1 {
        font-size: 46px;
        margin-bottom: 44px
    }

    .legend {
        border-bottom: 1px solid #c5c5c5
    }

    .cart.actions .action.continue {
        float: left
    }

    .layout-rtl .cart.actions .action.continue {
        float: right
    }

    .modal-popup.modal-slide .modal-footer {
        border-top: 1px solid #c1c1c1;
        text-align: right
    }

    .product-info-main .aw-advanced-reviews-summary-container {
        margin-bottom: 16.5px
    }

    .product-info-main .aw-advanced-reviews-summary-container .review-summary-actions {
        font-size: 16px;
        margin-top: 3.5px
    }

    .all-customer-reviews .aw-ar-main {
        margin: 0 -20px
    }

    .all-customer-reviews .aw-ar-main .container-header,
    .all-customer-reviews .aw-ar-main .container-body {
        margin: 0
    }

    .aw-ar__review-list .review-item-info {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .aw-ar__review-list-sidebar-main {
        min-width: 240px;
        margin-right: 54px;
        text-align: right;
        float: left;
        max-width: 240px
    }

    .aw-ar__review-list-column-main {
        width: 100%
    }

    .aw-ar__review-list-column-main .review-helpful-report-wrapper .messages {
        left: 120px
    }

    .aw-ar__attach {
        height: 96px;
        max-width: 170px
    }

    .aw-ar__data-grid-filters-wrap {
        padding-left: 290px
    }

    .aw-ar__form-field-wrap {
        margin-right: 20px
    }

    .aw-ar-review-form {
        padding: 44px 0
    }

    .aw-ar-review-form .actions-toolbar .action.primary {
        max-width: 200px
    }

    .aw-ar-main .container-header {
        margin: 0 -38.5px
    }

    .aw-ar-main .container-header .title {
        margin-bottom: 33px;
        padding: 0 38.5px
    }

    .aw-ar-main .container-header .title h2 {
        margin: 0
    }

    .aw-ar-main .container-body {
        margin: 0 -38.5px;
        padding-left: 22px;
        padding-right: 70px
    }

    .aw-ar-main .container-body .aw-ar__review-list-nav {
        padding-left: 290px;
        overflow: hidden
    }

    .aw-ar-main .container-body .aw-ar__review-list-nav__inner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .aw-ar-main .container-body .aw-ar__review-list-nav__inner .left-column {
        margin: auto 0
    }

    .aw-ar-main .container-body .aw-ar__review-list-nav__inner .right-column {
        margin: auto
    }

    .aw-ar-review-summary {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 38.5px 44px
    }

    .aw-ar-review-summary .column-summary {
        margin-right: 25px;
        float: left
    }

    .aw-ar-review-summary .column-summary:first-child {
        min-width: 240px
    }

    .aw-ar-review-summary .column-summary:last-child {
        margin-right: 0;
        margin-top: 22px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .aw-ar-review-summary .column-summary:last-child .aw-ar-write-review-control {
        margin-top: auto
    }

    .aw-ar__review-list .review-sorting {
        padding-left: 290px;
        margin-bottom: 27.5px
    }

    .aw-aff-tabs {
        clear: both
    }

    .aw-aff-tabs .tab-title {
        float: left;
        width: auto;
        border: 1px solid #b0b0b0;
        padding: 17.5px 5.5px;
        background-color: #e4e4e4;
        margin: 0 6px -1px 0;
        position: relative;
        font-size: 14px
    }

    .aw-aff-tabs .tab-title.active {
        background-color: #fff;
        border-bottom-color: #fff;
        z-index: 2
    }

    .aw-aff-tabs .tab-title.active:before {
        content: '';
        width: 100%;
        height: 4px;
        left: 0;
        top: 0;
        background-color: #f65300;
        display: block;
        position: absolute
    }

    .aw-aff-tab {
        float: right;
        margin-left: -100%;
        width: 100%;
        margin-top: 50px;
        border-top: 1px solid #b0b0b0;
        padding: 33px 3px 0;
        box-sizing: border-box
    }

    .aw-aff-tab.reports .admin__data-grid-filters,
    .aw-aff-tab.transactions .admin__data-grid-filters {
        overflow: hidden
    }

    .aw-aff-tab.reports .admin__data-grid-filters .admin__form-field,
    .aw-aff-tab.transactions .admin__data-grid-filters .admin__form-field {
        width: 50%;
        padding: 0 22px;
        float: left;
        margin: 0 0 22px
    }

    .aw-aff-tab.reports .admin__data-grid-filters .admin__form-field .admin__form-field,
    .aw-aff-tab.transactions .admin__data-grid-filters .admin__form-field .admin__form-field {
        width: 100%;
        float: none;
        margin: 0 0 22px;
        padding: 0
    }

    .aw-aff-tab.reports .admin__data-grid-filters div.admin__form-field,
    .aw-aff-tab.transactions .admin__data-grid-filters div.admin__form-field {
        clear: both
    }

    .aw-aff-tab.reports .admin__data-grid-filters div.admin__form-field+div.admin__form-field,
    .aw-aff-tab.transactions .admin__data-grid-filters div.admin__form-field+div.admin__form-field {
        clear: inherit
    }

    .aw-aff__grid-list-filters {
        margin: 0 -22px
    }

    .aw-aff__grid-list-filters .data-grid-filters-actions-wrap {
        padding: 0 22px
    }

    .aw-aff__grid-list-filters .admin__data-grid-filters-current {
        padding: 11px 22px
    }

    .aw-aff__grid-list-filters .admin__data-grid-filters-footer {
        padding: 0 22px
    }

    .aw-aff__grid-list-nav {
        overflow: hidden
    }

    .aw-aff__signup-form .control._with-tooltip .field-note {
        left: -90px
    }

    .aw-pquestion__question-listing.product.header {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .aw-pquestion__question-listing.product.header .product-details {
        width: 30%;
        min-width: 300px
    }

    .aw-pquestion__question-listing.product.header .aw-pq__question-form {
        width: 70%;
        padding-left: 30px
    }

    .aw-pquestion__question-listing.product.header .explanatory-message {
        margin-left: auto
    }

    .aw-pquestion__question-listing.product.header>.back-link-wrapper {
        margin-left: 10px
    }

    .aw-pquestion__question-listing.product.header>.back-link-wrapper+.aw-pq__question-form {
        display: none
    }

    .aw-pquestion__product-question.container .aw-pq-question-form .label,
    .aw-pquestion__question-listing.container .aw-pq-question-form .label,
    .aw-pquestion__product-question.container .aw-pq-question-answer-form .label,
    .aw-pquestion__question-listing.container .aw-pq-question-answer-form .label {
        margin: 0 0 5px;
        padding: 0;
        text-align: left;
        width: auto;
        float: none
    }

    .aw-pquestion__product-question.container .aw-pq-question-form .control,
    .aw-pquestion__question-listing.container .aw-pq-question-form .control,
    .aw-pquestion__product-question.container .aw-pq-question-answer-form .control,
    .aw-pquestion__question-listing.container .aw-pq-question-answer-form .control {
        width: auto;
        float: none
    }

    .aw-pquestion__product-question.container .aw-pq__question-form {
        padding: 0 35px
    }

    .aw-pq__email-subscriber-notification-form form .aw-pq-wrapper-fieldset .actions-toolbar,
    .aw-pq__question-form form .aw-pq-wrapper-fieldset .actions-toolbar,
    .aw-pq__question-answer-form form .aw-pq-wrapper-fieldset .actions-toolbar {
        margin: 0
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content {
        max-width: 250px;
        left: -40%
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content:after,
    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content:before {
        left: 30%
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content .tooltip-content-inner {
        max-height: 350px;
        max-width: 250px
    }

    .am-widget-categories-3 .am-widget-category {
        width: 50%
    }

    .klarna-payments-method>.payment-method-title {
        padding: 11.5px 0
    }

    .cart-container .crosssell {
        margin-bottom: 22px
    }

    .block-category-event.block:last-child {
        margin-bottom: 33px;
        padding: 11px 0 33px
    }

    .block-category-event .block-title {
        margin: 0
    }

    .block-category-event .block-title strong {
        font-size: 2.4rem
    }

    .block-category-event .ticker li {
        display: none;
        margin: 0 50px
    }

    .block-category-event .ticker .value {
        font-size: 6rem
    }

    .block-category-event .ticker .label {
        font-size: 1.4rem;
        text-transform: none
    }

    .block-category-event .dates .date {
        font-size: 5rem
    }

    .block-category-event .dates .start {
        padding-right: 50px
    }

    .block-category-event .dates .start:after {
        font-size: 5rem;
        right: 10px
    }

    .contact-index-index .column:not(.sidebar-additional) .form.contact {
        min-width: 600px
    }

    .block.newsletter {
        max-width: 44%;
        width: max-content
    }

    .block.newsletter .field {
        margin-right: 5px
    }

    .block.newsletter .field.newsletter {
        max-width: 220px
    }

    .block.newsletter .field .control {
        width: 100%
    }

    .block.newsletter .action.subscribe {
        border-radius: 3px
    }

    .paypal-review .paypal-review-title {
        border-bottom: 1px solid #d1d1d1
    }

    .paypal-review .block-content .box-order-shipping-address,
    .paypal-review .block-content .box-order-shipping-method,
    .paypal-review .block-content .box-order-shipping-method+.box-order-billing-address {
        box-sizing: border-box;
        float: left;
        width: 33%
    }

    .paypal-review .block-content .box-order-shipping-address {
        padding: 0 5%;
        width: 34%
    }

    .paypal-review .table-paypal-review-items .col.price,
    .paypal-review .table-paypal-review-items .col.qty {
        text-align: center
    }

    .paypal-review .table-paypal-review-items .col.item {
        width: 60%
    }

    .paypal-review .col.subtotal,
    .paypal-review .mark,
    .paypal-review .amount {
        text-align: right
    }

    .paypal-review-discount {
        border-top: 1px solid #d1d1d1
    }

    .my-credit-cards .card-type img {
        display: block
    }

    .block-cart-failed .actions.secondary {
        text-align: right
    }

    .block-cart-failed .actions.secondary .action {
        display: inline-block;
        margin: 0 0 0 11px
    }

    .sidebar .product-items .product-item-info .product-item-photo {
        float: left;
        left: auto;
        margin: 0 11px 11px 0;
        position: relative;
        top: auto
    }

    .sidebar .product-items .product-item-details {
        margin: 0
    }

    .sidebar .product-items .product-item-actions {
        clear: left
    }

    .checkout-cart-index .page-main {
        padding-left: 15px;
        padding-right: 15px
    }

    .cart-container .form-cart .actions.main {
        text-align: right
    }

    .cart-container .widget {
        float: left
    }

    .cart-summary {
        width: 30%;
        float: right;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        padding: 0 20px 20px;
        position: relative
    }

    .cart-summary>.title {
        display: block
    }

    .cart-summary .fieldset .actions-toolbar {
        margin-left: 0
    }

    .cart-summary .fieldset .actions-toolbar>.secondary {
        float: none
    }

    .cart-summary .block>.title {
        padding-left: 0
    }

    .cart-summary .block>.title:after {
        right: 3px
    }

    .cart-summary .block .fieldset .field {
        margin: 0 0 10px
    }

    .cart-summary .checkout-methods-items {
        padding: 0
    }

    .cart.table-wrapper .items {
        min-width: 100%;
        width: auto
    }

    .cart.table-wrapper tbody td {
        padding-top: 20px
    }

    .cart.table-wrapper .item .col.item {
        padding: 10px 8px 10px 0
    }

    .cart.table-wrapper .item-actions td {
        padding: 0
    }

    .cart.table-wrapper .product-item-photo {
        display: table-cell;
        padding-right: 15px;
        position: static;
        vertical-align: middle;
        width: 1%
    }

    .cart.table-wrapper .product-item-details {
        display: table-cell;
        vertical-align: middle;
        white-space: normal;
        width: 99%
    }

    .cart-products-toolbar {
        margin: 2px 0 0
    }

    .cart-products-toolbar .toolbar-amount {
        line-height: 30px;
        margin: 0
    }

    .cart-products-toolbar .pages {
        float: right
    }

    .cart-products-toolbar .pages .item:last-child {
        margin-right: 0
    }

    .cart.table-wrapper .cart-products-toolbar+.cart thead tr th.col {
        padding-bottom: 11px;
        padding-top: 11px
    }

    .cart.table-wrapper .cart+.cart-products-toolbar {
        margin-top: 27.5px
    }

    .cart-discount {
        width: 75%;
        float: left;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        border: 0;
        box-sizing: border-box;
        padding-right: 4%
    }

    .cart-discount .block .title:after {
        display: inline;
        margin-left: 11px;
        position: static
    }

    .block.crosssell {
        width: 75%;
        float: left;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        padding: 0 4% 0 0
    }

    .block.crosssell .products-grid .product-item {
        width: 25%
    }

    .opc-wrapper {
        width: 66.66666667%;
        float: left;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        padding-right: 33px
    }

    .checkout-onepage-success .print {
        display: block;
        margin: 22px 0 0
    }

    .opc-estimated-wrapper {
        display: none
    }

    .opc-progress-bar-item {
        width: 185px
    }

    .checkout-index-index .modal-popup .form-shipping-address {
        max-width: 100%
    }

    .checkout-index-index .modal-popup .modal-footer .action-save-address {
        float: right;
        margin: 0 0 0 11px
    }

    .checkout-shipping-method .actions-toolbar>.primary {
        float: right
    }

    .checkout-shipping-method .actions-toolbar .action.primary {
        margin: 0
    }

    .opc-wrapper .form-login,
    .opc-wrapper .form-shipping-address {
        max-width: 100%
    }

    .opc-wrapper #shipping-new-address-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .opc-wrapper #shipping-new-address-form>.field {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px
    }

    .opc-wrapper #shipping-new-address-form>.field.street {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 10px
    }

    .opc-wrapper #shipping-new-address-form>.field.street>.control {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .opc-wrapper #shipping-new-address-form>.field.street>.control>.field {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
        margin-bottom: 5px
    }

    .table-checkout-shipping-method {
        width: auto
    }

    .opc-sidebar {
        margin: 0 0 30px;
        width: 33.33333333%;
        float: right;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2
    }

    .opc-summary-wrapper .modal-header .action-close {
        display: none
    }

    .authentication-dropdown {
        background-color: #fff;
        border: 1px solid #aeaeae;
        -webkit-transform: scale(1, 0);
        -webkit-transform-origin: 0 0;
        -webkit-transition: -webkit-transform linear .1s, visibility 0s linear .1s;
        position: absolute;
        text-align: left;
        top: 100%;
        transform: scale(1, 0);
        transform-origin: 0 0;
        transition: transform linear .1s, visibility 0s linear .1s;
        visibility: hidden;
        width: 100%
    }

    .authentication-dropdown._show {
        z-index: 100;
        -webkit-transform: scale(1, 1);
        -webkit-transition: -webkit-transform linear .1s, visibility 0s linear 0s;
        transform: scale(1, 1);
        transition: transform linear .1s, visibility 0s linear 0s;
        visibility: visible
    }

    .authentication-wrapper {
        width: 33.33333333%;
        text-align: right
    }

    .popup-authentication .modal-inner-wrap {
        min-width: 768px;
        width: 60%
    }

    .popup-authentication .block-authentication {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        border-top: 1px solid #c1c1c1
    }

    .popup-authentication .block[class],
    .popup-authentication .form-login,
    .popup-authentication .fieldset,
    .popup-authentication .block-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-grow: 1;
        flex-grow: 1;
        margin-bottom: 0
    }

    .popup-authentication .block[class] {
        box-sizing: border-box;
        float: left;
        padding: 11px 30px 0 0;
        width: 50%
    }

    .popup-authentication .block[class]+.block {
        border-left: 1px solid #c1c1c1;
        border-top: 0;
        margin: 0;
        padding: 11px 0 0 30px
    }

    .popup-authentication .block[class]+.block:before {
        left: 0;
        top: 50%
    }

    .popup-authentication .actions-toolbar {
        margin-bottom: 0;
        margin-top: auto
    }

    .checkout-payment-method .actions-toolbar .primary {
        float: right;
        margin: 0
    }

    .checkout-payment-method .fieldset>.field-select-billing>.control {
        float: none;
        width: 100%
    }

    .checkout-billing-address .action-update {
        float: right
    }

    .checkout-billing-address .actions-toolbar .action-cancel {
        margin: 6px 22px 0 0
    }

    .checkout-payment-method .payment-option-title {
        padding-left: 22px
    }

    .checkout-payment-method .payment-option-content .payment-option-inner+.actions-toolbar {
        margin-left: 0
    }

    .fieldset .fullname .field .label {
        padding: 6px 15px 0 0;
        text-align: right;
        width: 25.8%;
        box-sizing: border-box;
        float: left
    }

    .fieldset .fullname .field .control {
        width: 74.2%;
        float: left
    }

    .block-addresses-list .items.addresses {
        font-size: 0
    }

    .block-addresses-list .items.addresses>.item {
        display: inline-block;
        font-size: 16px;
        margin-bottom: 22px;
        vertical-align: top;
        width: 48.8%
    }

    .block-addresses-list .items.addresses>.item:nth-last-child(1),
    .block-addresses-list .items.addresses>.item:nth-last-child(2) {
        margin-bottom: 0
    }

    .block-addresses-list .items.addresses>.item:nth-child(even) {
        margin-left: 2.4%
    }

    .storecredit .block-balance-history {
        width: 100%
    }

    .table-balance-history .col {
        width: 25%
    }

    .page-product-downloadable .product-options-wrapper {
        clear: both
    }

    .page-product-downloadable .product-options-bottom {
        clear: both
    }

    .page-product-giftcard .product-info-main .price-box .price-container.price-final_price {
        font-size: 24px
    }

    .page-product-giftcard .product-info-main .price-box .price-container.price-final_price .price {
        font-size: 36px;
        line-height: 36px
    }

    .page-product-giftcard .product-add-form .field:not(.text) {
        margin: 0 0 22px;
        padding: 0 12px 0 0;
        box-sizing: border-box;
        display: inline-block;
        width: 50%;
        vertical-align: top
    }

    .page-product-giftcard .product-add-form .field:not(.text)>.label {
        margin: 0 0 5.5px;
        display: inline-block
    }

    .page-product-giftcard .product-add-form .field:not(.text):last-child {
        margin-bottom: 0
    }

    .page-product-giftcard .product-add-form .field:not(.text)+.fieldset {
        clear: both
    }

    .page-product-giftcard .product-add-form .field:not(.text)>.label {
        font-weight: 700
    }

    .page-product-giftcard .product-add-form .field:not(.text)>.label+br {
        display: none
    }

    .page-product-giftcard .product-add-form .field:not(.text) .choice input {
        vertical-align: top
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group:before,
    .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
        content: '';
        display: table
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
        clear: both
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group .field {
        box-sizing: border-box;
        float: left
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-2 .field {
        width: 50% !important
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-3 .field {
        width: 33.3% !important
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-4 .field {
        width: 25% !important
    }

    .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-5 .field {
        width: 20% !important
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon {
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 0;
        width: 100%
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon textarea,
    .page-product-giftcard .product-add-form .field:not(.text) .addon select,
    .page-product-giftcard .product-add-form .field:not(.text) .addon input {
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        display: inline-block;
        margin: 0;
        width: auto
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore,
    .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter {
        background: #fff;
        background-clip: padding-box;
        border: 1px solid #c2c2c2;
        border-radius: 1px;
        font-family: Work Sans, 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 16px;
        height: 32px;
        line-height: 1.42857143;
        padding: 0 9px;
        vertical-align: baseline;
        width: 100%;
        box-sizing: border-box;
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        width: auto
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:disabled,
    .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:disabled {
        opacity: .5
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-moz-placeholder,
    .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-moz-placeholder {
        color: #c2c2c2
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-webkit-input-placeholder,
    .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-webkit-input-placeholder {
        color: #c2c2c2
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:-ms-input-placeholder,
    .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:-ms-input-placeholder {
        color: #c2c2c2
    }

    .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore {
        float: left;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1
    }

    .page-product-giftcard .product-add-form .field:not(.text) .additional {
        margin-top: 11px
    }

    .page-product-giftcard .product-add-form .field:not(.text).required>.label:after,
    .page-product-giftcard .product-add-form .field:not(.text)._required>.label:after {
        content: '*';
        color: #e02b27;
        font-size: 1.4rem;
        margin: 0 0 0 5.5px
    }

    .page-product-giftcard .product-add-form .field:not(.text) .note {
        font-size: 1.4rem;
        margin: 3px 0 0;
        padding: 0;
        display: inline-block;
        text-decoration: none
    }

    .page-product-giftcard .product-add-form .field:not(.text) .note:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 28px;
        line-height: 14px;
        content: '\e618';
        font-family: 'mbicon';
        vertical-align: middle;
        display: inline-block;
        font-weight: 400;
        overflow: hidden;
        speak: none;
        text-align: center
    }

    .page-product-giftcard .product-add-form .field:not(.text):nth-child(odd) {
        padding-right: 25px
    }

    .page-product-giftcard .product-add-form .field:not(.text):nth-child(even) {
        padding-right: 0
    }

    .page-product-giftcard .product-add-form .product-options-wrapper .field:not(.date)>.control {
        width: auto
    }

    .gift-message .field {
        margin: 0 0 22px;
        box-sizing: border-box
    }

    .gift-message .field>.label {
        margin: 0
    }

    .gift-message .field:before,
    .gift-message .field:after {
        content: '';
        display: table
    }

    .gift-message .field:after {
        clear: both
    }

    .gift-message .field.choice:before,
    .gift-message .field.no-label:before {
        padding: 6px 15px 0 0;
        width: 25.8%;
        box-sizing: border-box;
        content: ' ';
        float: left;
        height: 1px
    }

    .gift-message .field .description {
        padding: 6px 15px 0 0;
        text-align: left;
        width: 25.8%;
        box-sizing: border-box;
        float: left
    }

    .gift-message .field:not(.choice)>.label {
        padding: 6px 15px 0 0;
        text-align: left;
        width: 25.8%;
        box-sizing: border-box;
        float: left
    }

    .gift-message .field:not(.choice)>.control {
        width: 74.2%;
        float: left
    }

    .gift-options {
        position: relative;
        z-index: 1
    }

    .gift-options .actions-toolbar {
        clear: both;
        padding: 0;
        position: static
    }

    .gift-options .actions-toolbar .secondary {
        float: right
    }

    .gift-options .actions-toolbar .secondary .action {
        float: right;
        margin-left: 22px;
        margin-right: 0
    }

    .gift-options .actions-toolbar .secondary .action-cancel {
        display: block;
        float: left;
        margin-top: 6px
    }

    .gift-options .actions-toolbar:nth-child(3):before {
        border-left: 1px solid #c1c1c1;
        bottom: 5rem;
        content: "";
        display: block;
        left: 50%;
        overflow: hidden;
        position: absolute;
        top: 0;
        width: 0
    }

    .gift-options-title {
        font-weight: 300;
        font-size: 1.8rem
    }

    .gift-item-block .title {
        padding: 22px 0
    }

    .item-gift td {
        padding-left: 0;
        padding-right: 0
    }

    .cart.table-wrapper .action-gift {
        float: left;
        display: inline-block;
        text-decoration: none
    }

    .cart.table-wrapper .action-gift:after {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 18px;
        line-height: 20px;
        color: #262626;
        content: "\e93a";
        font-family: 'mbicon';
        margin: 0 0 0 11px;
        vertical-align: middle;
        display: inline-block;
        font-weight: 400;
        overflow: hidden;
        speak: none;
        text-align: center
    }

    .cart.table-wrapper .action-gift:hover:after {
        color: #333
    }

    .cart.table-wrapper .action-gift:active:after {
        color: #262626
    }

    .cart.table-wrapper .action-gift._active:after {
        content: "\e939"
    }

    .cart.table-wrapper .gift-options .actions-toolbar {
        clear: both;
        padding: 0;
        position: static
    }

    .cart-container .cart-gift-item {
        margin-bottom: 22px
    }

    .cart-container .cart-gift-item .gift-options,
    .cart-container .cart-gift-item .gift-summary {
        padding-bottom: 22px
    }

    .form-giftregistry-share .fieldset .field,
    .form-giftregistry-edit .fieldset .field {
        width: 45%
    }

    .form-giftregistry-edit .fieldset.shipping_address .fieldset {
        margin-top: 22px
    }

    .table-giftregistry .col.create {
        white-space: nowrap
    }

    .table-giftregistry .col.message {
        width: 40%
    }

    .table-giftregistry .col.actions {
        width: 30%
    }

    .table-giftregistry-items .col.note {
        width: 30%
    }

    .account .data.table.table-giftregistry-items>thead>tr>th,
    .account .data.table.table-giftregistry-items>tbody>tr>th,
    .account .data.table.table-giftregistry-items>tfoot>tr>th,
    .account .data.table.table-giftregistry-items>thead>tr>td,
    .account .data.table.table-giftregistry-items>tbody>tr>td,
    .account .data.table.table-giftregistry-items>tfoot>tr>td {
        border-top: 1px solid #d1d1d1
    }

    .account .data.table.table-giftregistry-items>caption+thead>tr:first-child>th,
    .account .data.table.table-giftregistry-items>colgroup+thead>tr:first-child>th,
    .account .data.table.table-giftregistry-items>thead:first-child>tr:first-child>th,
    .account .data.table.table-giftregistry-items>caption+thead>tr:first-child>td,
    .account .data.table.table-giftregistry-items>colgroup+thead>tr:first-child>td,
    .account .data.table.table-giftregistry-items>thead:first-child>tr:first-child>td {
        border-top: 0
    }

    .account .data.table.table-giftregistry-items>tbody+tbody {
        border-top: 1px solid #d1d1d1
    }

    .account .data.table.table-giftregistry-items th {
        border-bottom: 0
    }

    .account .data.table.table-giftregistry-items>tbody>tr:nth-child(even)>td,
    .account .data.table.table-giftregistry-items>tbody>tr:nth-child(even)>th {
        background: 0 0
    }

    .form-giftregistry-search .fieldset {
        margin-bottom: 29px
    }

    .form-giftregistry-search .fieldset .field.name,
    .form-giftregistry-search .fieldset .field.lastname {
        padding: 0 12px 0 0;
        box-sizing: border-box;
        display: inline-block;
        width: 50%;
        vertical-align: top;
        margin-bottom: auto
    }

    .form-giftregistry-search .fieldset .field.name+.fieldset,
    .form-giftregistry-search .fieldset .field.lastname+.fieldset {
        clear: both
    }

    .form-giftregistry-search .fieldset .field.lastname {
        padding: 0
    }

    .block-giftregistry-shared-items .item {
        border-bottom: 1px solid #d1d1d1;
        border-top: 0
    }

    .block-giftregistry-shared-items .product-item-photo {
        display: table-cell;
        max-width: 100%;
        padding: 0 22px 0 0;
        vertical-align: top;
        width: 1%
    }

    .block-giftregistry-shared-items .product-item-details {
        display: table-cell;
        vertical-align: top;
        width: 99%;
        word-break: normal
    }

    .block-giftregistry-shared-items .col.product {
        width: 48%
    }

    .block-giftregistry-shared-items .col:not(.product) {
        text-align: center
    }

    .block-giftregistry-shared-items .col.price {
        padding-top: 17px
    }

    .block-giftregistry-shared-items .input-text.qty {
        margin-top: -4px
    }

    .gift-wrapping {
        box-sizing: border-box;
        float: left;
        padding-right: 22px;
        width: 50%
    }

    .gift-wrapping+.gift-message {
        border-left: 1px solid #c1c1c1;
        box-sizing: border-box;
        float: left;
        padding-left: 4.5rem;
        width: 50%
    }

    .table-invitations .col {
        width: 50%
    }

    .wishlist.window.popup {
        bottom: auto;
        top: 20%;
        left: 50%;
        margin-left: -212px;
        width: 380px;
        right: auto
    }

    .wishlist.window.popup .field {
        margin: 0 0 22px
    }

    .wishlist.window.popup .field:not(.choice)>.label {
        box-sizing: content-box;
        float: none;
        width: auto;
        text-align: left;
        padding: 0
    }

    .wishlist.window.popup .field:not(.choice)>.control {
        float: none;
        width: auto
    }

    .wishlist.window.popup .field>.label {
        margin: 0 0 5.5px;
        display: inline-block
    }

    .wishlist.window.popup .field.choice:before,
    .wishlist.window.popup .field.no-label:before {
        display: none
    }

    .block-wishlist-management {
        margin-bottom: 22px
    }

    .block-wishlist-management .wishlist-select {
        border-bottom: 1px solid #e8e8e8;
        display: table;
        margin-bottom: 15px;
        width: 100%
    }

    .block-wishlist-management .wishlist-select .wishlist-name {
        display: table-cell;
        margin-right: 11px;
        padding: 5.5px 11px 11px;
        vertical-align: top;
        white-space: nowrap;
        width: 5%
    }

    .block-wishlist-management .wishlist-select-items {
        display: table-cell;
        padding-right: 160px;
        vertical-align: top
    }

    .block-wishlist-management .wishlist-select-items .item {
        display: inline-block;
        margin-right: 11px;
        padding: 5.5px 11px 11px
    }

    .block-wishlist-management .wishlist-select-items .item:last-child {
        margin-right: 0
    }

    .block-wishlist-management .wishlist-select-items .current {
        border-bottom: 3px solid #ff5501;
        font-weight: 600
    }

    .block-wishlist-management .wishlist-select .wishlist-name-current {
        display: none
    }

    .block-wishlist-management .wishlist-add.item {
        position: absolute;
        right: 0;
        top: 0
    }

    .block-wishlist-management .wishlist-title strong {
        font-size: 4rem
    }

    .block-wishlist-management .wishlist-info {
        float: left
    }

    .block-wishlist-management .wishlist-toolbar {
        float: right
    }

    .block-wishlist-info-items .product-item-photo {
        margin-left: 0
    }

    .products-grid.wishlist .product-item-checkbox {
        float: left
    }

    .products-grid.wishlist .product-item-checkbox+.product-item-name {
        margin-left: 27.5px
    }

    .form-create-return .fieldset .field {
        width: 45%
    }

    .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box {
        clear: none;
        float: left;
        width: 25%
    }

    .block-returns-tracking .block-title .action {
        margin: 12px 0 0 30px
    }

    .block-returns-tracking .block-title .action.track {
        float: right
    }

    .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
    [class^=sales-guest-] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
    .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
        clear: none;
        float: left;
        width: 25%
    }

    .block-order-details-comments .comment-content {
        overflow: hidden
    }

    .order-details-items .col {
        width: auto
    }

    .order-details-items .col.price {
        text-align: center
    }

    .order-details-items .col.subtotal {
        text-align: right
    }

    .order-details-items tbody td {
        padding-bottom: 20px;
        padding-top: 20px
    }

    .order-details-items.ordered .order-title {
        display: none
    }

    .order-pager-wrapper .order-pager-wrapper-top {
        padding-left: 0;
        padding-right: 0
    }

    .order-pager-wrapper .toolbar-amount {
        position: relative
    }

    .order-pager-wrapper .pages {
        float: right
    }

    .table-order-items tbody .col.label,
    .table-order-items tbody .col.value {
        padding-left: 0
    }

    .table-order-items.invoice .col.qty,
    .table-order-items.shipment .col.qty {
        text-align: center
    }

    .table-order-items.creditmemo .col.qty,
    .table-order-items.creditmemo .col.discount,
    .table-order-items.creditmemo .col.subtotal {
        text-align: center
    }

    .table-order-items.creditmemo .col.total {
        text-align: right
    }

    .form.send.friend {
        width: 60%
    }

    .form.send.friend .fieldset .field {
        width: 45%
    }

    .form.send.friend .fieldset .field.text {
        width: 90%
    }

    .header.panel>.header.links {
        float: right;
        font-size: 0;
        margin: 0;
        padding: 0;
        list-style: none none;
        margin-left: auto
    }

    .header.panel>.header.links>li {
        display: inline-block;
        vertical-align: top
    }

    .header.panel>.header.links>li {
        font-size: 16px;
        margin: 0 0 0 15px
    }

    .header.panel>.header.links>li.welcome,
    .header.panel>.header.links>li a {
        line-height: 1.4
    }

    .header.panel>.header.links>li.welcome a {
        padding-left: 5.5px
    }

    .page-main>.page-title-wrapper .page-title {
        display: inline-block
    }

    .page-main>.page-title-wrapper .page-title+.action {
        float: right;
        margin-top: 22px
    }

    .products-grid.wishlist .product-item-info:hover .product-item-inner {
        display: block
    }

    .products-grid.wishlist .product-item-tooltip {
        display: inline-block
    }

    .products-grid.wishlist .product-item .fieldset {
        margin-bottom: 0
    }

    .products-grid.wishlist .product-item .fieldset .field.qty {
        float: left
    }

    .products-grid.wishlist .product-item .fieldset .field.qty {
        float: left;
        padding-right: 11px;
        margin-bottom: 10px
    }

    .products-grid.wishlist .product-item .box-tocart {
        margin-bottom: 0
    }

    .products-grid.wishlist .product-item .box-tocart .control {
        margin-bottom: 0
    }

    .products-grid.wishlist .product-item .box-tocart .actions-primary {
        margin: 0
    }

    .products-grid.wishlist .product-item .box-tocart .actions-primary button {
        width: 100%
    }

    .products-grid.wishlist .product-item .box-tocart .stock {
        margin: 22px 0 0
    }

    .products-grid.wishlist .product-item .tocart {
        width: auto
    }

    .wishlist-index-index .product-item-info {
        position: relative;
        width: 100%;
        display: inline-block;
        vertical-align: top
    }

    .wishlist-index-index .product-item-inner {
        background: #fff;
        box-shadow: 0 2px 5px #e1e1e1;
        display: none;
        left: 0;
        margin: 0;
        padding: 0 9px 9px;
        position: absolute;
        right: 0;
        z-index: 2
    }

    .block.widget .products-grid .product-item {
        width: 33.33333333%
    }

    .sidebar .block.widget .products-grid .product-item {
        margin-left: 0;
        width: 100%
    }

    .sidebar .block.widget .products-grid .product-item .actions-secondary {
        display: block;
        padding: 10px 0
    }

    .page-layout-1column .block.widget .products-grid .product-item {
        margin-left: 2%;
        width: calc((100% - 6%)/4)
    }

    .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n+1) {
        margin-left: 2%
    }

    .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n+1) {
        margin-left: 0
    }

    .page-layout-3columns .block.widget .products-grid .product-item {
        width: 50%
    }

    .sidebar .block.widget .pager .pages-item-next {
        padding: 0
    }

    .sidebar .block.widget .pager .pages-item-next .action {
        margin: 0
    }
}

@media all and (min-width:769px),
print {
    .pagebuilder-mobile-only {
        display: none !important
    }
}

@media all and (min-width:1024px),
print {
    .aw-ar__review-list.customer .summary {
        min-width: 200px
    }

    .aw-ar__review-list.customer .product_name {
        width: 100%
    }

    .aw-ar-main .container-body .aw-ar__review-list-nav__inner .right-column {
        margin-left: 251px
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content {
        max-width: 300px;
        left: 0
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content:after,
    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content:before {
        left: 15px
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content .tooltip-content-inner {
        max-width: 300px
    }

    .amfaq-social-buttons {
        float: right;
        padding-top: 0
    }

    .am-widget-categories-2 .am-widget-category {
        width: 50%
    }

    .am-widget-categories-3 .am-widget-category {
        width: 33.3333%
    }

    .checkout-index-index .modal-popup .modal-inner-wrap {
        margin-left: -400px;
        width: 800px;
        left: 50%
    }

    .table-checkout-shipping-method {
        min-width: 500px
    }

    .block.widget .products-grid .product-item {
        width: 20%
    }

    .page-layout-1column .block.widget .products-grid .product-item {
        margin-left: 2%;
        width: calc((100% - 8%)/5)
    }

    .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n+1) {
        margin-left: 2%
    }

    .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n+1) {
        margin-left: 0
    }

    .page-layout-3columns .block.widget .products-grid .product-item {
        width: 25%
    }

    .block.widget .products-grid .product-items {
        margin: 0
    }

    .block.widget .products-grid .product-item {
        margin-left: calc((100% - 4*24.439%)/3);
        padding: 0;
        width: 24.439%
    }

    .block.widget .products-grid .product-item:nth-child(4n+1) {
        margin-left: 0
    }
}

@media all and (min-width:1440px),
print {
    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content {
        max-width: 350px
    }

    .aw-pquestion__customer-question.container .tooltip-container .tooltip-content .tooltip-content-inner {
        max-width: 350px
    }

    .sidebar .product-items .product-item-info .product-item-photo {
        float: none;
        left: 0;
        margin: 0;
        position: absolute;
        top: 0
    }

    .sidebar .product-items .product-item-details {
        margin-left: 85px
    }
}

.amamp-reviews-block .amamp-view-rating .amamp-rating:after {
    content: "\2605 \2605 \2605 \2605 \2605"
}

.amamp-content-wrapper .amamp-form.i-amphtml-form .amamp-wishlist:after {
    content: "\e600"
}

.amamp-header-container .amamp-minibar-block .amamp-form.i-amphtml-form .amamp-search-btn:after {
    content: "\f682"
}

.amamp-header-container .amamp-minibar-block .amamp-form.i-amphtml-form .amamp-minicart-link:after {
    content: "\e611"
}

.ask-form-container textarea#amfaq-title {
    width: 100%
}

/* Wishlist */

.ecom-wishlist {
    padding: 10px 0 40px;
}

.product-table {
    width: 100%;
    overflow-x: auto;
}

.product-table tr td,
.product-table th {
    vertical-align: middle;
    padding: 12px 24px;
}

.product-table th {
    font-weight: var(--font-weight-medium);
}

.wishlist-table td.wish-product {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wishlist-table .add-cart {
    display: block;
    width: 120px;
    height: 40px;
    color: #FFFFFF;
    background-color: #3e3e3e;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
}

.stock-status {
    width: max-content;
    padding: 3px 16px;
    color: #FFFFFF;
    background-color: #ff3a27;
    border-radius: 24px;
    text-align: center;
}

.product-table .product-img {
    width: 100px;
}

#description .description p {
    font-size: 16px;
}

.dress-title {
    line-height: 1.5;
    margin: 8px 0;
}

/* Offer Products */

.offer-products-container .sec-heading h2 {
    line-height: 1.4 !important;
}

.offer-prodcuts-wpr {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}

.offer-prodcuts-wpr .product {
    position: relative;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgb(155 155 155 / 50%);
}

.offer-prodcuts-wpr .product:hover {
    z-index: 2;
}

.offer-prodcuts-wpr .woocommerce-image__wrapper {
    position: relative;
    transition: all .2s ease-in-out;
    width: 100%;
}

.offer-prodcuts-wpr .product:hover .woocommerce-image__wrapper {
    transform: scale(.982);
}

.offer-prodcuts-wpr .product .product-label {
    display: none;
    position: absolute;
    z-index: 1;
    top: 5px;
    left: -5px;
    min-width: 46px;
    max-width: 50%;
    min-height: 24px;
    align-items: center;
    padding: 5px 7px;
    border-radius: 4px;
    color: #fff;
    background-color: #3bb54a;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .4px;
    text-transform: uppercase;
    word-break: break-all;
    transition: opacity .3s ease;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.offer-prodcuts-wpr .product img {
    height: 266px;
}

.offer-prodcuts-wpr .woocommerce-loop-product__title {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.offer-prodcuts-wpr .product .price {
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.offer-prodcuts-wpr .product .price del {
    font-size: 13px;
    font-weight: 400;
    margin-right: 8px;
}

.offer-prodcuts-wpr .product .button {
    display: none;
    z-index: 1;
    width: calc(100% - 10px);
    height: 40px;
    padding: 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    border-radius: 4px 4px 4px 4px;
    padding: 0px 0px 0px 0px;
    color: #fff;
    background-color: #26D8E0;
    margin: 6px auto 8px;
    transition: all .3s;
}

/* .offer-prodcuts-wpr .product:hover .button {
    opacity: 1;
} */

@media only screen and (max-width:1199px) {
    .offer-prodcuts-wpr {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width:991px) {
    .offer-prodcuts-wpr {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width:480px) {
    .offer-prodcuts-wpr {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width:1200px) {
    .flash-items .product-item .product-show {
        padding-bottom: 4px;
    }
}

@media only screen and (max-width:320px) {
    .widget-product-grid .product-show {
        padding-bottom: 60px !important;
    }

    .widget-product-grid.owl-carousel .owl-item .product-btn {
        bottom: -55px;
    }

    .product-item:hover .product-btn {
        bottom: -2px;
    }
}

.footer-des {
    font-size: 1.45rem;
    color: #262626;
}