@charset "UTF-8";
.tm_timeline {
position: relative;
padding: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.tm_timeline__container {
margin-left: auto;
margin-right: auto;
}
.tm_timeline.tm_timeline-layout-horizontal,
.tm_timeline.tm_timeline-layout-horizontal .tm_timeline__container {
display: block;
justify-content: inherit;
align-items: inherit;
position: relative;
}
.tm_timeline.tm_timeline-layout-vertical .tm_timeline__container {
margin-left: 50%;
}
.tm_timeline.tm_timeline-layout-vertical-chessOrder .tm_timeline__container {
margin-left: auto;
width: 100%;
}
.tm_timeline__control,
.tm_timeline__control:hover,
.tm_timeline__control:active,
.tm_timeline__control:focus,
.entry-content .tm_timeline__control,
.entry-content .tm_timeline__control:hover,
.entry-content .tm_timeline__control:active,
.entry-content .tm_timeline__control:focus {
position: absolute;
top: 50%;
z-index: 1000;
text-align: center;
font-size: 18px;
line-height: 24px;
color: #888;
text-decoration: none;
border-radius: 100%;
opacity: 0;
transition: all .2s linear;
border: 1px solid;
border-color: #fff;
background: #ddd;
outline: none;
padding: 4px 10px;
}
.tm_timeline__control:focus,
.entry-content .tm_timeline__control:focus {
box-shadow: 0 0 2px #09f;
outline: none;
}
.tm_timeline__control.tm_timeline__control-slide-left {
transform: translateX(-200%);
left: 0;
}
.tm_timeline__control.tm_timeline__control-slide-right {
margin-left: -24px;
right: 0;
transform: translateX(200%);
}
.tm_timeline:hover .tm_timeline__control {
opacity: 1;
transform: translateX(0);
border-color: #ddd;
background-color: #fff;
color: #444;
}
.tm_timeline:hover .tm_timeline__control:hover,
.entry-content .tm_timeline:hover .tm_timeline__control:hover {
border-color: #288ce4;
box-shadow: 0 0 2px #09f;
color: #288ce4;
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__body,
.tm_timeline__body-tense {
width: 100%;
}
.tm_timeline-layout-horizontal .tm_timeline__body {
overflow: hidden;
}
.tm_timeline__tense {
position: absolute;
z-index: 1;
left: 0;
right: 0;
top: 50%;
width: 100%;
height: 4px;
background: #eee;
margin-top: -5px;
}
.tm_timeline__body-tense {
border-left: 4px solid #eee;
}
.tm_timeline-layout-horizontal .tm_timeline__tense {
transform: translateY(32px);
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__tense {
position: absolute;
z-index: 1;
top: 0;
margin-left: auto;
margin-right: auto;
width: 4px;
height: 100%;
background: #eee;
}
.tm_timeline__event {
position: relative;
margin-bottom: 20px;
z-index: 10;
text-align: left;
}
.tm_timeline-layout-vertical .tm_timeline__event {
display: block;
}
.tm_timeline-layout-horizontal .tm_timeline__event {
display: inline-block;
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event {
margin-left: auto;
margin-right: auto;
max-width: 50%;
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-odd {
transform: translateX(50%);
text-align: left;
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-even {
transform: translateX(-50%);
text-align: right;
}
.tm_timeline:not(.tm_timeline-layout-vertical-chessOrder) .tm_timeline__event__date,
.tm_timeline:not(.tm_timeline-layout-vertical-chessOrder) .tm_timeline__event__title,
.tm_timeline:not(.tm_timeline-layout-vertical-chessOrder) .tm_timeline__event__description {
transform: translateX(10px);
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-odd .tm_timeline__event__date,
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-odd .tm_timeline__event__title,
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-odd .tm_timeline__event__description {
transform: translateX(20px);
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-even .tm_timeline__event__date,
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-even .tm_timeline__event__title,
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-even .tm_timeline__event__description {
transform: translateX(-20px);
}
.tm_timeline__event__date {
display: block;
font-size: 16px;
line-height: 20px;
font-weight: bold;
color: #09d;
}
.tm_timeline__event__title {
font-size: 16px;
font-weight: bold;
color: #444;
}
.tm_timeline-layout-horizontal .tm_timeline__event__title {
position: relative;
}
.tm_timeline__event__description {
display: block;
font-size: 14px;
}
.tm_timeline__event__dot {
width: 8px;
height: 8px;
background: #444;
box-shadow: 0 0 0 4px #fff;
border-radius: 100%;
}
.tm_timeline-layout-vertical .tm_timeline__event__dot {
transform: translate(-6px, 14px);
}
.tm_timeline-layout-horizontal .tm_timeline__event__dot {
position: absolute;
top: 50%;
z-index: 1;
transform: translateY(40px);
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-odd .tm_timeline__event__dot {
position: absolute;
left: 0;
transform: translate(-4px, 6px);
}
.tm_timeline-layout-vertical-chessOrder .tm_timeline__event-even .tm_timeline__event__dot {
position: absolute;
right: 0;
transform: translate(4px, 6px);
}
.tm_timeline__pages {
display: block;
width: 100%;
position: relative;
z-index: 200;
padding-bottom: 10px;
}
.tm_timeline__pages .tm_timeline__page {
text-align: center;
display: none;
transition: transform .2s linear,
opacity .2s linear;
opacity: 0;
}
.tm_timeline__pages .tm_timeline__page-current-animate-left,
.tm_timeline__pages .tm_timeline__page-current-animate-right {
transition: all 0s linear;
}
.tm_timeline__pages .tm_timeline__page-current-animate-left {
transform: translateX( -10% );
}
.tm_timeline__pages .tm_timeline__page-current-animate-right {
transform: translateX( 10% );
}
.tm_timeline__pages .tm_timeline__page-current {
transition: transform .2s linear,
opacity .2s linear;
transform: translateX(0);
opacity: 1;
}
.tm_timeline__pages .tm_timeline__page-current,
.tm_timeline__pages .tm_timeline__page-current-animate-left,
.tm_timeline__pages .tm_timeline__page-current-animate-right {
display: block;
}
.tm_timeline__page__content {
display: flex;
justify-content: space-around;
width: 100%;
}
    @font-face {
font-family: 'Pe-icon-7-stroke';
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/pixeden-stroke-7-icon/fonts/Pe-icon-7-stroke.eot?d7yf1v);
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/pixeden-stroke-7-icon/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v) format("embedded-opentype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/pixeden-stroke-7-icon/fonts/Pe-icon-7-stroke.woff?d7yf1v) format("woff"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/pixeden-stroke-7-icon/fonts/Pe-icon-7-stroke.ttf?d7yf1v) format("truetype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/pixeden-stroke-7-icon/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke) format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Ionicons';
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/Ionicons/fonts/ionicons.eot);
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/Ionicons/fonts/ionicons.eot) format("embedded-opentype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/Ionicons/fonts/ionicons.woff) format("woff"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/Ionicons/fonts/ionicons.ttf) format("truetype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/Ionicons/fonts/ionicons.svg) format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Themify-icons';
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/themify-icons/fonts/themify.eot);
src: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/themify-icons/fonts/themify.eot) format("embedded-opentype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/themify-icons/fonts/themify.woff) format("woff"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/themify-icons/fonts/themify.ttf) format("truetype"), url(//hanayama-toys.com/wp-content/themes/hanayama/assets/libs/themify-icons/fonts/themify.svg) format("svg");
font-weight: normal;
font-style: normal; }
.bg-faded {
background-color: #f7f7f9; }
.bg-primary {
color: #fff !important;
background-color: #0275d8 !important; }
a.bg-primary:focus, a.bg-primary:hover {
background-color: #025aa5 !important; }
.bg-success {
color: #fff !important;
background-color: #5cb85c !important; }
a.bg-success:focus, a.bg-success:hover {
background-color: #449d44 !important; }
.bg-info {
color: #fff !important;
background-color: #5bc0de !important; }
a.bg-info:focus, a.bg-info:hover {
background-color: #31b0d5 !important; }
.bg-warning {
color: #fff !important;
background-color: #f0ad4e !important; }
a.bg-warning:focus, a.bg-warning:hover {
background-color: #ec971f !important; }
.bg-danger {
color: #fff !important;
background-color: #d9534f !important; }
a.bg-danger:focus, a.bg-danger:hover {
background-color: #c9302c !important; }
.bg-inverse {
color: #fff !important;
background-color: #373a3c !important; }
a.bg-inverse:focus, a.bg-inverse:hover {
background-color: #1f2021 !important; }
.clearfix::after {
content: "";
display: table;
clear: both; }
.d-block {
display: block !important; }
.d-inline-block {
display: inline-block !important; }
.d-inline {
display: inline !important; }
.flex-xs-first {
-ms-flex-order: -1;
order: -1; }
.flex-xs-last {
-ms-flex-order: 1;
order: 1; }
.flex-xs-unordered {
-ms-flex-order: 0;
order: 0; }
.flex-items-xs-top {
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-xs-middle {
-ms-flex-align: center;
align-items: center; }
.flex-items-xs-bottom {
-ms-flex-align: end;
align-items: flex-end; }
.flex-xs-top {
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-xs-middle {
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-xs-bottom {
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-xs-left {
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-xs-center {
-ms-flex-pack: center;
justify-content: center; }
.flex-items-xs-right {
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-xs-around {
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-xs-between {
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-xs-left {
float: left !important; }
.pull-xs-right {
float: right !important; }
.pull-xs-none {
float: none !important; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; }
.w-100 {
width: 100% !important; }
.m-x-auto {
margin-right: auto !important;
margin-left: auto !important; }
.m-a-0 {
margin: 0 0 !important; }
.m-t-0 {
margin-top: 0 !important; }
.m-r-0 {
margin-right: 0 !important; }
.m-b-0 {
margin-bottom: 0 !important; }
.m-l-0 {
margin-left: 0 !important; }
.m-x-0 {
margin-right: 0 !important;
margin-left: 0 !important; }
.m-y-0 {
margin-top: 0 !important;
margin-bottom: 0 !important; }
.m-a-1 {
margin: 1rem 1rem !important; }
.m-t-1 {
margin-top: 1rem !important; }
.m-r-1 {
margin-right: 1rem !important; }
.m-b-1 {
margin-bottom: 1rem !important; }
.m-l-1 {
margin-left: 1rem !important; }
.m-x-1 {
margin-right: 1rem !important;
margin-left: 1rem !important; }
.m-y-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important; }
.m-a-2 {
margin: 1.5rem 1.5rem !important; }
.m-t-2 {
margin-top: 1.5rem !important; }
.m-r-2 {
margin-right: 1.5rem !important; }
.m-b-2 {
margin-bottom: 1.5rem !important; }
.m-l-2 {
margin-left: 1.5rem !important; }
.m-x-2 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important; }
.m-y-2 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important; }
.m-a-3 {
margin: 3rem 3rem !important; }
.m-t-3 {
margin-top: 3rem !important; }
.m-r-3 {
margin-right: 3rem !important; }
.m-b-3 {
margin-bottom: 3rem !important; }
.m-l-3 {
margin-left: 3rem !important; }
.m-x-3 {
margin-right: 3rem !important;
margin-left: 3rem !important; }
.m-y-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important; }
.p-a-0 {
padding: 0 0 !important; }
.p-t-0 {
padding-top: 0 !important; }
.p-r-0 {
padding-right: 0 !important; }
.p-b-0 {
padding-bottom: 0 !important; }
.p-l-0 {
padding-left: 0 !important; }
.p-x-0 {
padding-right: 0 !important;
padding-left: 0 !important; }
.p-y-0 {
padding-top: 0 !important;
padding-bottom: 0 !important; }
.p-a-1 {
padding: 1rem 1rem !important; }
.p-t-1 {
padding-top: 1rem !important; }
.p-r-1 {
padding-right: 1rem !important; }
.p-b-1 {
padding-bottom: 1rem !important; }
.p-l-1 {
padding-left: 1rem !important; }
.p-x-1 {
padding-right: 1rem !important;
padding-left: 1rem !important; }
.p-y-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important; }
.p-a-2 {
padding: 1.5rem 1.5rem !important; }
.p-t-2 {
padding-top: 1.5rem !important; }
.p-r-2 {
padding-right: 1.5rem !important; }
.p-b-2 {
padding-bottom: 1.5rem !important; }
.p-l-2 {
padding-left: 1.5rem !important; }
.p-x-2 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important; }
.p-y-2 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important; }
.p-a-3 {
padding: 3rem 3rem !important; }
.p-t-3 {
padding-top: 3rem !important; }
.p-r-3 {
padding-right: 3rem !important; }
.p-b-3 {
padding-bottom: 3rem !important; }
.p-l-3 {
padding-left: 3rem !important; }
.p-x-3 {
padding-right: 3rem !important;
padding-left: 3rem !important; }
.p-y-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important; }
.pos-f-t {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030; }
.text-justify {
text-align: justify !important; }
.text-nowrap {
white-space: nowrap !important; }
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.text-xs-left {
text-align: left !important; }
.text-xs-right {
text-align: right !important; }
.text-xs-center, .amely-icon-box.center {
text-align: center !important; }
.text-lowercase {
text-transform: lowercase !important; }
.text-uppercase {
text-transform: uppercase !important; }
.text-capitalize {
text-transform: capitalize !important; }
.font-weight-normal {
font-weight: normal; }
.font-weight-bold {
font-weight: bold; }
.font-italic {
font-style: italic; }
.text-muted {
color: #818a91 !important; }
a.text-muted:focus, a.text-muted:hover {
color: #687077 !important; }
.text-primary {
color: #0275d8 !important; }
a.text-primary:focus, a.text-primary:hover {
color: #025aa5 !important; }
.text-success {
color: #5cb85c !important; }
a.text-success:focus, a.text-success:hover {
color: #449d44 !important; }
.text-info {
color: #5bc0de !important; }
a.text-info:focus, a.text-info:hover {
color: #31b0d5 !important; }
.text-warning {
color: #f0ad4e !important; }
a.text-warning:focus, a.text-warning:hover {
color: #ec971f !important; }
.text-danger {
color: #d9534f !important; }
a.text-danger:focus, a.text-danger:hover {
color: #c9302c !important; }
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.invisible {
visibility: hidden !important; }
.hidden-xs-up {
display: none !important; }
.hidden-xxl-down {
display: none !important; }
.visible-print-block {
display: none !important; }
.visible-print-inline {
display: none !important; }
.visible-print-inline-block {
display: none !important; } .col-xs-is-5 {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-xs-pull-is-5 {
right: 20%; }
.col-xs-push-is-5 {
left: 20%; }
.col-xs-offset-is-5 {
margin-left: 20%; }
.amely-banner.hover-white-overlay:before, .amely-banner.hover-black-overlay:before, .amely-banner2.hover-white-overlay:before, .amely-banner2.hover-black-overlay:before, .amely-banner3.hover-white-overlay:before, .amely-banner3.hover-black-overlay:before, .amely-product-category-banner.hover-white-overlay:before, .amely-product-category-banner.hover-black-overlay:before {
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
button, .amely-button,
input[type="submit"],
input[type="button"],
a.button, a, .error404 .area-404__content-heading .button, .error404 .area-404__content-heading .button:after, .site-footer .mc4wp-form button[type="submit"]:hover, .site-footer .mc4wp-form [type="submit"].amely-button:hover, .site-header .left-col .switcher-menu .menu li .sub-menu, .site-header .left-col .switcher-menu .menu li .sub-menu > li, body.mobile-menu-opened .site-header:not(.sticky-header):after,
body.mobile-wishlist-opened .site-header:not(.sticky-header):after,
body.mobile-minicart-opened .site-header:not(.sticky-header):after, .tm-instagram-pics .item .play-button, .tm-instagram-pics .item .overlay, .tm-instagram-pics .item-info, .amely-loadmore-wrap .amely-loadmore-btn, .header-minicart .minicart-dropdown-wrapper, .header-minicart .widget_shopping_cart .widget_minicart_title .undo, .site-mobile-menu .menu > ul > li .children,
.site-mobile-menu .menu > li .sub-menu, .site-mobile-menu .menu-item-tag, .site-mobile-menu .menu-item-tag:after, .nice-select:after, .nice-select .current, .nice-select .option, .offcanvas-btn i, .offcanvas-sidebar, #page-container, #page-container:after, .masonry-container, .post-quote .source-name span:before, .entry-thumbnail img, .readmore-button, .readmore-button:before, .search-form-wrapper .search-results-wrapper .autocomplete-suggestion, .select2-results__option, .single-nav__prev-item .item-wrapper,
.single-nav__next-item .item-wrapper, .site-menu .menu > ul > li .children li.page_item.page_item_has_children:after, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children:after, .site-menu .menu > ul > li .children li.page_item:not(.menu-item-object-ic_mega_menu):before,
.site-menu .menu > li .sub-menu li.menu-item:not(.menu-item-object-ic_mega_menu):before, .site-menu .menu-item-tag, .site-menu .menu-item-tag:after, .topbar, .topbar .menu li .sub-menu li, .topbar-open-btn, .widget_product_categories li i, .widget_product_categories li .count, .widget_shopping_cart .mini_cart_item, .widget_tm_layered_nav ul.show-labels-on li.no-swatch,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text, .widget_tm_layered_nav li.swatch-color .filter-swatch, .widget_tm_layered_nav li.swatch-image img, .header-wishlist .wishlist-dropdown-wrapper, .header-wishlist .widget_wishlist_title .undo, .header-wishlist .wishlist_item, #customer_login .wc-social-login a.ywsl-social img, ul.product-categories-menu li.cat-item > a:after, .categories-row.categories-carousel, .shop-loop-head .switcher, .col-switcher, .eb-scrollbarcnt .track, .eb-scrollbarcnt .thumb, .wb-allview.wb-allview-amely .wb-allview-item-cnt img, .wb-allview-formcnt.wb-multi-filter-amely label.pw_brand_category_filter_checkbox:after, .woocommerce-checkout .showlogin,
.woocommerce-checkout .showcoupon, .woocommerce-checkout .showlogin:after,
.woocommerce-checkout .showcoupon:after, .mabel-siwc-img-wrapper .mb-siwc-tag, .category-grid-item img, .category-grid-item mark, .category-grid-item .product-category-content, .category-grid-item .product-category-content .category-link:after, .product-loop .thumb-image, .product-loop .hover-image, .product-loop .product-buttons > div, .product-loop .yith-wcwl-add-to-wishlist, #woo-quick-view .quick-view-carousel, .thumbnails-slider .slick-slide img, .woocommerce.single-product .product .summary .compare-btn a, .woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li, .up-sells.slick-slider .products,
.related.slick-slider .products, .product-instagram .tm-instagram-pics .item-info span, .product-instagram .tm-instagram-pics .item-info span:before, .woocommerce .quantity.amely_qty .plus,
.woocommerce .quantity.amely_qty .minus, .isw-swatches .isw-term, .woocommerce-password-hint, .amely-banner-grid-5, .amely-banner-grid-6, .amely-banner-grid-6v2, .amely-banner.hover-white-overlay:before, .amely-banner.hover-black-overlay:before, .amely-banner .banner-button.link:after, .amely-banner2.hover-white-overlay:before, .amely-banner2.hover-black-overlay:before, .amely-banner2 .banner-button.link:after, .amely-banner3.hover-white-overlay:before, .amely-banner3.hover-black-overlay:before, .amely-banner3 .banner-content, .amely-banner3 .banner-button.link:after, .amely-banner4 .banner-content, .amely-banner4 .banner-button.link:after, .amely-blog .post-item, .amely-brands-carousel, .amely-brands-carousel .tm-carousel-item img, .amely-countdown, .amely-image-carousel, .amely-image-carousel .tm-carousel-item img, .amely-instagram--carousel .tm-instagram-pics, .amely-product-categories.categories-layout-carousel, .amely-product-categories.categories-item-black-overlay .category-grid-item .product-category-thumbnail:after, .amely-product-categories.categories-item-black-overlay .category-grid-item .product-category-content, .amely-product-categories.categories-item-black-overlay .category-grid-item h2:after, .amely-product-category-banner.hover-white-overlay:before, .amely-product-category-banner.hover-black-overlay:before, .amely-product-category-banner .category-name, .amely-product-category-banner .product-count, .amely-product-carousel .products, .amely-product-tabs .product-filter li > a:after, .amely-product .background-overlay, .amely-product .button, .amely-product.display_info .product-title,
.amely-product.display_info .product-price, .amely-social .social-links li i, .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel, .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a, .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a:after,
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a:after, .wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely .vc_toggle_title, .megamenu-home .wpb_single_image, .vc_row.lp-homepage img, .vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:before, .vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey, #button-video img,
.show-case img, button.slick-arrow:before, .slick-arrow.amely-button:before, .slick-dots li, .slick-dots li button, .slick-dots li .amely-button, .tp-bullets.custom .tp-bullet {
transition: all 0.5s ease; }
.site-header .left-col .switcher-menu .menu li.menu-item-has-children > a:after, .site-mobile-menu .menu > ul li.page_item .open-child:before,
.site-mobile-menu .menu li.menu-item .open-child:before, .site-mobile-menu .menu-back:before, .nice-select:after, .nice-select.open:after, .amely-pagination .prev:before, .woocommerce-pagination .prev:before, .amely-pagination .next:before, .woocommerce-pagination .next:before, .post.sticky .entry-title a:before, .search-form-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered:after, .site-menu .menu li.page_item.page_item_has_children > a:before, .site-menu .menu li.page_item.menu-item-has-children > a:before,
.site-menu .menu li.menu-item.page_item_has_children > a:before,
.site-menu .menu li.menu-item.menu-item-has-children > a:before, .site-menu .menu > ul > li .children li.page_item.page_item_has_children:after, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children:after, .site-menu .menu > ul > li .children li.page_item.page_item_has_children.has-hover-back:after, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children.has-hover-back:after,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children.has-hover-back:after,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children.has-hover-back:after, .site-menu .menu > ul > li .children li.page_item .children.hover-back li.page_item_has_children:after,
.site-menu .menu > ul > li .children li.page_item .children.hover-back li.menu-item-has-children:after,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.page_item_has_children:after,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.menu-item-has-children:after, .site-header.header-vertical .site-menu .menu > li.menu-item-has-children:after, .social-links li i, .topbar .menu li.menu-item-has-children > a:after, .widget_search form.woocommerce-product-search:after,
.widget_product_search form.woocommerce-product-search:after, .widget_search button:after, .widget_search .amely-button:after,
.widget_product_search button:after,
.widget_product_search .amely-button:after, .widget_price_filter .price_slider_amount .button:before, .yith-woocompare-widget a.compare:before, a.show-categories-menu:after, a.show-categories-menu.open:after, .wb-allview-formcnt .select2 .select2-selection .select2-selection__rendered:after, .wb-allview.wb-allview-amely .wb-allview-cat-cnt .go-to-filter:after, .wb-allview-formcnt.wb-multi-filter-amely label.pw_brand_category_filter_checkbox:after, .wb-bx-wrapper.wb-carousel-amely .wb-bx-prev:before,
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next:before, #pw_stick_brands .pw-title:before, .woocommerce-checkout-payment .payment_box:before, .woocommerce .commentlist.notes .comment-text p.meta:before, .category-grid-item .product-category-content .category-link:after, .woocommerce.single-product .product .summary table.group_table .add-to-cart-btn > a.product_type_external:before, .woocommerce form .select2-container .select2-selection__rendered:after, .woocommerce-password-hint:after, .woocommerce-message:before, .woocommerce-order-received .woocommerce-thankyou-order-received:before,
.woocommerce-error:before,
.woocommerce-info:before, .amely-icon-box .tm-icon-box__content p.subtext:after, .vc_row.coming-soon-row h4:before {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
text-decoration: inherit;
line-height: 1; }
.header-minicart .widget_shopping_cart .widget_minicart_title .close-on-mobile:before, .insight-popup button.mfp-close:before, .insight-popup .mfp-close.amely-button:before, .widget_shopping_cart .remove:before, .yith-woocompare-widget .products-list li a.remove:before, .header-wishlist .widget_wishlist_title .close-on-mobile:before, .header-wishlist .remove:before, #customer_login h2:before, .woocommerce-MyAccount-downloads .download-actions .button.download:before, .woocommerce-cart table.cart td.product-remove a:before, .woocommerce-checkout form.login .lost_password a:before, #woo-quick-view .quick-view-close:after, #woo-quick-view .quickview-loading.added span:before, #woo-quick-view .quickview-loading.error span:before, .mfp-content #woo-quick-view .mfp-close:before {
font-family: 'Pe-icon-7-stroke';
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; }
.tm-instagram-pics .item .play-button:before, .tm-instagram-pics .item-info > div:before, .site-mobile-menu #mobile-searchform button:after, .site-mobile-menu #mobile-searchform .amely-button:after, .entry-meta .meta-date:before, .entry-meta .meta-comments:before, .entry-meta .meta-author:before, .entry-meta .meta-featured-post:before, .entry-meta .meta-categories:before, .single-nav__prev-item .item-wrapper span.meta-date:before,
.single-nav__next-item .item-wrapper span.meta-date:before, .topbar.topbar-divider--dotted .switcher .nice-select .current:before, .topbar-close-btn:before, .woocommerce-customer-details .woocommerce-customer-details--phone:before, .woocommerce-customer-details .woocommerce-customer-details--email:before, .product-loop .product-buttons > div a:before, .product-loop .product-buttons .add-to-cart-btn a.added:before, .product-loop .yith-wcwl-add-to-wishlist a:before, .woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist a:before, .woocommerce.single-product .product .summary .compare-btn a:before, .woocommerce.single-product .product #review_form_wrapper .comment-form .stars a:before, #yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status span:before, .woocommerce .quantity.amely_qty .plus:before,
.woocommerce .quantity.amely_qty .minus:before, .woocommerce table.shop_table td.product-remove a:before, .star-rating:before, .star-rating span:before, .amely-mailchimp .mailchimp-message:before, .amely-product-category-banner.category-title-arrow .category-name:after, .amely-product-widget .product-buttons > div a:before {
font-family: 'Ionicons';
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; }
.offcanvas-close:before, .widget_layered_nav_filters ul li > a:before, .header-wishlist .add-to-cart-btn .button.product_type_grouped:before, .header-wishlist .add-to-cart-btn .button.product_type_variable:before, .header-wishlist .add-to-cart-btn .button.product_type_simple:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li > a:after, .amely-filter-buttons .open-filters:after, .amely-filter-buttons .open-filters.opened:after, .product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading):before, .amely-product-widget .add-to-cart-btn a:not(.loading):before, button.slick-arrow:before, .slick-arrow.amely-button:before {
font-family: 'Themify-icons';
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; }
.pt--100 {
padding-top: -100px; }
.pt--100-i {
padding-top: -100px !important; }
.mt--100 {
margin-top: -100px; }
.mt--100-i {
margin-top: -100px !important; }
.pt-xs--100 {
padding-top: -100px; }
.pt-xs--100-i {
padding-top: -100px !important; }
.mt-xs--100 {
margin-top: -100px; }
.mt-xs--100-i {
margin-top: -100px !important; }
.pt--95 {
padding-top: -95px; }
.pt--95-i {
padding-top: -95px !important; }
.mt--95 {
margin-top: -95px; }
.mt--95-i {
margin-top: -95px !important; }
.pt-xs--95 {
padding-top: -95px; }
.pt-xs--95-i {
padding-top: -95px !important; }
.mt-xs--95 {
margin-top: -95px; }
.mt-xs--95-i {
margin-top: -95px !important; }
.pt--90 {
padding-top: -90px; }
.pt--90-i {
padding-top: -90px !important; }
.mt--90 {
margin-top: -90px; }
.mt--90-i {
margin-top: -90px !important; }
.pt-xs--90 {
padding-top: -90px; }
.pt-xs--90-i {
padding-top: -90px !important; }
.mt-xs--90 {
margin-top: -90px; }
.mt-xs--90-i {
margin-top: -90px !important; }
.pt--85 {
padding-top: -85px; }
.pt--85-i {
padding-top: -85px !important; }
.mt--85 {
margin-top: -85px; }
.mt--85-i {
margin-top: -85px !important; }
.pt-xs--85 {
padding-top: -85px; }
.pt-xs--85-i {
padding-top: -85px !important; }
.mt-xs--85 {
margin-top: -85px; }
.mt-xs--85-i {
margin-top: -85px !important; }
.pt--80 {
padding-top: -80px; }
.pt--80-i {
padding-top: -80px !important; }
.mt--80 {
margin-top: -80px; }
.mt--80-i {
margin-top: -80px !important; }
.pt-xs--80 {
padding-top: -80px; }
.pt-xs--80-i {
padding-top: -80px !important; }
.mt-xs--80 {
margin-top: -80px; }
.mt-xs--80-i {
margin-top: -80px !important; }
.pt--75 {
padding-top: -75px; }
.pt--75-i {
padding-top: -75px !important; }
.mt--75 {
margin-top: -75px; }
.mt--75-i {
margin-top: -75px !important; }
.pt-xs--75 {
padding-top: -75px; }
.pt-xs--75-i {
padding-top: -75px !important; }
.mt-xs--75 {
margin-top: -75px; }
.mt-xs--75-i {
margin-top: -75px !important; }
.pt--70 {
padding-top: -70px; }
.pt--70-i {
padding-top: -70px !important; }
.mt--70 {
margin-top: -70px; }
.mt--70-i {
margin-top: -70px !important; }
.pt-xs--70 {
padding-top: -70px; }
.pt-xs--70-i {
padding-top: -70px !important; }
.mt-xs--70 {
margin-top: -70px; }
.mt-xs--70-i {
margin-top: -70px !important; }
.pt--65 {
padding-top: -65px; }
.pt--65-i {
padding-top: -65px !important; }
.mt--65 {
margin-top: -65px; }
.mt--65-i {
margin-top: -65px !important; }
.pt-xs--65 {
padding-top: -65px; }
.pt-xs--65-i {
padding-top: -65px !important; }
.mt-xs--65 {
margin-top: -65px; }
.mt-xs--65-i {
margin-top: -65px !important; }
.pt--60 {
padding-top: -60px; }
.pt--60-i {
padding-top: -60px !important; }
.mt--60 {
margin-top: -60px; }
.mt--60-i {
margin-top: -60px !important; }
.pt-xs--60 {
padding-top: -60px; }
.pt-xs--60-i {
padding-top: -60px !important; }
.mt-xs--60 {
margin-top: -60px; }
.mt-xs--60-i {
margin-top: -60px !important; }
.pt--55 {
padding-top: -55px; }
.pt--55-i {
padding-top: -55px !important; }
.mt--55 {
margin-top: -55px; }
.mt--55-i {
margin-top: -55px !important; }
.pt-xs--55 {
padding-top: -55px; }
.pt-xs--55-i {
padding-top: -55px !important; }
.mt-xs--55 {
margin-top: -55px; }
.mt-xs--55-i {
margin-top: -55px !important; }
.pt--50 {
padding-top: -50px; }
.pt--50-i {
padding-top: -50px !important; }
.mt--50 {
margin-top: -50px; }
.mt--50-i {
margin-top: -50px !important; }
.pt-xs--50 {
padding-top: -50px; }
.pt-xs--50-i {
padding-top: -50px !important; }
.mt-xs--50 {
margin-top: -50px; }
.mt-xs--50-i {
margin-top: -50px !important; }
.pt--45 {
padding-top: -45px; }
.pt--45-i {
padding-top: -45px !important; }
.mt--45 {
margin-top: -45px; }
.mt--45-i {
margin-top: -45px !important; }
.pt-xs--45 {
padding-top: -45px; }
.pt-xs--45-i {
padding-top: -45px !important; }
.mt-xs--45 {
margin-top: -45px; }
.mt-xs--45-i {
margin-top: -45px !important; }
.pt--40 {
padding-top: -40px; }
.pt--40-i {
padding-top: -40px !important; }
.mt--40 {
margin-top: -40px; }
.mt--40-i {
margin-top: -40px !important; }
.pt-xs--40 {
padding-top: -40px; }
.pt-xs--40-i {
padding-top: -40px !important; }
.mt-xs--40 {
margin-top: -40px; }
.mt-xs--40-i {
margin-top: -40px !important; }
.pt--35 {
padding-top: -35px; }
.pt--35-i {
padding-top: -35px !important; }
.mt--35 {
margin-top: -35px; }
.mt--35-i {
margin-top: -35px !important; }
.pt-xs--35 {
padding-top: -35px; }
.pt-xs--35-i {
padding-top: -35px !important; }
.mt-xs--35 {
margin-top: -35px; }
.mt-xs--35-i {
margin-top: -35px !important; }
.pt--30 {
padding-top: -30px; }
.pt--30-i {
padding-top: -30px !important; }
.mt--30 {
margin-top: -30px; }
.mt--30-i {
margin-top: -30px !important; }
.pt-xs--30 {
padding-top: -30px; }
.pt-xs--30-i {
padding-top: -30px !important; }
.mt-xs--30 {
margin-top: -30px; }
.mt-xs--30-i {
margin-top: -30px !important; }
.pt--25 {
padding-top: -25px; }
.pt--25-i {
padding-top: -25px !important; }
.mt--25 {
margin-top: -25px; }
.mt--25-i {
margin-top: -25px !important; }
.pt-xs--25 {
padding-top: -25px; }
.pt-xs--25-i {
padding-top: -25px !important; }
.mt-xs--25 {
margin-top: -25px; }
.mt-xs--25-i {
margin-top: -25px !important; }
.pt--20 {
padding-top: -20px; }
.pt--20-i {
padding-top: -20px !important; }
.mt--20 {
margin-top: -20px; }
.mt--20-i {
margin-top: -20px !important; }
.pt-xs--20 {
padding-top: -20px; }
.pt-xs--20-i {
padding-top: -20px !important; }
.mt-xs--20 {
margin-top: -20px; }
.mt-xs--20-i {
margin-top: -20px !important; }
.pt--15 {
padding-top: -15px; }
.pt--15-i {
padding-top: -15px !important; }
.mt--15 {
margin-top: -15px; }
.mt--15-i {
margin-top: -15px !important; }
.pt-xs--15 {
padding-top: -15px; }
.pt-xs--15-i {
padding-top: -15px !important; }
.mt-xs--15 {
margin-top: -15px; }
.mt-xs--15-i {
margin-top: -15px !important; }
.pt--10 {
padding-top: -10px; }
.pt--10-i {
padding-top: -10px !important; }
.mt--10 {
margin-top: -10px; }
.mt--10-i {
margin-top: -10px !important; }
.pt-xs--10 {
padding-top: -10px; }
.pt-xs--10-i {
padding-top: -10px !important; }
.mt-xs--10 {
margin-top: -10px; }
.mt-xs--10-i {
margin-top: -10px !important; }
.pt--5 {
padding-top: -5px; }
.pt--5-i {
padding-top: -5px !important; }
.mt--5 {
margin-top: -5px; }
.mt--5-i {
margin-top: -5px !important; }
.pt-xs--5 {
padding-top: -5px; }
.pt-xs--5-i {
padding-top: -5px !important; }
.mt-xs--5 {
margin-top: -5px; }
.mt-xs--5-i {
margin-top: -5px !important; }
.pt-0 {
padding-top: 0px; }
.pt-0-i {
padding-top: 0px !important; }
.mt-0 {
margin-top: 0px; }
.mt-0-i {
margin-top: 0px !important; }
.pt-xs-0 {
padding-top: 0px; }
.pt-xs-0-i {
padding-top: 0px !important; }
.mt-xs-0 {
margin-top: 0px; }
.mt-xs-0-i {
margin-top: 0px !important; }
.pt-5 {
padding-top: 5px; }
.pt-5-i {
padding-top: 5px !important; }
.mt-5 {
margin-top: 5px; }
.mt-5-i {
margin-top: 5px !important; }
.pt-xs-5 {
padding-top: 5px; }
.pt-xs-5-i {
padding-top: 5px !important; }
.mt-xs-5 {
margin-top: 5px; }
.mt-xs-5-i {
margin-top: 5px !important; }
.pt-10 {
padding-top: 10px; }
.pt-10-i {
padding-top: 10px !important; }
.mt-10 {
margin-top: 10px; }
.mt-10-i {
margin-top: 10px !important; }
.pt-xs-10 {
padding-top: 10px; }
.pt-xs-10-i {
padding-top: 10px !important; }
.mt-xs-10 {
margin-top: 10px; }
.mt-xs-10-i {
margin-top: 10px !important; }
.pt-15 {
padding-top: 15px; }
.pt-15-i {
padding-top: 15px !important; }
.mt-15 {
margin-top: 15px; }
.mt-15-i {
margin-top: 15px !important; }
.pt-xs-15 {
padding-top: 15px; }
.pt-xs-15-i {
padding-top: 15px !important; }
.mt-xs-15 {
margin-top: 15px; }
.mt-xs-15-i {
margin-top: 15px !important; }
.pt-20 {
padding-top: 20px; }
.pt-20-i {
padding-top: 20px !important; }
.mt-20 {
margin-top: 20px; }
.mt-20-i {
margin-top: 20px !important; }
.pt-xs-20 {
padding-top: 20px; }
.pt-xs-20-i {
padding-top: 20px !important; }
.mt-xs-20 {
margin-top: 20px; }
.mt-xs-20-i {
margin-top: 20px !important; }
.pt-25 {
padding-top: 25px; }
.pt-25-i {
padding-top: 25px !important; }
.mt-25 {
margin-top: 25px; }
.mt-25-i {
margin-top: 25px !important; }
.pt-xs-25 {
padding-top: 25px; }
.pt-xs-25-i {
padding-top: 25px !important; }
.mt-xs-25 {
margin-top: 25px; }
.mt-xs-25-i {
margin-top: 25px !important; }
.pt-30 {
padding-top: 30px; }
.pt-30-i {
padding-top: 30px !important; }
.mt-30 {
margin-top: 30px; }
.mt-30-i {
margin-top: 30px !important; }
.pt-xs-30 {
padding-top: 30px; }
.pt-xs-30-i {
padding-top: 30px !important; }
.mt-xs-30 {
margin-top: 30px; }
.mt-xs-30-i {
margin-top: 30px !important; }
.pt-35 {
padding-top: 35px; }
.pt-35-i {
padding-top: 35px !important; }
.mt-35 {
margin-top: 35px; }
.mt-35-i {
margin-top: 35px !important; }
.pt-xs-35 {
padding-top: 35px; }
.pt-xs-35-i {
padding-top: 35px !important; }
.mt-xs-35 {
margin-top: 35px; }
.mt-xs-35-i {
margin-top: 35px !important; }
.pt-40 {
padding-top: 40px; }
.pt-40-i {
padding-top: 40px !important; }
.mt-40 {
margin-top: 40px; }
.mt-40-i {
margin-top: 40px !important; }
.pt-xs-40 {
padding-top: 40px; }
.pt-xs-40-i {
padding-top: 40px !important; }
.mt-xs-40 {
margin-top: 40px; }
.mt-xs-40-i {
margin-top: 40px !important; }
.pt-45 {
padding-top: 45px; }
.pt-45-i {
padding-top: 45px !important; }
.mt-45 {
margin-top: 45px; }
.mt-45-i {
margin-top: 45px !important; }
.pt-xs-45 {
padding-top: 45px; }
.pt-xs-45-i {
padding-top: 45px !important; }
.mt-xs-45 {
margin-top: 45px; }
.mt-xs-45-i {
margin-top: 45px !important; }
.pt-50 {
padding-top: 50px; }
.pt-50-i {
padding-top: 50px !important; }
.mt-50 {
margin-top: 50px; }
.mt-50-i {
margin-top: 50px !important; }
.pt-xs-50 {
padding-top: 50px; }
.pt-xs-50-i {
padding-top: 50px !important; }
.mt-xs-50 {
margin-top: 50px; }
.mt-xs-50-i {
margin-top: 50px !important; }
.pt-55 {
padding-top: 55px; }
.pt-55-i {
padding-top: 55px !important; }
.mt-55 {
margin-top: 55px; }
.mt-55-i {
margin-top: 55px !important; }
.pt-xs-55 {
padding-top: 55px; }
.pt-xs-55-i {
padding-top: 55px !important; }
.mt-xs-55 {
margin-top: 55px; }
.mt-xs-55-i {
margin-top: 55px !important; }
.pt-60 {
padding-top: 60px; }
.pt-60-i {
padding-top: 60px !important; }
.mt-60 {
margin-top: 60px; }
.mt-60-i {
margin-top: 60px !important; }
.pt-xs-60 {
padding-top: 60px; }
.pt-xs-60-i {
padding-top: 60px !important; }
.mt-xs-60 {
margin-top: 60px; }
.mt-xs-60-i {
margin-top: 60px !important; }
.pt-65 {
padding-top: 65px; }
.pt-65-i {
padding-top: 65px !important; }
.mt-65 {
margin-top: 65px; }
.mt-65-i {
margin-top: 65px !important; }
.pt-xs-65 {
padding-top: 65px; }
.pt-xs-65-i {
padding-top: 65px !important; }
.mt-xs-65 {
margin-top: 65px; }
.mt-xs-65-i {
margin-top: 65px !important; }
.pt-70 {
padding-top: 70px; }
.pt-70-i {
padding-top: 70px !important; }
.mt-70 {
margin-top: 70px; }
.mt-70-i {
margin-top: 70px !important; }
.pt-xs-70 {
padding-top: 70px; }
.pt-xs-70-i {
padding-top: 70px !important; }
.mt-xs-70 {
margin-top: 70px; }
.mt-xs-70-i {
margin-top: 70px !important; }
.pt-75 {
padding-top: 75px; }
.pt-75-i {
padding-top: 75px !important; }
.mt-75 {
margin-top: 75px; }
.mt-75-i {
margin-top: 75px !important; }
.pt-xs-75 {
padding-top: 75px; }
.pt-xs-75-i {
padding-top: 75px !important; }
.mt-xs-75 {
margin-top: 75px; }
.mt-xs-75-i {
margin-top: 75px !important; }
.pt-80 {
padding-top: 80px; }
.pt-80-i {
padding-top: 80px !important; }
.mt-80 {
margin-top: 80px; }
.mt-80-i {
margin-top: 80px !important; }
.pt-xs-80 {
padding-top: 80px; }
.pt-xs-80-i {
padding-top: 80px !important; }
.mt-xs-80 {
margin-top: 80px; }
.mt-xs-80-i {
margin-top: 80px !important; }
.pt-85 {
padding-top: 85px; }
.pt-85-i {
padding-top: 85px !important; }
.mt-85 {
margin-top: 85px; }
.mt-85-i {
margin-top: 85px !important; }
.pt-xs-85 {
padding-top: 85px; }
.pt-xs-85-i {
padding-top: 85px !important; }
.mt-xs-85 {
margin-top: 85px; }
.mt-xs-85-i {
margin-top: 85px !important; }
.pt-90 {
padding-top: 90px; }
.pt-90-i {
padding-top: 90px !important; }
.mt-90 {
margin-top: 90px; }
.mt-90-i {
margin-top: 90px !important; }
.pt-xs-90 {
padding-top: 90px; }
.pt-xs-90-i {
padding-top: 90px !important; }
.mt-xs-90 {
margin-top: 90px; }
.mt-xs-90-i {
margin-top: 90px !important; }
.pt-95 {
padding-top: 95px; }
.pt-95-i {
padding-top: 95px !important; }
.mt-95 {
margin-top: 95px; }
.mt-95-i {
margin-top: 95px !important; }
.pt-xs-95 {
padding-top: 95px; }
.pt-xs-95-i {
padding-top: 95px !important; }
.mt-xs-95 {
margin-top: 95px; }
.mt-xs-95-i {
margin-top: 95px !important; }
.pt-100 {
padding-top: 100px; }
.pt-100-i {
padding-top: 100px !important; }
.mt-100 {
margin-top: 100px; }
.mt-100-i {
margin-top: 100px !important; }
.pt-xs-100 {
padding-top: 100px; }
.pt-xs-100-i {
padding-top: 100px !important; }
.mt-xs-100 {
margin-top: 100px; }
.mt-xs-100-i {
margin-top: 100px !important; }
.pr--100 {
padding-right: -100px; }
.pr--100-i {
padding-right: -100px !important; }
.mr--100 {
margin-right: -100px; }
.mr--100-i {
margin-right: -100px !important; }
.pr-xs--100 {
padding-right: -100px; }
.pr-xs--100-i {
padding-right: -100px !important; }
.mr-xs--100 {
margin-right: -100px; }
.mr-xs--100-i {
margin-right: -100px !important; }
.pr--95 {
padding-right: -95px; }
.pr--95-i {
padding-right: -95px !important; }
.mr--95 {
margin-right: -95px; }
.mr--95-i {
margin-right: -95px !important; }
.pr-xs--95 {
padding-right: -95px; }
.pr-xs--95-i {
padding-right: -95px !important; }
.mr-xs--95 {
margin-right: -95px; }
.mr-xs--95-i {
margin-right: -95px !important; }
.pr--90 {
padding-right: -90px; }
.pr--90-i {
padding-right: -90px !important; }
.mr--90 {
margin-right: -90px; }
.mr--90-i {
margin-right: -90px !important; }
.pr-xs--90 {
padding-right: -90px; }
.pr-xs--90-i {
padding-right: -90px !important; }
.mr-xs--90 {
margin-right: -90px; }
.mr-xs--90-i {
margin-right: -90px !important; }
.pr--85 {
padding-right: -85px; }
.pr--85-i {
padding-right: -85px !important; }
.mr--85 {
margin-right: -85px; }
.mr--85-i {
margin-right: -85px !important; }
.pr-xs--85 {
padding-right: -85px; }
.pr-xs--85-i {
padding-right: -85px !important; }
.mr-xs--85 {
margin-right: -85px; }
.mr-xs--85-i {
margin-right: -85px !important; }
.pr--80 {
padding-right: -80px; }
.pr--80-i {
padding-right: -80px !important; }
.mr--80 {
margin-right: -80px; }
.mr--80-i {
margin-right: -80px !important; }
.pr-xs--80 {
padding-right: -80px; }
.pr-xs--80-i {
padding-right: -80px !important; }
.mr-xs--80 {
margin-right: -80px; }
.mr-xs--80-i {
margin-right: -80px !important; }
.pr--75 {
padding-right: -75px; }
.pr--75-i {
padding-right: -75px !important; }
.mr--75 {
margin-right: -75px; }
.mr--75-i {
margin-right: -75px !important; }
.pr-xs--75 {
padding-right: -75px; }
.pr-xs--75-i {
padding-right: -75px !important; }
.mr-xs--75 {
margin-right: -75px; }
.mr-xs--75-i {
margin-right: -75px !important; }
.pr--70 {
padding-right: -70px; }
.pr--70-i {
padding-right: -70px !important; }
.mr--70 {
margin-right: -70px; }
.mr--70-i {
margin-right: -70px !important; }
.pr-xs--70 {
padding-right: -70px; }
.pr-xs--70-i {
padding-right: -70px !important; }
.mr-xs--70 {
margin-right: -70px; }
.mr-xs--70-i {
margin-right: -70px !important; }
.pr--65 {
padding-right: -65px; }
.pr--65-i {
padding-right: -65px !important; }
.mr--65 {
margin-right: -65px; }
.mr--65-i {
margin-right: -65px !important; }
.pr-xs--65 {
padding-right: -65px; }
.pr-xs--65-i {
padding-right: -65px !important; }
.mr-xs--65 {
margin-right: -65px; }
.mr-xs--65-i {
margin-right: -65px !important; }
.pr--60 {
padding-right: -60px; }
.pr--60-i {
padding-right: -60px !important; }
.mr--60 {
margin-right: -60px; }
.mr--60-i {
margin-right: -60px !important; }
.pr-xs--60 {
padding-right: -60px; }
.pr-xs--60-i {
padding-right: -60px !important; }
.mr-xs--60 {
margin-right: -60px; }
.mr-xs--60-i {
margin-right: -60px !important; }
.pr--55 {
padding-right: -55px; }
.pr--55-i {
padding-right: -55px !important; }
.mr--55 {
margin-right: -55px; }
.mr--55-i {
margin-right: -55px !important; }
.pr-xs--55 {
padding-right: -55px; }
.pr-xs--55-i {
padding-right: -55px !important; }
.mr-xs--55 {
margin-right: -55px; }
.mr-xs--55-i {
margin-right: -55px !important; }
.pr--50 {
padding-right: -50px; }
.pr--50-i {
padding-right: -50px !important; }
.mr--50 {
margin-right: -50px; }
.mr--50-i {
margin-right: -50px !important; }
.pr-xs--50 {
padding-right: -50px; }
.pr-xs--50-i {
padding-right: -50px !important; }
.mr-xs--50 {
margin-right: -50px; }
.mr-xs--50-i {
margin-right: -50px !important; }
.pr--45 {
padding-right: -45px; }
.pr--45-i {
padding-right: -45px !important; }
.mr--45 {
margin-right: -45px; }
.mr--45-i {
margin-right: -45px !important; }
.pr-xs--45 {
padding-right: -45px; }
.pr-xs--45-i {
padding-right: -45px !important; }
.mr-xs--45 {
margin-right: -45px; }
.mr-xs--45-i {
margin-right: -45px !important; }
.pr--40 {
padding-right: -40px; }
.pr--40-i {
padding-right: -40px !important; }
.mr--40 {
margin-right: -40px; }
.mr--40-i {
margin-right: -40px !important; }
.pr-xs--40 {
padding-right: -40px; }
.pr-xs--40-i {
padding-right: -40px !important; }
.mr-xs--40 {
margin-right: -40px; }
.mr-xs--40-i {
margin-right: -40px !important; }
.pr--35 {
padding-right: -35px; }
.pr--35-i {
padding-right: -35px !important; }
.mr--35 {
margin-right: -35px; }
.mr--35-i {
margin-right: -35px !important; }
.pr-xs--35 {
padding-right: -35px; }
.pr-xs--35-i {
padding-right: -35px !important; }
.mr-xs--35 {
margin-right: -35px; }
.mr-xs--35-i {
margin-right: -35px !important; }
.pr--30 {
padding-right: -30px; }
.pr--30-i {
padding-right: -30px !important; }
.mr--30 {
margin-right: -30px; }
.mr--30-i {
margin-right: -30px !important; }
.pr-xs--30 {
padding-right: -30px; }
.pr-xs--30-i {
padding-right: -30px !important; }
.mr-xs--30 {
margin-right: -30px; }
.mr-xs--30-i {
margin-right: -30px !important; }
.pr--25 {
padding-right: -25px; }
.pr--25-i {
padding-right: -25px !important; }
.mr--25 {
margin-right: -25px; }
.mr--25-i {
margin-right: -25px !important; }
.pr-xs--25 {
padding-right: -25px; }
.pr-xs--25-i {
padding-right: -25px !important; }
.mr-xs--25 {
margin-right: -25px; }
.mr-xs--25-i {
margin-right: -25px !important; }
.pr--20 {
padding-right: -20px; }
.pr--20-i {
padding-right: -20px !important; }
.mr--20 {
margin-right: -20px; }
.mr--20-i {
margin-right: -20px !important; }
.pr-xs--20 {
padding-right: -20px; }
.pr-xs--20-i {
padding-right: -20px !important; }
.mr-xs--20 {
margin-right: -20px; }
.mr-xs--20-i {
margin-right: -20px !important; }
.pr--15 {
padding-right: -15px; }
.pr--15-i {
padding-right: -15px !important; }
.mr--15 {
margin-right: -15px; }
.mr--15-i {
margin-right: -15px !important; }
.pr-xs--15 {
padding-right: -15px; }
.pr-xs--15-i {
padding-right: -15px !important; }
.mr-xs--15 {
margin-right: -15px; }
.mr-xs--15-i {
margin-right: -15px !important; }
.pr--10 {
padding-right: -10px; }
.pr--10-i {
padding-right: -10px !important; }
.mr--10 {
margin-right: -10px; }
.mr--10-i {
margin-right: -10px !important; }
.pr-xs--10 {
padding-right: -10px; }
.pr-xs--10-i {
padding-right: -10px !important; }
.mr-xs--10 {
margin-right: -10px; }
.mr-xs--10-i {
margin-right: -10px !important; }
.pr--5 {
padding-right: -5px; }
.pr--5-i {
padding-right: -5px !important; }
.mr--5 {
margin-right: -5px; }
.mr--5-i {
margin-right: -5px !important; }
.pr-xs--5 {
padding-right: -5px; }
.pr-xs--5-i {
padding-right: -5px !important; }
.mr-xs--5 {
margin-right: -5px; }
.mr-xs--5-i {
margin-right: -5px !important; }
.pr-0 {
padding-right: 0px; }
.pr-0-i {
padding-right: 0px !important; }
.mr-0 {
margin-right: 0px; }
.mr-0-i {
margin-right: 0px !important; }
.pr-xs-0 {
padding-right: 0px; }
.pr-xs-0-i {
padding-right: 0px !important; }
.mr-xs-0 {
margin-right: 0px; }
.mr-xs-0-i {
margin-right: 0px !important; }
.pr-5 {
padding-right: 5px; }
.pr-5-i {
padding-right: 5px !important; }
.mr-5 {
margin-right: 5px; }
.mr-5-i {
margin-right: 5px !important; }
.pr-xs-5 {
padding-right: 5px; }
.pr-xs-5-i {
padding-right: 5px !important; }
.mr-xs-5 {
margin-right: 5px; }
.mr-xs-5-i {
margin-right: 5px !important; }
.pr-10 {
padding-right: 10px; }
.pr-10-i {
padding-right: 10px !important; }
.mr-10 {
margin-right: 10px; }
.mr-10-i {
margin-right: 10px !important; }
.pr-xs-10 {
padding-right: 10px; }
.pr-xs-10-i {
padding-right: 10px !important; }
.mr-xs-10 {
margin-right: 10px; }
.mr-xs-10-i {
margin-right: 10px !important; }
.pr-15 {
padding-right: 15px; }
.pr-15-i {
padding-right: 15px !important; }
.mr-15 {
margin-right: 15px; }
.mr-15-i {
margin-right: 15px !important; }
.pr-xs-15 {
padding-right: 15px; }
.pr-xs-15-i {
padding-right: 15px !important; }
.mr-xs-15 {
margin-right: 15px; }
.mr-xs-15-i {
margin-right: 15px !important; }
.pr-20 {
padding-right: 20px; }
.pr-20-i {
padding-right: 20px !important; }
.mr-20 {
margin-right: 20px; }
.mr-20-i {
margin-right: 20px !important; }
.pr-xs-20 {
padding-right: 20px; }
.pr-xs-20-i {
padding-right: 20px !important; }
.mr-xs-20 {
margin-right: 20px; }
.mr-xs-20-i {
margin-right: 20px !important; }
.pr-25 {
padding-right: 25px; }
.pr-25-i {
padding-right: 25px !important; }
.mr-25 {
margin-right: 25px; }
.mr-25-i {
margin-right: 25px !important; }
.pr-xs-25 {
padding-right: 25px; }
.pr-xs-25-i {
padding-right: 25px !important; }
.mr-xs-25 {
margin-right: 25px; }
.mr-xs-25-i {
margin-right: 25px !important; }
.pr-30 {
padding-right: 30px; }
.pr-30-i {
padding-right: 30px !important; }
.mr-30 {
margin-right: 30px; }
.mr-30-i {
margin-right: 30px !important; }
.pr-xs-30 {
padding-right: 30px; }
.pr-xs-30-i {
padding-right: 30px !important; }
.mr-xs-30 {
margin-right: 30px; }
.mr-xs-30-i {
margin-right: 30px !important; }
.pr-35 {
padding-right: 35px; }
.pr-35-i {
padding-right: 35px !important; }
.mr-35 {
margin-right: 35px; }
.mr-35-i {
margin-right: 35px !important; }
.pr-xs-35 {
padding-right: 35px; }
.pr-xs-35-i {
padding-right: 35px !important; }
.mr-xs-35 {
margin-right: 35px; }
.mr-xs-35-i {
margin-right: 35px !important; }
.pr-40 {
padding-right: 40px; }
.pr-40-i {
padding-right: 40px !important; }
.mr-40 {
margin-right: 40px; }
.mr-40-i {
margin-right: 40px !important; }
.pr-xs-40 {
padding-right: 40px; }
.pr-xs-40-i {
padding-right: 40px !important; }
.mr-xs-40 {
margin-right: 40px; }
.mr-xs-40-i {
margin-right: 40px !important; }
.pr-45 {
padding-right: 45px; }
.pr-45-i {
padding-right: 45px !important; }
.mr-45 {
margin-right: 45px; }
.mr-45-i {
margin-right: 45px !important; }
.pr-xs-45 {
padding-right: 45px; }
.pr-xs-45-i {
padding-right: 45px !important; }
.mr-xs-45 {
margin-right: 45px; }
.mr-xs-45-i {
margin-right: 45px !important; }
.pr-50 {
padding-right: 50px; }
.pr-50-i {
padding-right: 50px !important; }
.mr-50 {
margin-right: 50px; }
.mr-50-i {
margin-right: 50px !important; }
.pr-xs-50 {
padding-right: 50px; }
.pr-xs-50-i {
padding-right: 50px !important; }
.mr-xs-50 {
margin-right: 50px; }
.mr-xs-50-i {
margin-right: 50px !important; }
.pr-55 {
padding-right: 55px; }
.pr-55-i {
padding-right: 55px !important; }
.mr-55 {
margin-right: 55px; }
.mr-55-i {
margin-right: 55px !important; }
.pr-xs-55 {
padding-right: 55px; }
.pr-xs-55-i {
padding-right: 55px !important; }
.mr-xs-55 {
margin-right: 55px; }
.mr-xs-55-i {
margin-right: 55px !important; }
.pr-60 {
padding-right: 60px; }
.pr-60-i {
padding-right: 60px !important; }
.mr-60 {
margin-right: 60px; }
.mr-60-i {
margin-right: 60px !important; }
.pr-xs-60 {
padding-right: 60px; }
.pr-xs-60-i {
padding-right: 60px !important; }
.mr-xs-60 {
margin-right: 60px; }
.mr-xs-60-i {
margin-right: 60px !important; }
.pr-65 {
padding-right: 65px; }
.pr-65-i {
padding-right: 65px !important; }
.mr-65 {
margin-right: 65px; }
.mr-65-i {
margin-right: 65px !important; }
.pr-xs-65 {
padding-right: 65px; }
.pr-xs-65-i {
padding-right: 65px !important; }
.mr-xs-65 {
margin-right: 65px; }
.mr-xs-65-i {
margin-right: 65px !important; }
.pr-70 {
padding-right: 70px; }
.pr-70-i {
padding-right: 70px !important; }
.mr-70 {
margin-right: 70px; }
.mr-70-i {
margin-right: 70px !important; }
.pr-xs-70 {
padding-right: 70px; }
.pr-xs-70-i {
padding-right: 70px !important; }
.mr-xs-70 {
margin-right: 70px; }
.mr-xs-70-i {
margin-right: 70px !important; }
.pr-75 {
padding-right: 75px; }
.pr-75-i {
padding-right: 75px !important; }
.mr-75 {
margin-right: 75px; }
.mr-75-i {
margin-right: 75px !important; }
.pr-xs-75 {
padding-right: 75px; }
.pr-xs-75-i {
padding-right: 75px !important; }
.mr-xs-75 {
margin-right: 75px; }
.mr-xs-75-i {
margin-right: 75px !important; }
.pr-80 {
padding-right: 80px; }
.pr-80-i {
padding-right: 80px !important; }
.mr-80 {
margin-right: 80px; }
.mr-80-i {
margin-right: 80px !important; }
.pr-xs-80 {
padding-right: 80px; }
.pr-xs-80-i {
padding-right: 80px !important; }
.mr-xs-80 {
margin-right: 80px; }
.mr-xs-80-i {
margin-right: 80px !important; }
.pr-85 {
padding-right: 85px; }
.pr-85-i {
padding-right: 85px !important; }
.mr-85 {
margin-right: 85px; }
.mr-85-i {
margin-right: 85px !important; }
.pr-xs-85 {
padding-right: 85px; }
.pr-xs-85-i {
padding-right: 85px !important; }
.mr-xs-85 {
margin-right: 85px; }
.mr-xs-85-i {
margin-right: 85px !important; }
.pr-90 {
padding-right: 90px; }
.pr-90-i {
padding-right: 90px !important; }
.mr-90 {
margin-right: 90px; }
.mr-90-i {
margin-right: 90px !important; }
.pr-xs-90 {
padding-right: 90px; }
.pr-xs-90-i {
padding-right: 90px !important; }
.mr-xs-90 {
margin-right: 90px; }
.mr-xs-90-i {
margin-right: 90px !important; }
.pr-95 {
padding-right: 95px; }
.pr-95-i {
padding-right: 95px !important; }
.mr-95 {
margin-right: 95px; }
.mr-95-i {
margin-right: 95px !important; }
.pr-xs-95 {
padding-right: 95px; }
.pr-xs-95-i {
padding-right: 95px !important; }
.mr-xs-95 {
margin-right: 95px; }
.mr-xs-95-i {
margin-right: 95px !important; }
.pr-100 {
padding-right: 100px; }
.pr-100-i {
padding-right: 100px !important; }
.mr-100 {
margin-right: 100px; }
.mr-100-i {
margin-right: 100px !important; }
.pr-xs-100 {
padding-right: 100px; }
.pr-xs-100-i {
padding-right: 100px !important; }
.mr-xs-100 {
margin-right: 100px; }
.mr-xs-100-i {
margin-right: 100px !important; }
.pb--100 {
padding-bottom: -100px; }
.pb--100-i {
padding-bottom: -100px !important; }
.mb--100 {
margin-bottom: -100px; }
.mb--100-i {
margin-bottom: -100px !important; }
.pb-xs--100 {
padding-bottom: -100px; }
.pb-xs--100-i {
padding-bottom: -100px !important; }
.mb-xs--100 {
margin-bottom: -100px; }
.mb-xs--100-i {
margin-bottom: -100px !important; }
.pb--95 {
padding-bottom: -95px; }
.pb--95-i {
padding-bottom: -95px !important; }
.mb--95 {
margin-bottom: -95px; }
.mb--95-i {
margin-bottom: -95px !important; }
.pb-xs--95 {
padding-bottom: -95px; }
.pb-xs--95-i {
padding-bottom: -95px !important; }
.mb-xs--95 {
margin-bottom: -95px; }
.mb-xs--95-i {
margin-bottom: -95px !important; }
.pb--90 {
padding-bottom: -90px; }
.pb--90-i {
padding-bottom: -90px !important; }
.mb--90 {
margin-bottom: -90px; }
.mb--90-i {
margin-bottom: -90px !important; }
.pb-xs--90 {
padding-bottom: -90px; }
.pb-xs--90-i {
padding-bottom: -90px !important; }
.mb-xs--90 {
margin-bottom: -90px; }
.mb-xs--90-i {
margin-bottom: -90px !important; }
.pb--85 {
padding-bottom: -85px; }
.pb--85-i {
padding-bottom: -85px !important; }
.mb--85 {
margin-bottom: -85px; }
.mb--85-i {
margin-bottom: -85px !important; }
.pb-xs--85 {
padding-bottom: -85px; }
.pb-xs--85-i {
padding-bottom: -85px !important; }
.mb-xs--85 {
margin-bottom: -85px; }
.mb-xs--85-i {
margin-bottom: -85px !important; }
.pb--80 {
padding-bottom: -80px; }
.pb--80-i {
padding-bottom: -80px !important; }
.mb--80 {
margin-bottom: -80px; }
.mb--80-i {
margin-bottom: -80px !important; }
.pb-xs--80 {
padding-bottom: -80px; }
.pb-xs--80-i {
padding-bottom: -80px !important; }
.mb-xs--80 {
margin-bottom: -80px; }
.mb-xs--80-i {
margin-bottom: -80px !important; }
.pb--75 {
padding-bottom: -75px; }
.pb--75-i {
padding-bottom: -75px !important; }
.mb--75 {
margin-bottom: -75px; }
.mb--75-i {
margin-bottom: -75px !important; }
.pb-xs--75 {
padding-bottom: -75px; }
.pb-xs--75-i {
padding-bottom: -75px !important; }
.mb-xs--75 {
margin-bottom: -75px; }
.mb-xs--75-i {
margin-bottom: -75px !important; }
.pb--70 {
padding-bottom: -70px; }
.pb--70-i {
padding-bottom: -70px !important; }
.mb--70 {
margin-bottom: -70px; }
.mb--70-i {
margin-bottom: -70px !important; }
.pb-xs--70 {
padding-bottom: -70px; }
.pb-xs--70-i {
padding-bottom: -70px !important; }
.mb-xs--70 {
margin-bottom: -70px; }
.mb-xs--70-i {
margin-bottom: -70px !important; }
.pb--65 {
padding-bottom: -65px; }
.pb--65-i {
padding-bottom: -65px !important; }
.mb--65 {
margin-bottom: -65px; }
.mb--65-i {
margin-bottom: -65px !important; }
.pb-xs--65 {
padding-bottom: -65px; }
.pb-xs--65-i {
padding-bottom: -65px !important; }
.mb-xs--65 {
margin-bottom: -65px; }
.mb-xs--65-i {
margin-bottom: -65px !important; }
.pb--60 {
padding-bottom: -60px; }
.pb--60-i {
padding-bottom: -60px !important; }
.mb--60 {
margin-bottom: -60px; }
.mb--60-i {
margin-bottom: -60px !important; }
.pb-xs--60 {
padding-bottom: -60px; }
.pb-xs--60-i {
padding-bottom: -60px !important; }
.mb-xs--60 {
margin-bottom: -60px; }
.mb-xs--60-i {
margin-bottom: -60px !important; }
.pb--55 {
padding-bottom: -55px; }
.pb--55-i {
padding-bottom: -55px !important; }
.mb--55 {
margin-bottom: -55px; }
.mb--55-i {
margin-bottom: -55px !important; }
.pb-xs--55 {
padding-bottom: -55px; }
.pb-xs--55-i {
padding-bottom: -55px !important; }
.mb-xs--55 {
margin-bottom: -55px; }
.mb-xs--55-i {
margin-bottom: -55px !important; }
.pb--50 {
padding-bottom: -50px; }
.pb--50-i {
padding-bottom: -50px !important; }
.mb--50 {
margin-bottom: -50px; }
.mb--50-i {
margin-bottom: -50px !important; }
.pb-xs--50 {
padding-bottom: -50px; }
.pb-xs--50-i {
padding-bottom: -50px !important; }
.mb-xs--50 {
margin-bottom: -50px; }
.mb-xs--50-i {
margin-bottom: -50px !important; }
.pb--45 {
padding-bottom: -45px; }
.pb--45-i {
padding-bottom: -45px !important; }
.mb--45 {
margin-bottom: -45px; }
.mb--45-i {
margin-bottom: -45px !important; }
.pb-xs--45 {
padding-bottom: -45px; }
.pb-xs--45-i {
padding-bottom: -45px !important; }
.mb-xs--45 {
margin-bottom: -45px; }
.mb-xs--45-i {
margin-bottom: -45px !important; }
.pb--40 {
padding-bottom: -40px; }
.pb--40-i {
padding-bottom: -40px !important; }
.mb--40 {
margin-bottom: -40px; }
.mb--40-i {
margin-bottom: -40px !important; }
.pb-xs--40 {
padding-bottom: -40px; }
.pb-xs--40-i {
padding-bottom: -40px !important; }
.mb-xs--40 {
margin-bottom: -40px; }
.mb-xs--40-i {
margin-bottom: -40px !important; }
.pb--35 {
padding-bottom: -35px; }
.pb--35-i {
padding-bottom: -35px !important; }
.mb--35 {
margin-bottom: -35px; }
.mb--35-i {
margin-bottom: -35px !important; }
.pb-xs--35 {
padding-bottom: -35px; }
.pb-xs--35-i {
padding-bottom: -35px !important; }
.mb-xs--35 {
margin-bottom: -35px; }
.mb-xs--35-i {
margin-bottom: -35px !important; }
.pb--30 {
padding-bottom: -30px; }
.pb--30-i {
padding-bottom: -30px !important; }
.mb--30 {
margin-bottom: -30px; }
.mb--30-i {
margin-bottom: -30px !important; }
.pb-xs--30 {
padding-bottom: -30px; }
.pb-xs--30-i {
padding-bottom: -30px !important; }
.mb-xs--30 {
margin-bottom: -30px; }
.mb-xs--30-i {
margin-bottom: -30px !important; }
.pb--25 {
padding-bottom: -25px; }
.pb--25-i {
padding-bottom: -25px !important; }
.mb--25 {
margin-bottom: -25px; }
.mb--25-i {
margin-bottom: -25px !important; }
.pb-xs--25 {
padding-bottom: -25px; }
.pb-xs--25-i {
padding-bottom: -25px !important; }
.mb-xs--25 {
margin-bottom: -25px; }
.mb-xs--25-i {
margin-bottom: -25px !important; }
.pb--20 {
padding-bottom: -20px; }
.pb--20-i {
padding-bottom: -20px !important; }
.mb--20 {
margin-bottom: -20px; }
.mb--20-i {
margin-bottom: -20px !important; }
.pb-xs--20 {
padding-bottom: -20px; }
.pb-xs--20-i {
padding-bottom: -20px !important; }
.mb-xs--20 {
margin-bottom: -20px; }
.mb-xs--20-i {
margin-bottom: -20px !important; }
.pb--15 {
padding-bottom: -15px; }
.pb--15-i {
padding-bottom: -15px !important; }
.mb--15 {
margin-bottom: -15px; }
.mb--15-i {
margin-bottom: -15px !important; }
.pb-xs--15 {
padding-bottom: -15px; }
.pb-xs--15-i {
padding-bottom: -15px !important; }
.mb-xs--15 {
margin-bottom: -15px; }
.mb-xs--15-i {
margin-bottom: -15px !important; }
.pb--10 {
padding-bottom: -10px; }
.pb--10-i {
padding-bottom: -10px !important; }
.mb--10 {
margin-bottom: -10px; }
.mb--10-i {
margin-bottom: -10px !important; }
.pb-xs--10 {
padding-bottom: -10px; }
.pb-xs--10-i {
padding-bottom: -10px !important; }
.mb-xs--10 {
margin-bottom: -10px; }
.mb-xs--10-i {
margin-bottom: -10px !important; }
.pb--5 {
padding-bottom: -5px; }
.pb--5-i {
padding-bottom: -5px !important; }
.mb--5 {
margin-bottom: -5px; }
.mb--5-i {
margin-bottom: -5px !important; }
.pb-xs--5 {
padding-bottom: -5px; }
.pb-xs--5-i {
padding-bottom: -5px !important; }
.mb-xs--5 {
margin-bottom: -5px; }
.mb-xs--5-i {
margin-bottom: -5px !important; }
.pb-0 {
padding-bottom: 0px; }
.pb-0-i {
padding-bottom: 0px !important; }
.mb-0 {
margin-bottom: 0px; }
.mb-0-i {
margin-bottom: 0px !important; }
.pb-xs-0 {
padding-bottom: 0px; }
.pb-xs-0-i {
padding-bottom: 0px !important; }
.mb-xs-0 {
margin-bottom: 0px; }
.mb-xs-0-i {
margin-bottom: 0px !important; }
.pb-5 {
padding-bottom: 5px; }
.pb-5-i {
padding-bottom: 5px !important; }
.mb-5 {
margin-bottom: 5px; }
.mb-5-i {
margin-bottom: 5px !important; }
.pb-xs-5 {
padding-bottom: 5px; }
.pb-xs-5-i {
padding-bottom: 5px !important; }
.mb-xs-5 {
margin-bottom: 5px; }
.mb-xs-5-i {
margin-bottom: 5px !important; }
.pb-10 {
padding-bottom: 10px; }
.pb-10-i {
padding-bottom: 10px !important; }
.mb-10 {
margin-bottom: 10px; }
.mb-10-i {
margin-bottom: 10px !important; }
.pb-xs-10 {
padding-bottom: 10px; }
.pb-xs-10-i {
padding-bottom: 10px !important; }
.mb-xs-10 {
margin-bottom: 10px; }
.mb-xs-10-i {
margin-bottom: 10px !important; }
.pb-15 {
padding-bottom: 15px; }
.pb-15-i {
padding-bottom: 15px !important; }
.mb-15 {
margin-bottom: 15px; }
.mb-15-i {
margin-bottom: 15px !important; }
.pb-xs-15 {
padding-bottom: 15px; }
.pb-xs-15-i {
padding-bottom: 15px !important; }
.mb-xs-15 {
margin-bottom: 15px; }
.mb-xs-15-i {
margin-bottom: 15px !important; }
.pb-20 {
padding-bottom: 20px; }
.pb-20-i {
padding-bottom: 20px !important; }
.mb-20 {
margin-bottom: 20px; }
.mb-20-i {
margin-bottom: 20px !important; }
.pb-xs-20 {
padding-bottom: 20px; }
.pb-xs-20-i {
padding-bottom: 20px !important; }
.mb-xs-20 {
margin-bottom: 20px; }
.mb-xs-20-i {
margin-bottom: 20px !important; }
.pb-25 {
padding-bottom: 25px; }
.pb-25-i {
padding-bottom: 25px !important; }
.mb-25 {
margin-bottom: 25px; }
.mb-25-i {
margin-bottom: 25px !important; }
.pb-xs-25 {
padding-bottom: 25px; }
.pb-xs-25-i {
padding-bottom: 25px !important; }
.mb-xs-25 {
margin-bottom: 25px; }
.mb-xs-25-i {
margin-bottom: 25px !important; }
.pb-30 {
padding-bottom: 30px; }
.pb-30-i {
padding-bottom: 30px !important; }
.mb-30 {
margin-bottom: 30px; }
.mb-30-i {
margin-bottom: 30px !important; }
.pb-xs-30 {
padding-bottom: 30px; }
.pb-xs-30-i {
padding-bottom: 30px !important; }
.mb-xs-30 {
margin-bottom: 30px; }
.mb-xs-30-i {
margin-bottom: 30px !important; }
.pb-35 {
padding-bottom: 35px; }
.pb-35-i {
padding-bottom: 35px !important; }
.mb-35 {
margin-bottom: 35px; }
.mb-35-i {
margin-bottom: 35px !important; }
.pb-xs-35 {
padding-bottom: 35px; }
.pb-xs-35-i {
padding-bottom: 35px !important; }
.mb-xs-35 {
margin-bottom: 35px; }
.mb-xs-35-i {
margin-bottom: 35px !important; }
.pb-40 {
padding-bottom: 40px; }
.pb-40-i {
padding-bottom: 40px !important; }
.mb-40 {
margin-bottom: 40px; }
.mb-40-i {
margin-bottom: 40px !important; }
.pb-xs-40 {
padding-bottom: 40px; }
.pb-xs-40-i {
padding-bottom: 40px !important; }
.mb-xs-40 {
margin-bottom: 40px; }
.mb-xs-40-i {
margin-bottom: 40px !important; }
.pb-45 {
padding-bottom: 45px; }
.pb-45-i {
padding-bottom: 45px !important; }
.mb-45 {
margin-bottom: 45px; }
.mb-45-i {
margin-bottom: 45px !important; }
.pb-xs-45 {
padding-bottom: 45px; }
.pb-xs-45-i {
padding-bottom: 45px !important; }
.mb-xs-45 {
margin-bottom: 45px; }
.mb-xs-45-i {
margin-bottom: 45px !important; }
.pb-50 {
padding-bottom: 50px; }
.pb-50-i {
padding-bottom: 50px !important; }
.mb-50 {
margin-bottom: 50px; }
.mb-50-i {
margin-bottom: 50px !important; }
.pb-xs-50 {
padding-bottom: 50px; }
.pb-xs-50-i {
padding-bottom: 50px !important; }
.mb-xs-50 {
margin-bottom: 50px; }
.mb-xs-50-i {
margin-bottom: 50px !important; }
.pb-55 {
padding-bottom: 55px; }
.pb-55-i {
padding-bottom: 55px !important; }
.mb-55 {
margin-bottom: 55px; }
.mb-55-i {
margin-bottom: 55px !important; }
.pb-xs-55 {
padding-bottom: 55px; }
.pb-xs-55-i {
padding-bottom: 55px !important; }
.mb-xs-55 {
margin-bottom: 55px; }
.mb-xs-55-i {
margin-bottom: 55px !important; }
.pb-60 {
padding-bottom: 60px; }
.pb-60-i {
padding-bottom: 60px !important; }
.mb-60 {
margin-bottom: 60px; }
.mb-60-i {
margin-bottom: 60px !important; }
.pb-xs-60 {
padding-bottom: 60px; }
.pb-xs-60-i {
padding-bottom: 60px !important; }
.mb-xs-60 {
margin-bottom: 60px; }
.mb-xs-60-i {
margin-bottom: 60px !important; }
.pb-65 {
padding-bottom: 65px; }
.pb-65-i {
padding-bottom: 65px !important; }
.mb-65 {
margin-bottom: 65px; }
.mb-65-i {
margin-bottom: 65px !important; }
.pb-xs-65 {
padding-bottom: 65px; }
.pb-xs-65-i {
padding-bottom: 65px !important; }
.mb-xs-65 {
margin-bottom: 65px; }
.mb-xs-65-i {
margin-bottom: 65px !important; }
.pb-70 {
padding-bottom: 70px; }
.pb-70-i {
padding-bottom: 70px !important; }
.mb-70 {
margin-bottom: 70px; }
.mb-70-i {
margin-bottom: 70px !important; }
.pb-xs-70 {
padding-bottom: 70px; }
.pb-xs-70-i {
padding-bottom: 70px !important; }
.mb-xs-70 {
margin-bottom: 70px; }
.mb-xs-70-i {
margin-bottom: 70px !important; }
.pb-75 {
padding-bottom: 75px; }
.pb-75-i {
padding-bottom: 75px !important; }
.mb-75 {
margin-bottom: 75px; }
.mb-75-i {
margin-bottom: 75px !important; }
.pb-xs-75 {
padding-bottom: 75px; }
.pb-xs-75-i {
padding-bottom: 75px !important; }
.mb-xs-75 {
margin-bottom: 75px; }
.mb-xs-75-i {
margin-bottom: 75px !important; }
.pb-80 {
padding-bottom: 80px; }
.pb-80-i {
padding-bottom: 80px !important; }
.mb-80 {
margin-bottom: 80px; }
.mb-80-i {
margin-bottom: 80px !important; }
.pb-xs-80 {
padding-bottom: 80px; }
.pb-xs-80-i {
padding-bottom: 80px !important; }
.mb-xs-80 {
margin-bottom: 80px; }
.mb-xs-80-i {
margin-bottom: 80px !important; }
.pb-85 {
padding-bottom: 85px; }
.pb-85-i {
padding-bottom: 85px !important; }
.mb-85 {
margin-bottom: 85px; }
.mb-85-i {
margin-bottom: 85px !important; }
.pb-xs-85 {
padding-bottom: 85px; }
.pb-xs-85-i {
padding-bottom: 85px !important; }
.mb-xs-85 {
margin-bottom: 85px; }
.mb-xs-85-i {
margin-bottom: 85px !important; }
.pb-90 {
padding-bottom: 90px; }
.pb-90-i {
padding-bottom: 90px !important; }
.mb-90 {
margin-bottom: 90px; }
.mb-90-i {
margin-bottom: 90px !important; }
.pb-xs-90 {
padding-bottom: 90px; }
.pb-xs-90-i {
padding-bottom: 90px !important; }
.mb-xs-90 {
margin-bottom: 90px; }
.mb-xs-90-i {
margin-bottom: 90px !important; }
.pb-95 {
padding-bottom: 95px; }
.pb-95-i {
padding-bottom: 95px !important; }
.mb-95 {
margin-bottom: 95px; }
.mb-95-i {
margin-bottom: 95px !important; }
.pb-xs-95 {
padding-bottom: 95px; }
.pb-xs-95-i {
padding-bottom: 95px !important; }
.mb-xs-95 {
margin-bottom: 95px; }
.mb-xs-95-i {
margin-bottom: 95px !important; }
.pb-100 {
padding-bottom: 100px; }
.pb-100-i {
padding-bottom: 100px !important; }
.mb-100 {
margin-bottom: 100px; }
.mb-100-i {
margin-bottom: 100px !important; }
.pb-xs-100 {
padding-bottom: 100px; }
.pb-xs-100-i {
padding-bottom: 100px !important; }
.mb-xs-100 {
margin-bottom: 100px; }
.mb-xs-100-i {
margin-bottom: 100px !important; }
.pl--100 {
padding-left: -100px; }
.pl--100-i {
padding-left: -100px !important; }
.ml--100 {
margin-left: -100px; }
.ml--100-i {
margin-left: -100px !important; }
.pl-xs--100 {
padding-left: -100px; }
.pl-xs--100-i {
padding-left: -100px !important; }
.ml-xs--100 {
margin-left: -100px; }
.ml-xs--100-i {
margin-left: -100px !important; }
.pl--95 {
padding-left: -95px; }
.pl--95-i {
padding-left: -95px !important; }
.ml--95 {
margin-left: -95px; }
.ml--95-i {
margin-left: -95px !important; }
.pl-xs--95 {
padding-left: -95px; }
.pl-xs--95-i {
padding-left: -95px !important; }
.ml-xs--95 {
margin-left: -95px; }
.ml-xs--95-i {
margin-left: -95px !important; }
.pl--90 {
padding-left: -90px; }
.pl--90-i {
padding-left: -90px !important; }
.ml--90 {
margin-left: -90px; }
.ml--90-i {
margin-left: -90px !important; }
.pl-xs--90 {
padding-left: -90px; }
.pl-xs--90-i {
padding-left: -90px !important; }
.ml-xs--90 {
margin-left: -90px; }
.ml-xs--90-i {
margin-left: -90px !important; }
.pl--85 {
padding-left: -85px; }
.pl--85-i {
padding-left: -85px !important; }
.ml--85 {
margin-left: -85px; }
.ml--85-i {
margin-left: -85px !important; }
.pl-xs--85 {
padding-left: -85px; }
.pl-xs--85-i {
padding-left: -85px !important; }
.ml-xs--85 {
margin-left: -85px; }
.ml-xs--85-i {
margin-left: -85px !important; }
.pl--80 {
padding-left: -80px; }
.pl--80-i {
padding-left: -80px !important; }
.ml--80 {
margin-left: -80px; }
.ml--80-i {
margin-left: -80px !important; }
.pl-xs--80 {
padding-left: -80px; }
.pl-xs--80-i {
padding-left: -80px !important; }
.ml-xs--80 {
margin-left: -80px; }
.ml-xs--80-i {
margin-left: -80px !important; }
.pl--75 {
padding-left: -75px; }
.pl--75-i {
padding-left: -75px !important; }
.ml--75 {
margin-left: -75px; }
.ml--75-i {
margin-left: -75px !important; }
.pl-xs--75 {
padding-left: -75px; }
.pl-xs--75-i {
padding-left: -75px !important; }
.ml-xs--75 {
margin-left: -75px; }
.ml-xs--75-i {
margin-left: -75px !important; }
.pl--70 {
padding-left: -70px; }
.pl--70-i {
padding-left: -70px !important; }
.ml--70 {
margin-left: -70px; }
.ml--70-i {
margin-left: -70px !important; }
.pl-xs--70 {
padding-left: -70px; }
.pl-xs--70-i {
padding-left: -70px !important; }
.ml-xs--70 {
margin-left: -70px; }
.ml-xs--70-i {
margin-left: -70px !important; }
.pl--65 {
padding-left: -65px; }
.pl--65-i {
padding-left: -65px !important; }
.ml--65 {
margin-left: -65px; }
.ml--65-i {
margin-left: -65px !important; }
.pl-xs--65 {
padding-left: -65px; }
.pl-xs--65-i {
padding-left: -65px !important; }
.ml-xs--65 {
margin-left: -65px; }
.ml-xs--65-i {
margin-left: -65px !important; }
.pl--60 {
padding-left: -60px; }
.pl--60-i {
padding-left: -60px !important; }
.ml--60 {
margin-left: -60px; }
.ml--60-i {
margin-left: -60px !important; }
.pl-xs--60 {
padding-left: -60px; }
.pl-xs--60-i {
padding-left: -60px !important; }
.ml-xs--60 {
margin-left: -60px; }
.ml-xs--60-i {
margin-left: -60px !important; }
.pl--55 {
padding-left: -55px; }
.pl--55-i {
padding-left: -55px !important; }
.ml--55 {
margin-left: -55px; }
.ml--55-i {
margin-left: -55px !important; }
.pl-xs--55 {
padding-left: -55px; }
.pl-xs--55-i {
padding-left: -55px !important; }
.ml-xs--55 {
margin-left: -55px; }
.ml-xs--55-i {
margin-left: -55px !important; }
.pl--50 {
padding-left: -50px; }
.pl--50-i {
padding-left: -50px !important; }
.ml--50 {
margin-left: -50px; }
.ml--50-i {
margin-left: -50px !important; }
.pl-xs--50 {
padding-left: -50px; }
.pl-xs--50-i {
padding-left: -50px !important; }
.ml-xs--50 {
margin-left: -50px; }
.ml-xs--50-i {
margin-left: -50px !important; }
.pl--45 {
padding-left: -45px; }
.pl--45-i {
padding-left: -45px !important; }
.ml--45 {
margin-left: -45px; }
.ml--45-i {
margin-left: -45px !important; }
.pl-xs--45 {
padding-left: -45px; }
.pl-xs--45-i {
padding-left: -45px !important; }
.ml-xs--45 {
margin-left: -45px; }
.ml-xs--45-i {
margin-left: -45px !important; }
.pl--40 {
padding-left: -40px; }
.pl--40-i {
padding-left: -40px !important; }
.ml--40 {
margin-left: -40px; }
.ml--40-i {
margin-left: -40px !important; }
.pl-xs--40 {
padding-left: -40px; }
.pl-xs--40-i {
padding-left: -40px !important; }
.ml-xs--40 {
margin-left: -40px; }
.ml-xs--40-i {
margin-left: -40px !important; }
.pl--35 {
padding-left: -35px; }
.pl--35-i {
padding-left: -35px !important; }
.ml--35 {
margin-left: -35px; }
.ml--35-i {
margin-left: -35px !important; }
.pl-xs--35 {
padding-left: -35px; }
.pl-xs--35-i {
padding-left: -35px !important; }
.ml-xs--35 {
margin-left: -35px; }
.ml-xs--35-i {
margin-left: -35px !important; }
.pl--30 {
padding-left: -30px; }
.pl--30-i {
padding-left: -30px !important; }
.ml--30 {
margin-left: -30px; }
.ml--30-i {
margin-left: -30px !important; }
.pl-xs--30 {
padding-left: -30px; }
.pl-xs--30-i {
padding-left: -30px !important; }
.ml-xs--30 {
margin-left: -30px; }
.ml-xs--30-i {
margin-left: -30px !important; }
.pl--25 {
padding-left: -25px; }
.pl--25-i {
padding-left: -25px !important; }
.ml--25 {
margin-left: -25px; }
.ml--25-i {
margin-left: -25px !important; }
.pl-xs--25 {
padding-left: -25px; }
.pl-xs--25-i {
padding-left: -25px !important; }
.ml-xs--25 {
margin-left: -25px; }
.ml-xs--25-i {
margin-left: -25px !important; }
.pl--20 {
padding-left: -20px; }
.pl--20-i {
padding-left: -20px !important; }
.ml--20 {
margin-left: -20px; }
.ml--20-i {
margin-left: -20px !important; }
.pl-xs--20 {
padding-left: -20px; }
.pl-xs--20-i {
padding-left: -20px !important; }
.ml-xs--20 {
margin-left: -20px; }
.ml-xs--20-i {
margin-left: -20px !important; }
.pl--15 {
padding-left: -15px; }
.pl--15-i {
padding-left: -15px !important; }
.ml--15 {
margin-left: -15px; }
.ml--15-i {
margin-left: -15px !important; }
.pl-xs--15 {
padding-left: -15px; }
.pl-xs--15-i {
padding-left: -15px !important; }
.ml-xs--15 {
margin-left: -15px; }
.ml-xs--15-i {
margin-left: -15px !important; }
.pl--10 {
padding-left: -10px; }
.pl--10-i {
padding-left: -10px !important; }
.ml--10 {
margin-left: -10px; }
.ml--10-i {
margin-left: -10px !important; }
.pl-xs--10 {
padding-left: -10px; }
.pl-xs--10-i {
padding-left: -10px !important; }
.ml-xs--10 {
margin-left: -10px; }
.ml-xs--10-i {
margin-left: -10px !important; }
.pl--5 {
padding-left: -5px; }
.pl--5-i {
padding-left: -5px !important; }
.ml--5 {
margin-left: -5px; }
.ml--5-i {
margin-left: -5px !important; }
.pl-xs--5 {
padding-left: -5px; }
.pl-xs--5-i {
padding-left: -5px !important; }
.ml-xs--5 {
margin-left: -5px; }
.ml-xs--5-i {
margin-left: -5px !important; }
.pl-0 {
padding-left: 0px; }
.pl-0-i {
padding-left: 0px !important; }
.ml-0 {
margin-left: 0px; }
.ml-0-i {
margin-left: 0px !important; }
.pl-xs-0 {
padding-left: 0px; }
.pl-xs-0-i {
padding-left: 0px !important; }
.ml-xs-0 {
margin-left: 0px; }
.ml-xs-0-i {
margin-left: 0px !important; }
.pl-5 {
padding-left: 5px; }
.pl-5-i {
padding-left: 5px !important; }
.ml-5 {
margin-left: 5px; }
.ml-5-i {
margin-left: 5px !important; }
.pl-xs-5 {
padding-left: 5px; }
.pl-xs-5-i {
padding-left: 5px !important; }
.ml-xs-5 {
margin-left: 5px; }
.ml-xs-5-i {
margin-left: 5px !important; }
.pl-10 {
padding-left: 10px; }
.pl-10-i {
padding-left: 10px !important; }
.ml-10 {
margin-left: 10px; }
.ml-10-i {
margin-left: 10px !important; }
.pl-xs-10 {
padding-left: 10px; }
.pl-xs-10-i {
padding-left: 10px !important; }
.ml-xs-10 {
margin-left: 10px; }
.ml-xs-10-i {
margin-left: 10px !important; }
.pl-15 {
padding-left: 15px; }
.pl-15-i {
padding-left: 15px !important; }
.ml-15 {
margin-left: 15px; }
.ml-15-i {
margin-left: 15px !important; }
.pl-xs-15 {
padding-left: 15px; }
.pl-xs-15-i {
padding-left: 15px !important; }
.ml-xs-15 {
margin-left: 15px; }
.ml-xs-15-i {
margin-left: 15px !important; }
.pl-20 {
padding-left: 20px; }
.pl-20-i {
padding-left: 20px !important; }
.ml-20 {
margin-left: 20px; }
.ml-20-i {
margin-left: 20px !important; }
.pl-xs-20 {
padding-left: 20px; }
.pl-xs-20-i {
padding-left: 20px !important; }
.ml-xs-20 {
margin-left: 20px; }
.ml-xs-20-i {
margin-left: 20px !important; }
.pl-25 {
padding-left: 25px; }
.pl-25-i {
padding-left: 25px !important; }
.ml-25 {
margin-left: 25px; }
.ml-25-i {
margin-left: 25px !important; }
.pl-xs-25 {
padding-left: 25px; }
.pl-xs-25-i {
padding-left: 25px !important; }
.ml-xs-25 {
margin-left: 25px; }
.ml-xs-25-i {
margin-left: 25px !important; }
.pl-30 {
padding-left: 30px; }
.pl-30-i {
padding-left: 30px !important; }
.ml-30 {
margin-left: 30px; }
.ml-30-i {
margin-left: 30px !important; }
.pl-xs-30 {
padding-left: 30px; }
.pl-xs-30-i {
padding-left: 30px !important; }
.ml-xs-30 {
margin-left: 30px; }
.ml-xs-30-i {
margin-left: 30px !important; }
.pl-35 {
padding-left: 35px; }
.pl-35-i {
padding-left: 35px !important; }
.ml-35 {
margin-left: 35px; }
.ml-35-i {
margin-left: 35px !important; }
.pl-xs-35 {
padding-left: 35px; }
.pl-xs-35-i {
padding-left: 35px !important; }
.ml-xs-35 {
margin-left: 35px; }
.ml-xs-35-i {
margin-left: 35px !important; }
.pl-40 {
padding-left: 40px; }
.pl-40-i {
padding-left: 40px !important; }
.ml-40 {
margin-left: 40px; }
.ml-40-i {
margin-left: 40px !important; }
.pl-xs-40 {
padding-left: 40px; }
.pl-xs-40-i {
padding-left: 40px !important; }
.ml-xs-40 {
margin-left: 40px; }
.ml-xs-40-i {
margin-left: 40px !important; }
.pl-45 {
padding-left: 45px; }
.pl-45-i {
padding-left: 45px !important; }
.ml-45 {
margin-left: 45px; }
.ml-45-i {
margin-left: 45px !important; }
.pl-xs-45 {
padding-left: 45px; }
.pl-xs-45-i {
padding-left: 45px !important; }
.ml-xs-45 {
margin-left: 45px; }
.ml-xs-45-i {
margin-left: 45px !important; }
.pl-50 {
padding-left: 50px; }
.pl-50-i {
padding-left: 50px !important; }
.ml-50 {
margin-left: 50px; }
.ml-50-i {
margin-left: 50px !important; }
.pl-xs-50 {
padding-left: 50px; }
.pl-xs-50-i {
padding-left: 50px !important; }
.ml-xs-50 {
margin-left: 50px; }
.ml-xs-50-i {
margin-left: 50px !important; }
.pl-55 {
padding-left: 55px; }
.pl-55-i {
padding-left: 55px !important; }
.ml-55 {
margin-left: 55px; }
.ml-55-i {
margin-left: 55px !important; }
.pl-xs-55 {
padding-left: 55px; }
.pl-xs-55-i {
padding-left: 55px !important; }
.ml-xs-55 {
margin-left: 55px; }
.ml-xs-55-i {
margin-left: 55px !important; }
.pl-60 {
padding-left: 60px; }
.pl-60-i {
padding-left: 60px !important; }
.ml-60 {
margin-left: 60px; }
.ml-60-i {
margin-left: 60px !important; }
.pl-xs-60 {
padding-left: 60px; }
.pl-xs-60-i {
padding-left: 60px !important; }
.ml-xs-60 {
margin-left: 60px; }
.ml-xs-60-i {
margin-left: 60px !important; }
.pl-65 {
padding-left: 65px; }
.pl-65-i {
padding-left: 65px !important; }
.ml-65 {
margin-left: 65px; }
.ml-65-i {
margin-left: 65px !important; }
.pl-xs-65 {
padding-left: 65px; }
.pl-xs-65-i {
padding-left: 65px !important; }
.ml-xs-65 {
margin-left: 65px; }
.ml-xs-65-i {
margin-left: 65px !important; }
.pl-70 {
padding-left: 70px; }
.pl-70-i {
padding-left: 70px !important; }
.ml-70 {
margin-left: 70px; }
.ml-70-i {
margin-left: 70px !important; }
.pl-xs-70 {
padding-left: 70px; }
.pl-xs-70-i {
padding-left: 70px !important; }
.ml-xs-70 {
margin-left: 70px; }
.ml-xs-70-i {
margin-left: 70px !important; }
.pl-75 {
padding-left: 75px; }
.pl-75-i {
padding-left: 75px !important; }
.ml-75 {
margin-left: 75px; }
.ml-75-i {
margin-left: 75px !important; }
.pl-xs-75 {
padding-left: 75px; }
.pl-xs-75-i {
padding-left: 75px !important; }
.ml-xs-75 {
margin-left: 75px; }
.ml-xs-75-i {
margin-left: 75px !important; }
.pl-80 {
padding-left: 80px; }
.pl-80-i {
padding-left: 80px !important; }
.ml-80 {
margin-left: 80px; }
.ml-80-i {
margin-left: 80px !important; }
.pl-xs-80 {
padding-left: 80px; }
.pl-xs-80-i {
padding-left: 80px !important; }
.ml-xs-80 {
margin-left: 80px; }
.ml-xs-80-i {
margin-left: 80px !important; }
.pl-85 {
padding-left: 85px; }
.pl-85-i {
padding-left: 85px !important; }
.ml-85 {
margin-left: 85px; }
.ml-85-i {
margin-left: 85px !important; }
.pl-xs-85 {
padding-left: 85px; }
.pl-xs-85-i {
padding-left: 85px !important; }
.ml-xs-85 {
margin-left: 85px; }
.ml-xs-85-i {
margin-left: 85px !important; }
.pl-90 {
padding-left: 90px; }
.pl-90-i {
padding-left: 90px !important; }
.ml-90 {
margin-left: 90px; }
.ml-90-i {
margin-left: 90px !important; }
.pl-xs-90 {
padding-left: 90px; }
.pl-xs-90-i {
padding-left: 90px !important; }
.ml-xs-90 {
margin-left: 90px; }
.ml-xs-90-i {
margin-left: 90px !important; }
.pl-95 {
padding-left: 95px; }
.pl-95-i {
padding-left: 95px !important; }
.ml-95 {
margin-left: 95px; }
.ml-95-i {
margin-left: 95px !important; }
.pl-xs-95 {
padding-left: 95px; }
.pl-xs-95-i {
padding-left: 95px !important; }
.ml-xs-95 {
margin-left: 95px; }
.ml-xs-95-i {
margin-left: 95px !important; }
.pl-100 {
padding-left: 100px; }
.pl-100-i {
padding-left: 100px !important; }
.ml-100 {
margin-left: 100px; }
.ml-100-i {
margin-left: 100px !important; }
.pl-xs-100 {
padding-left: 100px; }
.pl-xs-100-i {
padding-left: 100px !important; }
.ml-xs-100 {
margin-left: 100px; }
.ml-xs-100-i {
margin-left: 100px !important; }
.pa--100 {
padding: -100px; }
.ma--100 {
margin: -100px; }
.pv--100 {
padding-top: -100px;
padding-bottom: -100px; }
.mv--100 {
margin-top: -100px;
margin-bottom: -100px; }
.ph--100 {
padding-left: -100px;
padding-right: -100px; }
.mh--100 {
margin-left: -100px;
margin-right: -100px; }
.pa-xs--100 {
padding: -100px; }
.ma-xs--100 {
margin: -100px; }
.pv-xs--100 {
padding-top: -100px;
padding-bottom: -100px; }
.mv-xs--100 {
margin-top: -100px;
margin-bottom: -100px; }
.ph-xs--100 {
padding-left: -100px;
padding-right: -100px; }
.mh-xs--100 {
margin-left: -100px;
padding-right: -100px; }
.pa--95 {
padding: -95px; }
.ma--95 {
margin: -95px; }
.pv--95 {
padding-top: -95px;
padding-bottom: -95px; }
.mv--95 {
margin-top: -95px;
margin-bottom: -95px; }
.ph--95 {
padding-left: -95px;
padding-right: -95px; }
.mh--95 {
margin-left: -95px;
margin-right: -95px; }
.pa-xs--95 {
padding: -95px; }
.ma-xs--95 {
margin: -95px; }
.pv-xs--95 {
padding-top: -95px;
padding-bottom: -95px; }
.mv-xs--95 {
margin-top: -95px;
margin-bottom: -95px; }
.ph-xs--95 {
padding-left: -95px;
padding-right: -95px; }
.mh-xs--95 {
margin-left: -95px;
padding-right: -95px; }
.pa--90 {
padding: -90px; }
.ma--90 {
margin: -90px; }
.pv--90 {
padding-top: -90px;
padding-bottom: -90px; }
.mv--90 {
margin-top: -90px;
margin-bottom: -90px; }
.ph--90 {
padding-left: -90px;
padding-right: -90px; }
.mh--90 {
margin-left: -90px;
margin-right: -90px; }
.pa-xs--90 {
padding: -90px; }
.ma-xs--90 {
margin: -90px; }
.pv-xs--90 {
padding-top: -90px;
padding-bottom: -90px; }
.mv-xs--90 {
margin-top: -90px;
margin-bottom: -90px; }
.ph-xs--90 {
padding-left: -90px;
padding-right: -90px; }
.mh-xs--90 {
margin-left: -90px;
padding-right: -90px; }
.pa--85 {
padding: -85px; }
.ma--85 {
margin: -85px; }
.pv--85 {
padding-top: -85px;
padding-bottom: -85px; }
.mv--85 {
margin-top: -85px;
margin-bottom: -85px; }
.ph--85 {
padding-left: -85px;
padding-right: -85px; }
.mh--85 {
margin-left: -85px;
margin-right: -85px; }
.pa-xs--85 {
padding: -85px; }
.ma-xs--85 {
margin: -85px; }
.pv-xs--85 {
padding-top: -85px;
padding-bottom: -85px; }
.mv-xs--85 {
margin-top: -85px;
margin-bottom: -85px; }
.ph-xs--85 {
padding-left: -85px;
padding-right: -85px; }
.mh-xs--85 {
margin-left: -85px;
padding-right: -85px; }
.pa--80 {
padding: -80px; }
.ma--80 {
margin: -80px; }
.pv--80 {
padding-top: -80px;
padding-bottom: -80px; }
.mv--80 {
margin-top: -80px;
margin-bottom: -80px; }
.ph--80 {
padding-left: -80px;
padding-right: -80px; }
.mh--80 {
margin-left: -80px;
margin-right: -80px; }
.pa-xs--80 {
padding: -80px; }
.ma-xs--80 {
margin: -80px; }
.pv-xs--80 {
padding-top: -80px;
padding-bottom: -80px; }
.mv-xs--80 {
margin-top: -80px;
margin-bottom: -80px; }
.ph-xs--80 {
padding-left: -80px;
padding-right: -80px; }
.mh-xs--80 {
margin-left: -80px;
padding-right: -80px; }
.pa--75 {
padding: -75px; }
.ma--75 {
margin: -75px; }
.pv--75 {
padding-top: -75px;
padding-bottom: -75px; }
.mv--75 {
margin-top: -75px;
margin-bottom: -75px; }
.ph--75 {
padding-left: -75px;
padding-right: -75px; }
.mh--75 {
margin-left: -75px;
margin-right: -75px; }
.pa-xs--75 {
padding: -75px; }
.ma-xs--75 {
margin: -75px; }
.pv-xs--75 {
padding-top: -75px;
padding-bottom: -75px; }
.mv-xs--75 {
margin-top: -75px;
margin-bottom: -75px; }
.ph-xs--75 {
padding-left: -75px;
padding-right: -75px; }
.mh-xs--75 {
margin-left: -75px;
padding-right: -75px; }
.pa--70 {
padding: -70px; }
.ma--70 {
margin: -70px; }
.pv--70 {
padding-top: -70px;
padding-bottom: -70px; }
.mv--70 {
margin-top: -70px;
margin-bottom: -70px; }
.ph--70 {
padding-left: -70px;
padding-right: -70px; }
.mh--70 {
margin-left: -70px;
margin-right: -70px; }
.pa-xs--70 {
padding: -70px; }
.ma-xs--70 {
margin: -70px; }
.pv-xs--70 {
padding-top: -70px;
padding-bottom: -70px; }
.mv-xs--70 {
margin-top: -70px;
margin-bottom: -70px; }
.ph-xs--70 {
padding-left: -70px;
padding-right: -70px; }
.mh-xs--70 {
margin-left: -70px;
padding-right: -70px; }
.pa--65 {
padding: -65px; }
.ma--65 {
margin: -65px; }
.pv--65 {
padding-top: -65px;
padding-bottom: -65px; }
.mv--65 {
margin-top: -65px;
margin-bottom: -65px; }
.ph--65 {
padding-left: -65px;
padding-right: -65px; }
.mh--65 {
margin-left: -65px;
margin-right: -65px; }
.pa-xs--65 {
padding: -65px; }
.ma-xs--65 {
margin: -65px; }
.pv-xs--65 {
padding-top: -65px;
padding-bottom: -65px; }
.mv-xs--65 {
margin-top: -65px;
margin-bottom: -65px; }
.ph-xs--65 {
padding-left: -65px;
padding-right: -65px; }
.mh-xs--65 {
margin-left: -65px;
padding-right: -65px; }
.pa--60 {
padding: -60px; }
.ma--60 {
margin: -60px; }
.pv--60 {
padding-top: -60px;
padding-bottom: -60px; }
.mv--60 {
margin-top: -60px;
margin-bottom: -60px; }
.ph--60 {
padding-left: -60px;
padding-right: -60px; }
.mh--60 {
margin-left: -60px;
margin-right: -60px; }
.pa-xs--60 {
padding: -60px; }
.ma-xs--60 {
margin: -60px; }
.pv-xs--60 {
padding-top: -60px;
padding-bottom: -60px; }
.mv-xs--60 {
margin-top: -60px;
margin-bottom: -60px; }
.ph-xs--60 {
padding-left: -60px;
padding-right: -60px; }
.mh-xs--60 {
margin-left: -60px;
padding-right: -60px; }
.pa--55 {
padding: -55px; }
.ma--55 {
margin: -55px; }
.pv--55 {
padding-top: -55px;
padding-bottom: -55px; }
.mv--55 {
margin-top: -55px;
margin-bottom: -55px; }
.ph--55 {
padding-left: -55px;
padding-right: -55px; }
.mh--55 {
margin-left: -55px;
margin-right: -55px; }
.pa-xs--55 {
padding: -55px; }
.ma-xs--55 {
margin: -55px; }
.pv-xs--55 {
padding-top: -55px;
padding-bottom: -55px; }
.mv-xs--55 {
margin-top: -55px;
margin-bottom: -55px; }
.ph-xs--55 {
padding-left: -55px;
padding-right: -55px; }
.mh-xs--55 {
margin-left: -55px;
padding-right: -55px; }
.pa--50 {
padding: -50px; }
.ma--50 {
margin: -50px; }
.pv--50 {
padding-top: -50px;
padding-bottom: -50px; }
.mv--50 {
margin-top: -50px;
margin-bottom: -50px; }
.ph--50 {
padding-left: -50px;
padding-right: -50px; }
.mh--50 {
margin-left: -50px;
margin-right: -50px; }
.pa-xs--50 {
padding: -50px; }
.ma-xs--50 {
margin: -50px; }
.pv-xs--50 {
padding-top: -50px;
padding-bottom: -50px; }
.mv-xs--50 {
margin-top: -50px;
margin-bottom: -50px; }
.ph-xs--50 {
padding-left: -50px;
padding-right: -50px; }
.mh-xs--50 {
margin-left: -50px;
padding-right: -50px; }
.pa--45 {
padding: -45px; }
.ma--45 {
margin: -45px; }
.pv--45 {
padding-top: -45px;
padding-bottom: -45px; }
.mv--45 {
margin-top: -45px;
margin-bottom: -45px; }
.ph--45 {
padding-left: -45px;
padding-right: -45px; }
.mh--45 {
margin-left: -45px;
margin-right: -45px; }
.pa-xs--45 {
padding: -45px; }
.ma-xs--45 {
margin: -45px; }
.pv-xs--45 {
padding-top: -45px;
padding-bottom: -45px; }
.mv-xs--45 {
margin-top: -45px;
margin-bottom: -45px; }
.ph-xs--45 {
padding-left: -45px;
padding-right: -45px; }
.mh-xs--45 {
margin-left: -45px;
padding-right: -45px; }
.pa--40 {
padding: -40px; }
.ma--40 {
margin: -40px; }
.pv--40 {
padding-top: -40px;
padding-bottom: -40px; }
.mv--40 {
margin-top: -40px;
margin-bottom: -40px; }
.ph--40 {
padding-left: -40px;
padding-right: -40px; }
.mh--40 {
margin-left: -40px;
margin-right: -40px; }
.pa-xs--40 {
padding: -40px; }
.ma-xs--40 {
margin: -40px; }
.pv-xs--40 {
padding-top: -40px;
padding-bottom: -40px; }
.mv-xs--40 {
margin-top: -40px;
margin-bottom: -40px; }
.ph-xs--40 {
padding-left: -40px;
padding-right: -40px; }
.mh-xs--40 {
margin-left: -40px;
padding-right: -40px; }
.pa--35 {
padding: -35px; }
.ma--35 {
margin: -35px; }
.pv--35 {
padding-top: -35px;
padding-bottom: -35px; }
.mv--35 {
margin-top: -35px;
margin-bottom: -35px; }
.ph--35 {
padding-left: -35px;
padding-right: -35px; }
.mh--35 {
margin-left: -35px;
margin-right: -35px; }
.pa-xs--35 {
padding: -35px; }
.ma-xs--35 {
margin: -35px; }
.pv-xs--35 {
padding-top: -35px;
padding-bottom: -35px; }
.mv-xs--35 {
margin-top: -35px;
margin-bottom: -35px; }
.ph-xs--35 {
padding-left: -35px;
padding-right: -35px; }
.mh-xs--35 {
margin-left: -35px;
padding-right: -35px; }
.pa--30 {
padding: -30px; }
.ma--30 {
margin: -30px; }
.pv--30 {
padding-top: -30px;
padding-bottom: -30px; }
.mv--30 {
margin-top: -30px;
margin-bottom: -30px; }
.ph--30 {
padding-left: -30px;
padding-right: -30px; }
.mh--30 {
margin-left: -30px;
margin-right: -30px; }
.pa-xs--30 {
padding: -30px; }
.ma-xs--30 {
margin: -30px; }
.pv-xs--30 {
padding-top: -30px;
padding-bottom: -30px; }
.mv-xs--30 {
margin-top: -30px;
margin-bottom: -30px; }
.ph-xs--30 {
padding-left: -30px;
padding-right: -30px; }
.mh-xs--30 {
margin-left: -30px;
padding-right: -30px; }
.pa--25 {
padding: -25px; }
.ma--25 {
margin: -25px; }
.pv--25 {
padding-top: -25px;
padding-bottom: -25px; }
.mv--25 {
margin-top: -25px;
margin-bottom: -25px; }
.ph--25 {
padding-left: -25px;
padding-right: -25px; }
.mh--25 {
margin-left: -25px;
margin-right: -25px; }
.pa-xs--25 {
padding: -25px; }
.ma-xs--25 {
margin: -25px; }
.pv-xs--25 {
padding-top: -25px;
padding-bottom: -25px; }
.mv-xs--25 {
margin-top: -25px;
margin-bottom: -25px; }
.ph-xs--25 {
padding-left: -25px;
padding-right: -25px; }
.mh-xs--25 {
margin-left: -25px;
padding-right: -25px; }
.pa--20 {
padding: -20px; }
.ma--20 {
margin: -20px; }
.pv--20 {
padding-top: -20px;
padding-bottom: -20px; }
.mv--20 {
margin-top: -20px;
margin-bottom: -20px; }
.ph--20 {
padding-left: -20px;
padding-right: -20px; }
.mh--20 {
margin-left: -20px;
margin-right: -20px; }
.pa-xs--20 {
padding: -20px; }
.ma-xs--20 {
margin: -20px; }
.pv-xs--20 {
padding-top: -20px;
padding-bottom: -20px; }
.mv-xs--20 {
margin-top: -20px;
margin-bottom: -20px; }
.ph-xs--20 {
padding-left: -20px;
padding-right: -20px; }
.mh-xs--20 {
margin-left: -20px;
padding-right: -20px; }
.pa--15 {
padding: -15px; }
.ma--15 {
margin: -15px; }
.pv--15 {
padding-top: -15px;
padding-bottom: -15px; }
.mv--15 {
margin-top: -15px;
margin-bottom: -15px; }
.ph--15 {
padding-left: -15px;
padding-right: -15px; }
.mh--15 {
margin-left: -15px;
margin-right: -15px; }
.pa-xs--15 {
padding: -15px; }
.ma-xs--15 {
margin: -15px; }
.pv-xs--15 {
padding-top: -15px;
padding-bottom: -15px; }
.mv-xs--15 {
margin-top: -15px;
margin-bottom: -15px; }
.ph-xs--15 {
padding-left: -15px;
padding-right: -15px; }
.mh-xs--15 {
margin-left: -15px;
padding-right: -15px; }
.pa--10 {
padding: -10px; }
.ma--10 {
margin: -10px; }
.pv--10 {
padding-top: -10px;
padding-bottom: -10px; }
.mv--10 {
margin-top: -10px;
margin-bottom: -10px; }
.ph--10 {
padding-left: -10px;
padding-right: -10px; }
.mh--10 {
margin-left: -10px;
margin-right: -10px; }
.pa-xs--10 {
padding: -10px; }
.ma-xs--10 {
margin: -10px; }
.pv-xs--10 {
padding-top: -10px;
padding-bottom: -10px; }
.mv-xs--10 {
margin-top: -10px;
margin-bottom: -10px; }
.ph-xs--10 {
padding-left: -10px;
padding-right: -10px; }
.mh-xs--10 {
margin-left: -10px;
padding-right: -10px; }
.pa--5 {
padding: -5px; }
.ma--5 {
margin: -5px; }
.pv--5 {
padding-top: -5px;
padding-bottom: -5px; }
.mv--5 {
margin-top: -5px;
margin-bottom: -5px; }
.ph--5 {
padding-left: -5px;
padding-right: -5px; }
.mh--5 {
margin-left: -5px;
margin-right: -5px; }
.pa-xs--5 {
padding: -5px; }
.ma-xs--5 {
margin: -5px; }
.pv-xs--5 {
padding-top: -5px;
padding-bottom: -5px; }
.mv-xs--5 {
margin-top: -5px;
margin-bottom: -5px; }
.ph-xs--5 {
padding-left: -5px;
padding-right: -5px; }
.mh-xs--5 {
margin-left: -5px;
padding-right: -5px; }
.pa-0 {
padding: 0px; }
.ma-0 {
margin: 0px; }
.pv-0 {
padding-top: 0px;
padding-bottom: 0px; }
.mv-0 {
margin-top: 0px;
margin-bottom: 0px; }
.ph-0 {
padding-left: 0px;
padding-right: 0px; }
.mh-0 {
margin-left: 0px;
margin-right: 0px; }
.pa-xs-0 {
padding: 0px; }
.ma-xs-0 {
margin: 0px; }
.pv-xs-0 {
padding-top: 0px;
padding-bottom: 0px; }
.mv-xs-0 {
margin-top: 0px;
margin-bottom: 0px; }
.ph-xs-0 {
padding-left: 0px;
padding-right: 0px; }
.mh-xs-0 {
margin-left: 0px;
padding-right: 0px; }
.pa-5 {
padding: 5px; }
.ma-5 {
margin: 5px; }
.pv-5 {
padding-top: 5px;
padding-bottom: 5px; }
.mv-5 {
margin-top: 5px;
margin-bottom: 5px; }
.ph-5 {
padding-left: 5px;
padding-right: 5px; }
.mh-5 {
margin-left: 5px;
margin-right: 5px; }
.pa-xs-5 {
padding: 5px; }
.ma-xs-5 {
margin: 5px; }
.pv-xs-5 {
padding-top: 5px;
padding-bottom: 5px; }
.mv-xs-5 {
margin-top: 5px;
margin-bottom: 5px; }
.ph-xs-5 {
padding-left: 5px;
padding-right: 5px; }
.mh-xs-5 {
margin-left: 5px;
padding-right: 5px; }
.pa-10 {
padding: 10px; }
.ma-10 {
margin: 10px; }
.pv-10 {
padding-top: 10px;
padding-bottom: 10px; }
.mv-10 {
margin-top: 10px;
margin-bottom: 10px; }
.ph-10 {
padding-left: 10px;
padding-right: 10px; }
.mh-10 {
margin-left: 10px;
margin-right: 10px; }
.pa-xs-10 {
padding: 10px; }
.ma-xs-10 {
margin: 10px; }
.pv-xs-10 {
padding-top: 10px;
padding-bottom: 10px; }
.mv-xs-10 {
margin-top: 10px;
margin-bottom: 10px; }
.ph-xs-10 {
padding-left: 10px;
padding-right: 10px; }
.mh-xs-10 {
margin-left: 10px;
padding-right: 10px; }
.pa-15 {
padding: 15px; }
.ma-15 {
margin: 15px; }
.pv-15 {
padding-top: 15px;
padding-bottom: 15px; }
.mv-15 {
margin-top: 15px;
margin-bottom: 15px; }
.ph-15 {
padding-left: 15px;
padding-right: 15px; }
.mh-15 {
margin-left: 15px;
margin-right: 15px; }
.pa-xs-15 {
padding: 15px; }
.ma-xs-15 {
margin: 15px; }
.pv-xs-15 {
padding-top: 15px;
padding-bottom: 15px; }
.mv-xs-15 {
margin-top: 15px;
margin-bottom: 15px; }
.ph-xs-15 {
padding-left: 15px;
padding-right: 15px; }
.mh-xs-15 {
margin-left: 15px;
padding-right: 15px; }
.pa-20 {
padding: 20px; }
.ma-20 {
margin: 20px; }
.pv-20 {
padding-top: 20px;
padding-bottom: 20px; }
.mv-20 {
margin-top: 20px;
margin-bottom: 20px; }
.ph-20 {
padding-left: 20px;
padding-right: 20px; }
.mh-20 {
margin-left: 20px;
margin-right: 20px; }
.pa-xs-20 {
padding: 20px; }
.ma-xs-20 {
margin: 20px; }
.pv-xs-20 {
padding-top: 20px;
padding-bottom: 20px; }
.mv-xs-20 {
margin-top: 20px;
margin-bottom: 20px; }
.ph-xs-20 {
padding-left: 20px;
padding-right: 20px; }
.mh-xs-20 {
margin-left: 20px;
padding-right: 20px; }
.pa-25 {
padding: 25px; }
.ma-25 {
margin: 25px; }
.pv-25 {
padding-top: 25px;
padding-bottom: 25px; }
.mv-25 {
margin-top: 25px;
margin-bottom: 25px; }
.ph-25 {
padding-left: 25px;
padding-right: 25px; }
.mh-25 {
margin-left: 25px;
margin-right: 25px; }
.pa-xs-25 {
padding: 25px; }
.ma-xs-25 {
margin: 25px; }
.pv-xs-25 {
padding-top: 25px;
padding-bottom: 25px; }
.mv-xs-25 {
margin-top: 25px;
margin-bottom: 25px; }
.ph-xs-25 {
padding-left: 25px;
padding-right: 25px; }
.mh-xs-25 {
margin-left: 25px;
padding-right: 25px; }
.pa-30 {
padding: 30px; }
.ma-30 {
margin: 30px; }
.pv-30 {
padding-top: 30px;
padding-bottom: 30px; }
.mv-30 {
margin-top: 30px;
margin-bottom: 30px; }
.ph-30 {
padding-left: 30px;
padding-right: 30px; }
.mh-30 {
margin-left: 30px;
margin-right: 30px; }
.pa-xs-30 {
padding: 30px; }
.ma-xs-30 {
margin: 30px; }
.pv-xs-30 {
padding-top: 30px;
padding-bottom: 30px; }
.mv-xs-30 {
margin-top: 30px;
margin-bottom: 30px; }
.ph-xs-30 {
padding-left: 30px;
padding-right: 30px; }
.mh-xs-30 {
margin-left: 30px;
padding-right: 30px; }
.pa-35 {
padding: 35px; }
.ma-35 {
margin: 35px; }
.pv-35 {
padding-top: 35px;
padding-bottom: 35px; }
.mv-35 {
margin-top: 35px;
margin-bottom: 35px; }
.ph-35 {
padding-left: 35px;
padding-right: 35px; }
.mh-35 {
margin-left: 35px;
margin-right: 35px; }
.pa-xs-35 {
padding: 35px; }
.ma-xs-35 {
margin: 35px; }
.pv-xs-35 {
padding-top: 35px;
padding-bottom: 35px; }
.mv-xs-35 {
margin-top: 35px;
margin-bottom: 35px; }
.ph-xs-35 {
padding-left: 35px;
padding-right: 35px; }
.mh-xs-35 {
margin-left: 35px;
padding-right: 35px; }
.pa-40 {
padding: 40px; }
.ma-40 {
margin: 40px; }
.pv-40 {
padding-top: 40px;
padding-bottom: 40px; }
.mv-40 {
margin-top: 40px;
margin-bottom: 40px; }
.ph-40 {
padding-left: 40px;
padding-right: 40px; }
.mh-40 {
margin-left: 40px;
margin-right: 40px; }
.pa-xs-40 {
padding: 40px; }
.ma-xs-40 {
margin: 40px; }
.pv-xs-40 {
padding-top: 40px;
padding-bottom: 40px; }
.mv-xs-40 {
margin-top: 40px;
margin-bottom: 40px; }
.ph-xs-40 {
padding-left: 40px;
padding-right: 40px; }
.mh-xs-40 {
margin-left: 40px;
padding-right: 40px; }
.pa-45 {
padding: 45px; }
.ma-45 {
margin: 45px; }
.pv-45 {
padding-top: 45px;
padding-bottom: 45px; }
.mv-45 {
margin-top: 45px;
margin-bottom: 45px; }
.ph-45 {
padding-left: 45px;
padding-right: 45px; }
.mh-45 {
margin-left: 45px;
margin-right: 45px; }
.pa-xs-45 {
padding: 45px; }
.ma-xs-45 {
margin: 45px; }
.pv-xs-45 {
padding-top: 45px;
padding-bottom: 45px; }
.mv-xs-45 {
margin-top: 45px;
margin-bottom: 45px; }
.ph-xs-45 {
padding-left: 45px;
padding-right: 45px; }
.mh-xs-45 {
margin-left: 45px;
padding-right: 45px; }
.pa-50 {
padding: 50px; }
.ma-50 {
margin: 50px; }
.pv-50 {
padding-top: 50px;
padding-bottom: 50px; }
.mv-50 {
margin-top: 50px;
margin-bottom: 50px; }
.ph-50 {
padding-left: 50px;
padding-right: 50px; }
.mh-50 {
margin-left: 50px;
margin-right: 50px; }
.pa-xs-50 {
padding: 50px; }
.ma-xs-50 {
margin: 50px; }
.pv-xs-50 {
padding-top: 50px;
padding-bottom: 50px; }
.mv-xs-50 {
margin-top: 50px;
margin-bottom: 50px; }
.ph-xs-50 {
padding-left: 50px;
padding-right: 50px; }
.mh-xs-50 {
margin-left: 50px;
padding-right: 50px; }
.pa-55 {
padding: 55px; }
.ma-55 {
margin: 55px; }
.pv-55 {
padding-top: 55px;
padding-bottom: 55px; }
.mv-55 {
margin-top: 55px;
margin-bottom: 55px; }
.ph-55 {
padding-left: 55px;
padding-right: 55px; }
.mh-55 {
margin-left: 55px;
margin-right: 55px; }
.pa-xs-55 {
padding: 55px; }
.ma-xs-55 {
margin: 55px; }
.pv-xs-55 {
padding-top: 55px;
padding-bottom: 55px; }
.mv-xs-55 {
margin-top: 55px;
margin-bottom: 55px; }
.ph-xs-55 {
padding-left: 55px;
padding-right: 55px; }
.mh-xs-55 {
margin-left: 55px;
padding-right: 55px; }
.pa-60 {
padding: 60px; }
.ma-60 {
margin: 60px; }
.pv-60 {
padding-top: 60px;
padding-bottom: 60px; }
.mv-60 {
margin-top: 60px;
margin-bottom: 60px; }
.ph-60 {
padding-left: 60px;
padding-right: 60px; }
.mh-60 {
margin-left: 60px;
margin-right: 60px; }
.pa-xs-60 {
padding: 60px; }
.ma-xs-60 {
margin: 60px; }
.pv-xs-60 {
padding-top: 60px;
padding-bottom: 60px; }
.mv-xs-60 {
margin-top: 60px;
margin-bottom: 60px; }
.ph-xs-60 {
padding-left: 60px;
padding-right: 60px; }
.mh-xs-60 {
margin-left: 60px;
padding-right: 60px; }
.pa-65 {
padding: 65px; }
.ma-65 {
margin: 65px; }
.pv-65 {
padding-top: 65px;
padding-bottom: 65px; }
.mv-65 {
margin-top: 65px;
margin-bottom: 65px; }
.ph-65 {
padding-left: 65px;
padding-right: 65px; }
.mh-65 {
margin-left: 65px;
margin-right: 65px; }
.pa-xs-65 {
padding: 65px; }
.ma-xs-65 {
margin: 65px; }
.pv-xs-65 {
padding-top: 65px;
padding-bottom: 65px; }
.mv-xs-65 {
margin-top: 65px;
margin-bottom: 65px; }
.ph-xs-65 {
padding-left: 65px;
padding-right: 65px; }
.mh-xs-65 {
margin-left: 65px;
padding-right: 65px; }
.pa-70 {
padding: 70px; }
.ma-70 {
margin: 70px; }
.pv-70 {
padding-top: 70px;
padding-bottom: 70px; }
.mv-70 {
margin-top: 70px;
margin-bottom: 70px; }
.ph-70 {
padding-left: 70px;
padding-right: 70px; }
.mh-70 {
margin-left: 70px;
margin-right: 70px; }
.pa-xs-70 {
padding: 70px; }
.ma-xs-70 {
margin: 70px; }
.pv-xs-70 {
padding-top: 70px;
padding-bottom: 70px; }
.mv-xs-70 {
margin-top: 70px;
margin-bottom: 70px; }
.ph-xs-70 {
padding-left: 70px;
padding-right: 70px; }
.mh-xs-70 {
margin-left: 70px;
padding-right: 70px; }
.pa-75 {
padding: 75px; }
.ma-75 {
margin: 75px; }
.pv-75 {
padding-top: 75px;
padding-bottom: 75px; }
.mv-75 {
margin-top: 75px;
margin-bottom: 75px; }
.ph-75 {
padding-left: 75px;
padding-right: 75px; }
.mh-75 {
margin-left: 75px;
margin-right: 75px; }
.pa-xs-75 {
padding: 75px; }
.ma-xs-75 {
margin: 75px; }
.pv-xs-75 {
padding-top: 75px;
padding-bottom: 75px; }
.mv-xs-75 {
margin-top: 75px;
margin-bottom: 75px; }
.ph-xs-75 {
padding-left: 75px;
padding-right: 75px; }
.mh-xs-75 {
margin-left: 75px;
padding-right: 75px; }
.pa-80 {
padding: 80px; }
.ma-80 {
margin: 80px; }
.pv-80 {
padding-top: 80px;
padding-bottom: 80px; }
.mv-80 {
margin-top: 80px;
margin-bottom: 80px; }
.ph-80 {
padding-left: 80px;
padding-right: 80px; }
.mh-80 {
margin-left: 80px;
margin-right: 80px; }
.pa-xs-80 {
padding: 80px; }
.ma-xs-80 {
margin: 80px; }
.pv-xs-80 {
padding-top: 80px;
padding-bottom: 80px; }
.mv-xs-80 {
margin-top: 80px;
margin-bottom: 80px; }
.ph-xs-80 {
padding-left: 80px;
padding-right: 80px; }
.mh-xs-80 {
margin-left: 80px;
padding-right: 80px; }
.pa-85 {
padding: 85px; }
.ma-85 {
margin: 85px; }
.pv-85 {
padding-top: 85px;
padding-bottom: 85px; }
.mv-85 {
margin-top: 85px;
margin-bottom: 85px; }
.ph-85 {
padding-left: 85px;
padding-right: 85px; }
.mh-85 {
margin-left: 85px;
margin-right: 85px; }
.pa-xs-85 {
padding: 85px; }
.ma-xs-85 {
margin: 85px; }
.pv-xs-85 {
padding-top: 85px;
padding-bottom: 85px; }
.mv-xs-85 {
margin-top: 85px;
margin-bottom: 85px; }
.ph-xs-85 {
padding-left: 85px;
padding-right: 85px; }
.mh-xs-85 {
margin-left: 85px;
padding-right: 85px; }
.pa-90 {
padding: 90px; }
.ma-90 {
margin: 90px; }
.pv-90 {
padding-top: 90px;
padding-bottom: 90px; }
.mv-90 {
margin-top: 90px;
margin-bottom: 90px; }
.ph-90 {
padding-left: 90px;
padding-right: 90px; }
.mh-90 {
margin-left: 90px;
margin-right: 90px; }
.pa-xs-90 {
padding: 90px; }
.ma-xs-90 {
margin: 90px; }
.pv-xs-90 {
padding-top: 90px;
padding-bottom: 90px; }
.mv-xs-90 {
margin-top: 90px;
margin-bottom: 90px; }
.ph-xs-90 {
padding-left: 90px;
padding-right: 90px; }
.mh-xs-90 {
margin-left: 90px;
padding-right: 90px; }
.pa-95 {
padding: 95px; }
.ma-95 {
margin: 95px; }
.pv-95 {
padding-top: 95px;
padding-bottom: 95px; }
.mv-95 {
margin-top: 95px;
margin-bottom: 95px; }
.ph-95 {
padding-left: 95px;
padding-right: 95px; }
.mh-95 {
margin-left: 95px;
margin-right: 95px; }
.pa-xs-95 {
padding: 95px; }
.ma-xs-95 {
margin: 95px; }
.pv-xs-95 {
padding-top: 95px;
padding-bottom: 95px; }
.mv-xs-95 {
margin-top: 95px;
margin-bottom: 95px; }
.ph-xs-95 {
padding-left: 95px;
padding-right: 95px; }
.mh-xs-95 {
margin-left: 95px;
padding-right: 95px; }
.pa-100 {
padding: 100px; }
.ma-100 {
margin: 100px; }
.pv-100 {
padding-top: 100px;
padding-bottom: 100px; }
.mv-100 {
margin-top: 100px;
margin-bottom: 100px; }
.ph-100 {
padding-left: 100px;
padding-right: 100px; }
.mh-100 {
margin-left: 100px;
margin-right: 100px; }
.pa-xs-100 {
padding: 100px; }
.ma-xs-100 {
margin: 100px; }
.pv-xs-100 {
padding-top: 100px;
padding-bottom: 100px; }
.mv-xs-100 {
margin-top: 100px;
margin-bottom: 100px; }
.ph-xs-100 {
padding-left: 100px;
padding-right: 100px; }
.mh-xs-100 {
margin-left: 100px;
padding-right: 100px; }  html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
progress,
video {
display: inline-block; }
audio:not([controls]) {
display: none;
height: 0; }
progress {
vertical-align: baseline; }
template,
[hidden] {
display: none; }
a {
background-color: transparent; }
a:active,
a:hover {
outline-width: 0; }
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted; }
b,
strong {
font-weight: inherit; }
b,
strong {
font-weight: bolder; }
dfn {
font-style: italic; }
h1 {
font-size: 2em;
margin: 0.67em 0; }
mark {
background-color: #ff0;
color: #000; }
small {
font-size: 80%; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
img {
border-style: none; }
svg:not(:root) {
overflow: hidden; }
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
figure {
margin: 1em 40px; }
hr {
box-sizing: content-box;
height: 0;
overflow: visible; }
button, .amely-button,
input,
select,
textarea {
font: inherit; }
optgroup {
font-weight: bold; }
button, .amely-button,
input,
select {
overflow: visible; }
button, .amely-button,
input,
select,
textarea {
margin: 0; }
button, .amely-button,
select {
text-transform: none; }
button, .amely-button,
[type="button"],
[type="reset"],
[type="submit"] {
cursor: pointer; }
[disabled] {
cursor: default; }
button, .amely-button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button; }
button::-moz-focus-inner, .amely-button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
button:-moz-focusring, .amely-button:-moz-focusring,
input:-moz-focusring {
outline: 1px dotted ButtonText; }
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal; }
textarea {
overflow: auto; }
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
padding: 0; }
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto; }
[type="search"] {
-webkit-appearance: textfield; }
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
html {
box-sizing: border-box; }
*,
*::before,
*::after {
box-sizing: inherit; }
@-ms-viewport {
width: device-width; }
html {
font-size: 16px;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: transparent; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #373a3c;
background-color: #fff; }
[tabindex="-1"]:focus {
outline: none !important; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: .5rem; }
p {
margin-top: 0;
margin-bottom: 1rem; }
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #818a91; }
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit; }
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem; }
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0; }
dt {
font-weight: bold; }
dd {
margin-bottom: .5rem;
margin-left: 0; }
blockquote {
margin: 0 0 1rem; }
a {
color: #0275d8;
text-decoration: none; }
a:focus, a:hover {
color: #014c8c;
text-decoration: none; }
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none; }
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
color: inherit;
text-decoration: none; }
a:not([href]):not([tabindex]):focus {
outline: none; }
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto; }
figure {
margin: 0 0 1rem; }
img {
vertical-align: middle; }
[role="button"] {
cursor: pointer; }
a,
area,
button,
.amely-button,
[role="button"],
input,
label,
select,
summary,
textarea {
-ms-touch-action: manipulation;
touch-action: manipulation; }
table {
border-collapse: collapse;
background-color: transparent; }
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #818a91;
text-align: left;
caption-side: bottom; }
th {
text-align: left; }
label {
display: inline-block;
margin-bottom: .5rem; }
button:focus, .amely-button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color; }
input,
button,
.amely-button,
select,
textarea {
margin: 0;
line-height: inherit;
border-radius: 0; }
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
cursor: not-allowed; }
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox; }
textarea {
resize: vertical; }
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0; }
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit; }
input[type="search"] {
-webkit-appearance: none; }
output {
display: inline-block; }
[hidden] {
display: none !important; }
html {
box-sizing: border-box; }
*,
*:before,
*:after { box-sizing: inherit; } h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 0.5rem;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit; }
h1, .h1 {
font-size: 2.5rem; }
h2, .h2 {
font-size: 2rem; }
h3, .h3 {
font-size: 1.75rem; }
h4, .h4 {
font-size: 1.5rem; }
h5, .h5 {
font-size: 1.25rem; }
h6, .h6 {
font-size: 1rem; }
.lead {
font-size: 1.25rem;
font-weight: 300; }
.display-1 {
font-size: 6rem;
font-weight: 300; }
.display-2 {
font-size: 5.5rem;
font-weight: 300; }
.display-3 {
font-size: 4.5rem;
font-weight: 300; }
.display-4 {
font-size: 3.5rem;
font-weight: 300; }
hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1); }
small,
.small {
font-size: 80%;
font-weight: normal; }
mark,
.mark {
padding: 0.2em;
background-color: #fcf8e3; }
.list-unstyled {
padding-left: 0;
list-style: none; }
.list-inline {
padding-left: 0;
list-style: none; }
.list-inline-item {
display: inline-block; }
.list-inline-item:not(:last-child) {
margin-right: 5px; }
.initialism {
font-size: 90%;
text-transform: uppercase; }
.blockquote {
padding: 0.5rem 1rem;
margin-bottom: 1rem;
font-size: 1.25rem;
border-left: 0.25rem solid #eceeef; }
.blockquote-footer {
display: block;
font-size: 80%;
color: #818a91; }
.blockquote-footer::before {
content: "\2014 \00A0"; }
.blockquote-reverse {
padding-right: 1rem;
padding-left: 0;
text-align: right;
border-right: 0.25rem solid #eceeef;
border-left: 0; }
.blockquote-reverse .blockquote-footer::before {
content: ""; }
.blockquote-reverse .blockquote-footer::after {
content: "\00A0 \2014"; }
.img-fluid {
display: block;
max-width: 100%;
height: auto; }
.img-rounded {
border-radius: 0.3rem; }
.img-thumbnail {
padding: 0.25rem;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0.25rem;
transition: all .2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto; }
.img-circle {
border-radius: 50%; }
.figure {
display: inline-block; }
.figure-img {
margin-bottom: 0.5rem;
line-height: 1; }
.figure-caption {
font-size: 90%;
color: #818a91; }
code,
kbd,
pre,
samp {
font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
code {
padding: 0.2rem 0.4rem;
font-size: 90%;
color: #bd4147;
background-color: #f7f7f9;
border-radius: 0.25rem; }
kbd {
padding: 0.2rem 0.4rem;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 0.2rem; }
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold; }
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
font-size: 90%;
color: #373a3c; }
pre code {
padding: 0;
font-size: inherit;
color: inherit;
background-color: transparent;
border-radius: 0; }
.pre-scrollable {
max-height: 340px;
overflow-y: scroll; }
.table {
width: 100%;
max-width: 100%;
margin-bottom: 1rem; }
.table th,
.table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #eceeef; }
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #eceeef; }
.table tbody + tbody {
border-top: 2px solid #eceeef; }
.table .table {
background-color: #fff; }
.table-sm th,
.table-sm td {
padding: 0.3rem; }
.table-bordered {
border: 1px solid #eceeef; }
.table-bordered th,
.table-bordered td {
border: 1px solid #eceeef; }
.table-bordered thead th,
.table-bordered thead td {
border-bottom-width: 2px; }
.table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.05); }
.table-hover tbody tr:hover {
background-color: rgba(0, 0, 0, 0.075); }
.table-active,
.table-active > th,
.table-active > td {
background-color: rgba(0, 0, 0, 0.075); }
.table-hover .table-active:hover {
background-color: rgba(0, 0, 0, 0.075); }
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
background-color: rgba(0, 0, 0, 0.075); }
.table-success,
.table-success > th,
.table-success > td {
background-color: #dff0d8; }
.table-hover .table-success:hover {
background-color: #d0e9c6; }
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
background-color: #d0e9c6; }
.table-info,
.table-info > th,
.table-info > td {
background-color: #d9edf7; }
.table-hover .table-info:hover {
background-color: #c4e3f3; }
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
background-color: #c4e3f3; }
.table-warning,
.table-warning > th,
.table-warning > td {
background-color: #fcf8e3; }
.table-hover .table-warning:hover {
background-color: #faf2cc; }
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
background-color: #faf2cc; }
.table-danger,
.table-danger > th,
.table-danger > td {
background-color: #f2dede; }
.table-hover .table-danger:hover {
background-color: #ebcccc; }
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
background-color: #ebcccc; }
.thead-inverse th {
color: #fff;
background-color: #373a3c; }
.thead-default th {
color: #55595c;
background-color: #eceeef; }
.table-inverse {
color: #eceeef;
background-color: #373a3c; }
.table-inverse th,
.table-inverse td,
.table-inverse thead th {
border-color: #55595c; }
.table-inverse.table-bordered {
border: 0; }
.table-responsive {
display: block;
width: 100%;
min-height: .01%;
overflow-x: auto; }
.table-reflow thead {
float: left; }
.table-reflow tbody {
display: block;
white-space: nowrap; }
.table-reflow th,
.table-reflow td {
border-top: 1px solid #eceeef;
border-left: 1px solid #eceeef; }
.table-reflow th:last-child,
.table-reflow td:last-child {
border-right: 1px solid #eceeef; }
.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
border-bottom: 1px solid #eceeef; }
.table-reflow tr {
float: left; }
.table-reflow tr th,
.table-reflow tr td {
display: block !important;
border: 1px solid #eceeef; }
abbr[title] {
text-decoration: none;
display: inline-block;
line-height: 1; }
address {
font-size: 14px;
border: 1px solid #dddddd;
padding: 20px; }
address p {
font-size: 14px; }
body {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
body.compare-opened, body.search-opened {
overflow: hidden !important; }
body.ajax-loading .main-container {
position: relative; }
body.ajax-loading .main-container:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff;
opacity: .8;
z-index: 100; }
body.ajax-loading .main-container:after {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
top: 50px;
left: 50%;
z-index: 101;
transform: scale(2) translateX(-50%); }
body.ajax-loading .main-container * {
animation: fadeOut .5s forwards;
animation-delay: 1s; }
body.no-redux {
font-family: Source Sans Pro;
font-size: 14px; }
body.no-redux .text-hightlight,
body.no-redux .select2-container--default .select2-results__option--highlighted[aria-selected],
body.no-redux #woo-quick-view .quickview-loading span:before,
body.no-redux .isw-swatches .isw-swatch--isw_text .isw-term:not(.isw-disabled):hover,
body.no-redux .product-style-hover--info .add-to-cart-btn,
body.no-redux .isw-swatches .isw-swatch--isw_text .isw-term.isw-selected {
color: #c61932; }
body.no-redux .scroll-to-top,
body.no-redux .widget-title:after,
body.no-redux .post-tags .tagcloud a:hover,
body.no-redux .widget_tag_cloud .tagcloud a:hover,
body.no-redux .widget_product_tag_cloud .tagcloud a:hover,
body.no-redux .widget_shopping_cart .button:hover, body.no-redux .widget_shopping_cart .button:focus,
body.no-redux button.alt,
body.no-redux .alt.amely-button, body.no-redux input[type="submit"].alt, body.no-redux input[type="button"].alt, body.no-redux a.button.alt, body.no-redux .tm-button.button.alt,
body.no-redux button.alt-button,
body.no-redux .alt-button.amely-button,
body.no-redux .amely-button.alt, body.no-redux input[type="submit"].alt-button, body.no-redux input[type="button"].alt-button, body.no-redux a.button.alt-button, body.no-redux .tm-button.button.alt,
body.no-redux button:hover,
body.no-redux .amely-button:hover, body.no-redux input[type="submit"]:hover, body.no-redux input[type="button"]:hover, body.no-redux a.button:hover, body.no-redux .tm-button.button:hover,
body.no-redux button:focus,
body.no-redux .amely-button:focus, body.no-redux input[type="submit"]:focus, body.no-redux input[type="button"]:focus, body.no-redux a.button:focus, body.no-redux .tm-button.button:focus,
body.no-redux .woocommerce-checkout form.checkout_coupon .button,
body.no-redux #customer_login .woocommerce-Button[name="register"],
body.no-redux form.track_order p.form-row:last-of-type .button,
body.no-redux .woocommerce .order-again .button .tm-products-filter ul li > a:after,
body.no-redux .page-header__prev-item:hover > a, body.no-redux .page-header__next-item:hover > a,
body.no-redux .product-categories-menu .cat-item a:after,
body.no-redux form.track_order p.form-row:last-of-type .button:hover,
body.no-redux .woocommerce .order-again .button:hover,
body.no-redux form.track_order p.form-row:last-of-type .button,
body.no-redux .woocommerce-checkout form.checkout_coupon .button,
body.no-redux #customer_login .woocommerce-Button[name="register"],
body.no-redux .woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li:after,
body.no-redux .woocommerce .order-again .button,
body.no-redux .ui-slider .ui-slider-handle, body.no-redux .ui-slider .ui-slider-range,
body.no-redux .amely-mailchimp .title:after,
body.no-redux .amely-products-widget .product-buttons > div a:hover,
body.no-redux .amely-products-grid-hot.enable-carousel .slick-arrow:hover:before,
body.no-redux .categories-icon-list > [class*=' col-']:hover,
body.no-redux .tm-products-filter ul li > a:after,
body.no-redux .wb-allview-formcnt .wb-allview-lettercnt .wb-wb-allview-letters:hover,
body.no-redux .wb-allview-formcnt .wb-allview-lettercnt .wb-wb-allview-letters:focus,
body.no-redux .wb-bx-controls.wb-bx-has-controls-direction .wb-bx-prev:hover,
body.no-redux .wb-bx-controls.wb-bx-has-controls-direction .wb-bx-next:hover,
body.no-redux .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a:after,
body.no-redux .wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a:after,
body.no-redux .amely-simple-banner .third-line:after,
body.no-redux .wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a:hover,
body.no-redux .wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a.active {
background-color: #c61932; }
body.no-redux button.alt, body.no-redux .alt.amely-button, body.no-redux input[type="submit"].alt, body.no-redux input[type="button"].alt, body.no-redux a.button.alt, body.no-redux .tm-button.button.alt,
body.no-redux button.alt-button,
body.no-redux .alt-button.amely-button,
body.no-redux .amely-button.alt, body.no-redux input[type="submit"].alt-button, body.no-redux input[type="button"].alt-button, body.no-redux a.button.alt-button, body.no-redux .tm-button.button.alt,
body.no-redux button:hover,
body.no-redux .amely-button:hover, body.no-redux input[type="submit"]:hover, body.no-redux input[type="button"]:hover, body.no-redux a.button:hover, body.no-redux .tm-button.button:hover,
body.no-redux button:focus,
body.no-redux .amely-button:focus, body.no-redux input[type="submit"]:focus, body.no-redux input[type="button"]:focus, body.no-redux a.button:focus, body.no-redux .tm-button.button:focus,
body.no-redux .post-tags .tagcloud a:hover,
body.no-redux .widget_tag_cloud .tagcloud a:hover,
body.no-redux .widget_product_tag_cloud .tagcloud a:hover,
body.no-redux .page-header__prev-item:hover > a, body.no-redux .page-header__next-item:hover > a,
body.no-redux .widget_shopping_cart .button:hover, body.no-redux .widget_shopping_cart .button:focus,
body.no-redux form.track_order p.form-row:last-of-type .button:hover,
body.no-redux .woocommerce .order-again .button:hover,
body.no-redux a.show-categories-menu,
body.no-redux .wb-allview-formcnt .wb-allview-lettercnt .wb-wb-allview-letters:hover,
body.no-redux .wb-allview-formcnt .wb-allview-lettercnt .wb-wb-allview-letters:focus,
body.no-redux .tm-products-widget .slick-arrow.small:focus,
body.no-redux .amely-products-widget .slick-arrow.small:focus {
border-color: #c61932; }
body.no-redux .ajax-results-wrapper .suggestion-sku,
body.no-redux .ajax-results-wrapper .suggestion-price {
color: #333333; }
body.no-redux .widget_shopping_cart .button.checkout:hover,
body.no-redux .slick-arrow:hover, body.no-redux .slick-arrow:focus,
body.no-redux .slick-dots li.slick-active button,
body.no-redux .slick-dots li.slick-active .amely-button,
body.no-redux .slick-dots button:hover,
body.no-redux .slick-dots .amely-button:hover,
body.no-redux .widget_shopping_cart .button.checkout:focus,
body.no-redux button.alt:hover,
body.no-redux .alt.amely-button:hover, body.no-redux input[type="submit"].alt:hover, body.no-redux input[type="button"].alt:hover, body.no-redux a.button.alt:hover, body.no-redux .tm-button.button.alt:hover,
body.no-redux button.alt:focus,
body.no-redux .alt.amely-button:focus, body.no-redux input[type="submit"].alt:focus, body.no-redux input[type="button"].alt:focus, body.no-redux a.button.alt:focus, body.no-redux .tm-button.button.alt:focus,
body.no-redux button.alt-button:hover,
body.no-redux .alt-button.amely-button:hover,
body.no-redux .amely-button.alt:hover, body.no-redux input[type="submit"].alt-button:hover, body.no-redux input[type="button"].alt-button:hover, body.no-redux a.button.alt-button:hover,
body.no-redux button.alt-button:focus,
body.no-redux .alt-button.amely-button:focus,
body.no-redux .amely-button.alt:focus, body.no-redux input[type="submit"].alt-button:focus, body.no-redux input[type="button"].alt-button:focus, body.no-redux a.button.alt-button:focus,
body.no-redux button,
body.no-redux .amely-button, body.no-redux input[type="submit"], body.no-redux input[type="button"], body.no-redux a.button, body.no-redux .tm-button.button,
body.no-redux .wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a {
background-color: #333333; }
body.no-redux .widget_shopping_cart .button.checkout:hover,
body.no-redux .widget_shopping_cart .button.checkout:focus,
body.no-redux button.alt:hover,
body.no-redux .alt.amely-button:hover, body.no-redux input[type="submit"].alt:hover, body.no-redux input[type="button"].alt:hover, body.no-redux a.button.alt:hover, body.no-redux .tm-button.button.alt:hover,
body.no-redux button.alt:focus,
body.no-redux .alt.amely-button:focus, body.no-redux input[type="submit"].alt:focus, body.no-redux input[type="button"].alt:focus, body.no-redux a.button.alt:focus, body.no-redux .tm-button.button.alt:focus,
body.no-redux button.alt-button:hover,
body.no-redux .alt-button.amely-button:hover,
body.no-redux .amely-button.alt:hover, body.no-redux input[type="submit"].alt-button:hover, body.no-redux input[type="button"].alt-button:hover, body.no-redux a.button.alt-button:hover,
body.no-redux button.alt-button:focus,
body.no-redux .alt-button.amely-button:focus,
body.no-redux .amely-button.alt:focus, body.no-redux input[type="submit"].alt-button:focus, body.no-redux input[type="button"].alt-button:focus, body.no-redux a.button.alt-button:focus,
body.no-redux button,
body.no-redux .amely-button, body.no-redux input[type="submit"], body.no-redux input[type="button"], body.no-redux a.button, body.no-redux .tm-button.button {
border-color: #333333; }
body.no-redux .secondary-font, body.no-redux .tm-icon-box.secondary-font .title, body.no-redux .tm-icon-box.secondary-font a {
font-family: Playfair Display; }
body.no-redux .tertiary-font, body.no-redux .tm-icon-box.tertiary-font .title, body.no-redux .tm-icon-box.tertiary-font a {
font-family: Yellowtail; }
body.no-redux h1, body.no-redux h2, body.no-redux h3, body.no-redux h4, body.no-redux h5, body.no-redux h6, body.no-redux h1 a, body.no-redux h2 a, body.no-redux h3 a, body.no-redux h4 a, body.no-redux h5 a, body.no-redux h6 a,
body.no-redux .woocommerce.single-product .product #review_form_wrapper #reply-title {
font-family: Source Sans Pro; }
body.no-redux a, body.no-redux .cookie-buttons a.cookie-btn,
body.no-redux .header-wishlist .add-to-cart-btn .button {
color: #333333; }
body.no-redux a:hover, body.no-redux a:focus,
body.no-redux .site-mobile-menu .menu-show-all > a,
body.no-redux .topbar .switcher .nice-select:hover .current,
body.no-redux .topbar .switcher .nice-select:hover:after,
body.no-redux .topbar .switcher .nice-select .option:hover,
body.no-redux .cookie-wrapper a,
body.no-redux .entry-meta .meta-author a,
body.no-redux .shop-loop-head .switcher.active,
body.no-redux .shop-loop-head .switcher:hover,
body.no-redux .product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
body.no-redux .product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a,
body.no-redux .woocommerce.single-product .product .summary .product-meta-buttons > div a:hover,
body.no-redux .woocommerce.single-product .product .summary table.product_meta td.value a:hover,
body.no-redux .woocommerce.single-product .product .summary table.product-share td.value a:hover,
body.no-redux .wc-tabs li.active > a,
body.no-redux .category-grid-item:hover .product-category-content .category-link a,
body.no-redux .category-grid-item:hover .product-category-content .category-link:after {
color: #c61932; }
body.no-redux .cookie-buttons a:hover,
body.no-redux .header-phone:hover {
background: #c61932; }
body.no-redux .widget_calendar tbody td a:hover,
body.no-redux .header-phone {
border-color: #c61932; }
body.no-redux .topbar, body.no-redux .topbar a {
color: #666666; }
body.no-redux .topbar {
border-color: #eeeeee; }
body.no-redux .page-title h1,
body.no-redux .page-title a,
body.no-redux .page-title .site-breadcrumbs,
body.no-redux .page-title .site-breadcrumbs ul li:after,
body.no-redux .page-title .site-breadcrumbs .insight_core_breadcrumb a,
body.no-redux .page-title .site-breadcrumbs .insight_core_breadcrumb a:hover {
color: #111111; }
body.no-redux .page-title .page-subtitle {
color: #111111; }
body.no-redux .page-title {
background-color: #f5f5f5; }
body.no-redux .page-title:before {
background-color: transparent; }
body.no-redux .site-breadcrumbs,
body.no-redux .site-breadcrumbs ul li:after,
body.no-redux .site-breadcrumbs .insight_core_breadcrumb a {
color: #444; }
body.no-redux .site-breadcrumbs .insight_core_breadcrumb a:hover {
color: #c61932; }
body.no-redux .site-menu .menu > ul > li > a, body.no-redux .site-menu .menu > li > a {
color: #333333; }
body.no-redux .site-header {
background-color: #ffffff; }
body.no-redux .header-search > a.toggle {
color: #333333; }
body.no-redux button, body.no-redux .amely-button, body.no-redux .amely-button, body.no-redux input[type="submit"], body.no-redux input[type="button"], body.no-redux a.button {
color: #FFFFFF; }
button, .amely-button,
input[type="submit"],
input[type="button"],
a.button {
display: inline-block;
text-transform: uppercase;
font-weight: 500;
letter-spacing: .1em;
color: #ffffff;
border-radius: 0;
border: 1px solid #333333;
background-color: #333333;
padding: 10px 20px; }
button:hover, .amely-button:hover, button:focus, .amely-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
a.button:hover,
a.button:focus {
color: #ffffff;
border-color: #c61932;
background-color: #c61932; }
button:focus, .amely-button:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
a.button:focus {
outline: none; }
button.alt, .alt.amely-button,
button.alt-button,
.alt-button.amely-button,
.amely-button.alt,
input[type="submit"].alt,
input[type="submit"].alt-button,
input[type="button"].alt,
input[type="button"].alt-button,
a.button.alt,
a.button.alt-button {
color: #ffffff;
border-color: #c61932;
background-color: #c61932; }
button.alt:hover, .alt.amely-button:hover, button.alt:focus, .alt.amely-button:focus,
button.alt-button:hover,
.alt-button.amely-button:hover,
.amely-button.alt:hover,
button.alt-button:focus,
.alt-button.amely-button:focus,
.amely-button.alt:focus,
input[type="submit"].alt:hover,
input[type="submit"].alt:focus,
input[type="submit"].alt-button:hover,
input[type="submit"].alt-button:focus,
input[type="button"].alt:hover,
input[type="button"].alt:focus,
input[type="button"].alt-button:hover,
input[type="button"].alt-button:focus,
a.button.alt:hover,
a.button.alt:focus,
a.button.alt-button:hover,
a.button.alt-button:focus {
color: #ffffff;
border-color: #333333;
background-color: #333333; }
del {
color: #aaaaaa; }
dl {
margin: 0 20px; }
dd {
margin: 0 0 20px; }
h1, h2, h3, h4, h5, h6 {
color: #111111;
margin: 25px 0; }
img {
max-width: 100%; height: auto; vertical-align: top; }
input[type='text'],
input[type='number'],
input[type='email'],
input[type='search'],
input[type='password'],
input[type='tel'],
textarea {
font-size: 14px;
display: block;
padding: 9px 25px;
color: #222;
width: 100%;
background: #f7f7f7;
border: 1px solid transparent;
transition: all .3s ease-in-out; }
input[type='text']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='search']:focus,
input[type='password']:focus,
input[type='tel']:focus,
textarea:focus {
outline: none;
border-color: #c7c7c7;
box-shadow: none; }
ins {
text-decoration: none; }
label .required {
color: #ff0000;
font-size: 16px; }
.link-secret {
color: currentColor; }
.link-underline a, a.link-underline {
display: inline-block;
border-bottom: 1px solid currentColor; }
p {
font-size: 15px;
line-height: 1.6;
margin-bottom: 24px; }
.wpb_text_column p {
margin-bottom: 0; }
p:last-child {
margin-bottom: 0; }
p:empty {
display: none; }
pre {
background: #f5f5f5;
color: #666;
font-family: monospace;
font-size: 14px;
margin: 20px 0;
overflow: auto;
padding: 20px;
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
border: 0;
border-radius: 0;
border-left: 3px solid #222; }
blockquote,
blockquote p {
font-size: 18px;
line-height: 28px;
font-style: italic; }
blockquote {
border-left: 0;
padding: 10px 0;
margin-left: 40px; }
table {
border-collapse: collapse;
border-spacing: 0;
font-size: 14px;
line-height: 2;
border-bottom: 1px solid #ededed; }
table th {
font-weight: bold; }
table thead th {
text-transform: uppercase; }
table tr > th {
padding-right: 20px; }
table td {
padding: 6px 10px 6px 0;
border-top: 1px solid #ededed; }
table tr td:first-of-type {
padding-left: 10px; } .container {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px; }
.container-fluid {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px; }
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px; }
.col-xs-is-5, .col-sm-is-5, .col-md-is-5, .col-lg-is-5, .col-xl-is-5, .col-xxl-is-5, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
width: 100%; }
.col-xs {
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-xs-1 {
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-xs-2 {
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-xs-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-xs-4 {
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-xs-5 {
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-xs-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-xs-7 {
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-xs-8 {
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-xs-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-xs-10 {
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-xs-11 {
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-xs-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-xs-0 {
right: auto; }
.pull-xs-1 {
right: 8.33333%; }
.pull-xs-2 {
right: 16.66667%; }
.pull-xs-3 {
right: 25%; }
.pull-xs-4 {
right: 33.33333%; }
.pull-xs-5 {
right: 41.66667%; }
.pull-xs-6 {
right: 50%; }
.pull-xs-7 {
right: 58.33333%; }
.pull-xs-8 {
right: 66.66667%; }
.pull-xs-9 {
right: 75%; }
.pull-xs-10 {
right: 83.33333%; }
.pull-xs-11 {
right: 91.66667%; }
.pull-xs-12 {
right: 100%; }
.push-xs-0 {
left: auto; }
.push-xs-1 {
left: 8.33333%; }
.push-xs-2 {
left: 16.66667%; }
.push-xs-3 {
left: 25%; }
.push-xs-4 {
left: 33.33333%; }
.push-xs-5 {
left: 41.66667%; }
.push-xs-6 {
left: 50%; }
.push-xs-7 {
left: 58.33333%; }
.push-xs-8 {
left: 66.66667%; }
.push-xs-9 {
left: 75%; }
.push-xs-10 {
left: 83.33333%; }
.push-xs-11 {
left: 91.66667%; }
.push-xs-12 {
left: 100%; }
.offset-xs-1 {
margin-left: 8.33333%; }
.offset-xs-2 {
margin-left: 16.66667%; }
.offset-xs-3 {
margin-left: 25%; }
.offset-xs-4 {
margin-left: 33.33333%; }
.offset-xs-5 {
margin-left: 41.66667%; }
.offset-xs-6 {
margin-left: 50%; }
.offset-xs-7 {
margin-left: 58.33333%; }
.offset-xs-8 {
margin-left: 66.66667%; }
.offset-xs-9 {
margin-left: 75%; }
.offset-xs-10 {
margin-left: 83.33333%; }
.offset-xs-11 {
margin-left: 91.66667%; }
.tm-grid.has-animation .grid-item {
opacity: 0; }
.tm-grid.fade-in .animate {
animation: fadeIn .95s ease forwards; }
.tm-grid.move-up .animate {
transform: translateY(200px);
animation: moveUp 0.65s ease forwards; }
.tm-grid.scale-up .animate {
transform: scale(0.6);
animation: scaleUp 0.65s ease-in-out forwards; }
.tm-grid.fall-perspective {
perspective: 1300px; }
.tm-grid.fall-perspective .animate {
transform: translateZ(400px) translateY(300px) rotateX(-90deg);
animation: fallPerspective .8s ease-in-out forwards;
transform-style: preserve-3d; }
.tm-grid.fly {
perspective: 1300px; }
.tm-grid.fly .animate {
transform: rotateX(-180deg);
transform-origin: 50% 50% -300px;
animation: fly .8s ease-in-out forwards;
transform-style: preserve-3d; }
.tm-grid.flip .animate {
transform: rotateX(-80deg);
transform-origin: 0% 0%;
animation: flip .8s ease-in-out forwards;
transform-style: preserve-3d; }
.tm-grid.helix {
perspective: 1300px; }
.tm-grid.helix .animate {
transform: rotateY(-180deg);
animation: helix .8s ease-in-out forwards;
transform-style: preserve-3d; }
.tm-grid.pop-up {
perspective: 1300px; }
.tm-grid.pop-up .animate {
transform: scale(0.4);
animation: popUp .8s ease-in forwards;
transform-style: preserve-3d; } .slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent; }
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0; }
.slick-list:focus {
outline: none; }
.slick-list.dragging {
cursor: pointer;
cursor: hand; }
.slick-slider .slick-track,
.slick-slider .slick-list {
transform: translate3d(0, 0, 0); }
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
margin-left: auto;
margin-right: auto; }
.slick-track:before, .slick-track:after {
content: "";
display: table; }
.slick-track:after {
clear: both; }
.slick-loading .slick-track {
visibility: hidden; }
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none; }
[dir="rtl"] .slick-slide {
float: right; }
.slick-slide img {
display: block; }
.slick-slide.slick-loading img {
display: none; }
.slick-slide.dragging img {
pointer-events: none; }
.slick-initialized .slick-slide {
display: block; }
.slick-loading .slick-slide {
visibility: hidden; }
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent; }
.slick-arrow.slick-hidden {
display: none; }  @keyframes widget-item-move-up {
0% {
padding-top: 100px; }
100% {
padding-top: 0; } } @keyframes widget-item-move-down {
0% {
padding-top: 0; }
100% {
padding-top: 100px; } } @keyframes widget-item-slide-out {
0% {
transform: translateX(0);
opacity: 1; }
100% {
transform: translateX(80px);
opacity: 0; } } @keyframes widget-item-slide-in {
100% {
transform: translateX(0);
opacity: 1; }
0% {
transform: translateX(80px);
opacity: 0; } } @keyframes quickview-slide-in {
0% {
transform: translate3d(-40px, 0, 0); }
100% {
transform: translate3d(0, 0, 0); } } @keyframes social-hover {
0% {
opacity: 1;
visibility: visible;
height: 0;
width: 0; }
100% {
opacity: 0;
visibility: hidden;
height: 5em;
width: 5em; } } @keyframes animate-gradient {
0% {
background-position: 0% 76%; }
50% {
background-position: 100% 25%; }
100% {
background-position: 0% 76%; } } @keyframes fadeOutDownSmall {
0% {
opacity: 1; }
100% {
opacity: 0;
transform: translate3d(0, 10px, 0); } }
.fadeOutDownSmall {
animation-name: fadeOutDownSmall; }
@keyframes fadeInUpSmall {
0% {
opacity: 0;
transform: translate3d(0, 10px, 0); }
100% {
opacity: 1;
transform: none; } }
.fadeInUpSmall {
animation-name: fadeInUpSmall; }
.list-inline {
margin: 0;
padding: 0;
list-style: none; }
.list-inline > li {
display: inline-block;
margin-right: 1em; }
.list-inline > li:last-child {
margin-right: 0; }
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
margin-top: 0;
margin-bottom: 0;
padding: 0;
border: 0; } embed,
iframe,
object {
max-width: 100%; }
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%; }
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto; }
.wp-caption .wp-caption-text {
margin: .8075em 0; }
.wp-caption-text {
text-align: center; } .gallery {
margin-bottom: 1.5em; }
.gallery-item {
display: inline-block;
width: 100%;
vertical-align: top;
text-align: center; }
.gallery-columns-2 .gallery-item {
max-width: 50%; }
.gallery-columns-3 .gallery-item {
max-width: 33.33%; }
.gallery-columns-4 .gallery-item {
max-width: 25%; }
.gallery-columns-5 .gallery-item {
max-width: 20%; }
.gallery-columns-6 .gallery-item {
max-width: 16.66%; }
.gallery-columns-7 .gallery-item {
max-width: 14.28%; }
.gallery-columns-8 .gallery-item {
max-width: 12.5%; }
.gallery-columns-9 .gallery-item {
max-width: 11.11%; }
.gallery-caption {
display: block; } .error404 {
overflow: hidden; }
.error404 .site-header {
position: absolute;
width: 100%;
left: 0;
border: none;
background-color: transparent;
margin-bottom: 0; }
.error404 .site-logo {
height: 90px; }
.area-404 {
text-align: left; }
.area-404__heading,
.area-404__sub-heading {
font-size: 72px;
line-height: 100px;
font-weight: 300;
color: #333333;
text-align: center;
margin: 0; }
.area-404__sub-heading {
margin-bottom: 50px !important; }
.area-404__content {
height: 100vh; }
.error404 .site-breadcrumbs {
display: none !important; }
.error404 .area-404__content-heading {
text-align: center;
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.3em;
line-height: 24px;
color: #696969; }
.error404 .area-404__content-heading .button {
color: #333333;
background-color: transparent;
border: none;
padding: 0; }
.error404 .area-404__content-heading .button:after {
content: '';
display: block;
width: 100%;
height: 1px;
background-color: #333333; }
.error404 .area-404__content-heading .button:hover {
color: red; }
.error404 .area-404__content-heading .button:hover:after {
background-color: red; }
.error404 .col-404 {
margin-top: 80px; }
.author-info {
text-align: center;
margin-bottom: 40px; }
.author-link {
text-transform: capitalize; }
.author-avatar {
padding-top: 30px;
text-align: center; }
.author-avatar img {
border-radius: 50%; }
.author-title {
margin-top: 0;
font-size: 18px;
margin-bottom: 15px; }
.author-bio {
margin-bottom: 14px;
font-size: 15px;
line-height: 1.8;
letter-spacing: .03em; }
.author-description {
border: 1px solid #eee;
margin-top: -50px;
padding: 70px 10px 30px 10px; }
.back-to-top {
display: block;
color: #ababab !important;
cursor: pointer;
z-index: 2;
position: fixed;
right: 30px;
bottom: 30px;
font-size: 0;
opacity: 0;
text-align: center; }
.back-to-top i {
font-size: 40px; }
.back-to-top.show {
opacity: 1; }
.back-to-top:hover {
color: #333333 !important; }
.block-list {
list-style: none;
margin-left: 0;
line-height: 2.8;
padding-left: 0; }
.block-list .title {
line-height: 1.2;
font-weight: 500;
margin-bottom: 18px;
letter-spacing: .01em;
color: #333333; } .site-breadcrumbs {
margin-top: 20px;
margin-bottom: 20px; }
.page-title .site-breadcrumbs {
margin-top: 10px;
margin-bottom: 0; }
.site-breadcrumbs ul {
margin: 0;
padding: 0;
list-style: none;
text-transform: lowercase; }
.site-breadcrumbs ul li {
display: inline-block;
font-size: 13px; }
.site-breadcrumbs ul li:after {
content: '/';
margin: 0 5px 0 10px; }
.site-breadcrumbs ul li:last-child:after {
display: none; }
.shop-display .site-breadcrumbs {
margin: 0; }
.site-breadcrumbs + .container.container {
padding-top: 0; }
.comments-area .comments-title {
font-size: 24px;
font-weight: 400;
text-align: center; }
.page .comments-area {
margin-top: 30px; }
.comment-list,
.comment-list .children {
padding-left: 0;
list-style: none; }
.comment {
margin-bottom: 30px; }
.comment-list {
margin-bottom: 60px; }
.comments-area .author-avatar {
padding-top: 0;
position: relative;
z-index: 1; }
.comment-text {
position: relative;
margin-bottom: 10px;
border-bottom: 1px solid #eeeeee;
font-size: 15px;
line-height: 1.8;
letter-spacing: .03em;
margin-top: -50px;
padding: 60px 15px 30px; }
.thecomment .reply {
display: inline-block;
margin-bottom: 5px; }
.thecomment .reply > a {
font-size: 14px;
font-weight: 600;
color: #cccccc; }
.thecomment .reply a + a {
margin-left: 10px; }
.comments-area .author {
font-size: 18px;
display: inline-block;
vertical-align: middle;
margin: 0; }
.comment-text span.date {
font-size: 14px;
display: inline-block;
vertical-align: middle;
color: #ababab;
margin-left: 15px; }
.comment-text span.date:before {
content: '';
height: 4px;
width: 4px;
display: inline-block;
vertical-align: middle;
border-radius: 100%;
background-color: #dddddd;
margin-right: 15px; }
.comment-text span.date + em {
margin-left: 10px;
font-size: 13px; }
.comment-text span.date + p {
margin-top: 20px; }
#reponse {
margin-bottom: 20px;
overflow: hidden; }
#reply-title {
font-size: 24px;
font-weight: 400;
position: relative;
text-align: center;
margin-bottom: 40px; }
#reply-title small a {
font-size: 14px;
font-weight: 400; }
#commentform {
text-align: center; }
.single-post #commentform label {
display: none; }
#commentform input[type='text'],
#commentform textarea {
background: #f7f7f7;
border: 1px solid #eeeeee;
padding: 9.5px 25px; }
#commentform input[type='text'] {
margin-bottom: 15px; }
#commentform textarea {
width: 100%;
max-width: 100%;
min-width: 100%;
outline: 0;
padding: 15px 20px;
background-clip: padding-box;
height: 200px;
margin-bottom: 20px; }
.comment-content a {
word-wrap: break-word; }
.bypostauthor {
display: block; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
margin-bottom: 30px; }
.contact-form--light input[type="text"],
.contact-form--light input[type="email"],
.contact-form--light textarea {
background: #fff; }
.cookie-wrapper {
position: fixed;
bottom: 0;
right: 0;
width: 100%;
opacity: 0;
visibility: hidden;
color: #ffffff;
z-index: 999;
background-color: rgba(0, 0, 0, 0.8);
box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2); }
.cookie-wrapper.animated {
opacity: 1;
visibility: visible; }
.cookie-inner {
padding: 20px; }
.cookie-message {
display: inline-block;
text-align: left;
padding-bottom: 25px; }
.cookie-buttons {
text-align: right; }
.cookie-buttons a.cookie-btn {
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
letter-spacing: .1em; }
.cookie-buttons .cookie-accept-btn {
background-color: #ffffff;
padding: 5px 10px; }
.cookie-buttons .cookie-accept-btn:hover {
color: #ffffff !important; }
.cookie-buttons .cookie-more-btn {
margin-left: 20px; }
.site-footer {
padding-top: 100px;
border-top: 1px solid #eeeeee; }
.site-footer > .container {
padding-bottom: 20px; }
.site-footer .menu li:last-child {
margin-bottom: 30px; }
.site-footer .widget-title:after {
background-color: #333333; }
.site-footer .mc4wp-form-fields br {
display: none; }
.site-footer .mc4wp-form .mc4wp-form-fields {
margin-bottom: 30px; }
.site-footer .mc4wp-form input[type="text"] {
display: none !important; }
.site-footer .mc4wp-form input[type="email"],
.site-footer .mc4wp-form button,
.site-footer .mc4wp-form .amely-button {
display: inline-block;
vertical-align: top;
height: 50px; }
.site-footer .mc4wp-form input[type="email"] {
width: 60%; }
.site-footer .mc4wp-form button[type="submit"], .site-footer .mc4wp-form [type="submit"].amely-button {
background-color: #aaaaaa;
color: #ffffff;
border-color: #aaaaaa;
border-radius: 0;
margin-left: -3px; }
.site-copyright {
text-align: center;
padding: 30px 0; }
.site-footer.site-footer--dark {
background-color: #111111;
color: #999999; }
.site-footer.site-footer--dark ul li > a,
.site-footer.site-footer--dark .widget_tm_contact_info p > a {
color: #999999; }
.site-footer.site-footer--dark ul li > a:hover,
.site-footer.site-footer--dark .widget_tm_contact_info p > a:hover {
color: #ffffff; }
.site-footer.site-footer--dark .site-copyright {
background-color: #111111;
border-top: 1px solid #333333; }
.site-footer.site-footer--dark .widget-title {
color: #ffffff; }
.site-footer.site-footer--dark .col-offset {
padding-left: 100px; }
.site-footer.site-footer--dark .site-copyright {
color: #999999;
background-color: #111111; }
.site-footer.site-footer--dark .site-copyright a {
color: #c61932; }
.site-footer.site-footer--dark .site-copyright a:hover {
color: #ffffff; }
.site-footer.site-footer--light {
background-color: #ffffff;
color: #999999;
border-top: 1px solid #eeeeee; }
.site-footer.site-footer--light ul li > a,
.site-footer.site-footer--light .widget_tm_contact_info p > a {
color: #999999; }
.site-footer.site-footer--light ul li > a:hover,
.site-footer.site-footer--light .widget_tm_contact_info p > a:hover {
color: #111111; }
.site-footer.site-footer--light .site-copyright {
background-color: #ffffff;
border-top: 1px solid #eeeeee; }
.site-footer.site-footer--light .site-copyright a:hover {
color: #111111; }
.site-footer.site-footer--light .widget-title {
color: #111111; }
.site-footer.site-footer--light .widget-title:after {
background-color: #d3d3d3; }
.site-footer.site-footer--light .site-copyright {
border: 1px solid #dddddd;
background-color: #ffffff; }
.site-footer.site-footer--light .site-copyright a {
color: #c61932; }
.site-footer.site-footer--light .site-copyright a:hover {
color: #111111; }
.header-login {
position: relative;
font-size: 0; }
.header-login i {
font-size: 18px; }
.header-tools.layout-base .header-login {
padding-left: 0;
padding-right: 20px; }
.header-tools.layout-base .header-login:after {
content: '';
display: inline-block;
height: 16px;
width: 1px;
margin-left: 25px;
background-color: #e0e0e0; }
.header-tools.layout-big .header-login {
padding-right: 20px; }
.header-tools.layout-big .header-login i {
font-size: 30px; }
.header-tools.layout-no-line .header-login {
padding-right: 25px; }
.site-mobile-menu .header-login {
display: none;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
background-color: rgba(239, 239, 239, 0.8);
padding: 0 20px;
margin-top: 40px; }
.site-mobile-menu .header-login a {
line-height: 40px; }
.site-mobile-menu .header-login i {
margin-right: 10px; }
.site-header {
position: relative;
border-bottom: 1px solid #efefef;
transition: all .5s ease, background 1.2s ease; }
.site-header > .container > .row {
display: table;
margin: 0;
width: 100%; }
.site-header .site-logo,
.site-header .header-tools {
display: table-cell;
vertical-align: middle; }
.site-header .site-logo a {
z-index: 1; }
.site-header .site-logo img {
padding: 10px 0;
vertical-align: middle; }
.site-header .left-col {
display: none;
z-index: 1; }
.site-header .left-col .switcher-menu .menu {
font-size: 0;
margin: 0;
padding: 0;
list-style-type: none; }
.site-header .left-col .switcher-menu .menu > li > .sub-menu.hover-back {
right: 0 !important; }
.site-header .left-col .switcher-menu .menu li {
font-size: 14px;
position: relative;
display: inline-block;
vertical-align: middle;
border-top: none;
border-right: 1px solid #e0e0e0;
padding: 0 15px; }
.site-header .left-col .switcher-menu .menu li.menu-item-has-children > a:after {
opacity: .4;
font-size: 12px;
margin-left: 5px;
content: ""; }
.site-header .left-col .switcher-menu .menu li:hover > .sub-menu {
top: 120%;
visibility: visible;
opacity: 1; }
.site-header .left-col .switcher-menu .menu li:last-child {
border-right-width: 0; }
.site-header .left-col .switcher-menu .menu li > a {
display: block;
padding: 0; }
.site-header .left-col .switcher-menu .menu li > a > i {
margin-right: 10px; }
.site-header .left-col .switcher-menu .menu li .sub-menu {
position: absolute;
top: 150%;
left: 0;
z-index: 1;
visibility: hidden;
margin: 0;
padding: 0;
min-width: 150px;
background-color: #ffffff;
box-shadow: -1px 10px 80px -15px rgba(0, 0, 0, 0.3);
opacity: 0; }
.site-header .left-col .switcher-menu .menu li .sub-menu.hover-back {
right: 100%;
left: auto !important; }
.site-header .left-col .switcher-menu .menu li .sub-menu > li {
display: block;
margin: 0;
padding: 0;
border: none;
line-height: initial; }
.site-header .left-col .switcher-menu .menu li .sub-menu > li:hover {
transform: translateX(5px); }
.site-header .left-col .switcher-menu .menu li .sub-menu > li a {
display: block;
padding: 8px 15px; }
.site-header .left-col .switcher-menu .menu li .sub-menu > li .sub-menu {
top: -1px;
left: 100%; }
.site-header .header-tools {
text-align: right; }
.site-header .header-tools > div {
display: inline-block;
vertical-align: middle;
text-align: left; }
.site-header .header-tools section {
display: inline-block;
vertical-align: middle;
margin-right: 20px;
margin-bottom: 0; }
.site-header .header-tools .widget-title {
display: none; }
.site-header.has-margin-bottom {
margin-bottom: 40px; }
.site-header.header-menu-bottom {
border-bottom: none; }
.site-header.header-menu-bottom .site-menu-wrap {
display: none;
max-height: 90px;
border-top: 1px solid #eeeeee; }
.site-header.header-menu-bottom .site-menu-wrap .site-menu .menu .children li.page_item .children,
.site-header.header-menu-bottom .site-menu-wrap .site-menu .menu .children li.page_item .sub-menu,
.site-header.header-menu-bottom .site-menu-wrap .site-menu .menu .sub-menu li.menu-item .children,
.site-header.header-menu-bottom .site-menu-wrap .site-menu .menu .sub-menu li.menu-item .sub-menu {
top: 0; }
.site-header.header-menu-bottom.sticky-header .site-menu {
width: 60%; }
.site-header.header-menu-bottom.sticky-header .site-menu .menu > ul > li,
.site-header.header-menu-bottom.sticky-header .site-menu .menu > li {
padding-top: 0;
padding-bottom: 0; }
.site-header.header-menu-bottom.sticky-header .left-col,
.site-header.header-menu-bottom.sticky-header .right-col {
width: 20%; }
.sticky-header {
position: fixed;
width: 100%;
left: 0;
top: 0;
z-index: 100;
border-bottom: none;
border-color: transparent !important;
box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
transform: translateY(-100%);
transition: opacity .5s ease, transform .5s ease; }
body.body-boxed .sticky-header {
left: 50%;
transform: translate(-50%, -100%);
max-width: 1200px !important; }
body.mobile-menu-opened .sticky-header:after,
body.mobile-wishlist-opened .sticky-header:after,
body.mobile-minicart-opened .sticky-header:after {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 1;
background-color: rgba(0, 0, 0, 0.4); }
.sticky-header.is-sticky {
opacity: 1;
transform: translate(0, 0);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); }
body.body-boxed .sticky-header.is-sticky {
transform: translate(-50%, 0); }
.admin-bar .sticky-header.is-sticky {
top: 32px; }
.header-overlap .site-header:not(.sticky-header) {
position: absolute;
width: 100%;
z-index: 1000;
background-color: transparent; }
body.mobile-menu-opened .site-header:not(.sticky-header).real-header:after,
body.mobile-wishlist-opened .site-header:not(.sticky-header).real-header:after,
body.mobile-minicart-opened .site-header:not(.sticky-header).real-header:after {
display: none; }
body.mobile-menu-opened .site-header:not(.sticky-header):after,
body.mobile-wishlist-opened .site-header:not(.sticky-header):after,
body.mobile-minicart-opened .site-header:not(.sticky-header):after {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 1;
background-color: rgba(0, 0, 0, 0.4); }
.site-header-vertical .social-links {
opacity: 0;
visibility: hidden; } .tm-instagram {
text-align: center; }
.tm-instagram-pics {
padding: 0; }
.tm-instagram-pics .item {
position: relative;
display: inline-block; }
.tm-instagram-pics .item:hover .overlay, .tm-instagram-pics .item:hover .item-info {
opacity: 1;
visibility: visible; }
.tm-instagram-pics .item:hover .play-button {
opacity: 0;
visibility: hidden; }
.tm-instagram-pics .item .play-button {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
z-index: 1;
height: 40px;
width: 40px;
line-height: 40px;
font-size: 0;
transform: translate(-50%, -50%); }
.tm-instagram-pics .item .play-button:before {
display: inline-block;
font-size: 40px;
color: #ffffff;
border-radius: 100%;
content: ""; }
.tm-instagram-pics .item .overlay {
content: '';
background: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%); }
.tm-instagram-pics .item .overlay a {
font-size: 0;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.tm-instagram-pics .item-info {
cursor: pointer;
display: block;
position: absolute;
text-align: center;
top: 50%;
left: 0;
width: 100%;
font-size: 0;
opacity: 0;
visibility: hidden;
z-index: 1;
transform: translateY(-50%);
margin: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.tm-instagram-pics .item-info > div {
font-size: 14px;
display: inline-block;
vertical-align: top;
color: #ffffff;
padding: 0 10px !important;
border: none !important; }
.tm-instagram-pics .item-info > div a {
display: inline-block !important;
color: #ffffff !important;
padding: 0 !important; }
.tm-instagram-pics .item-info > div:before {
font-size: 16px;
margin-right: 5px;
display: inline-block;
vertical-align: middle; }
.tm-instagram-pics .item-info > div.likes:before {
content: '\f387'; }
.tm-instagram-pics .item-info > div.comments:before {
content: '\f11d'; }
.tm-instagram-follow-links {
text-align: center;
font-size: 12px;
line-height: 1.2;
letter-spacing: .01em;
text-transform: uppercase;
margin-top: 20px;
margin-bottom: 0; }
.amely-loadmore-wrap {
text-align: center;
margin-top: 15px;
margin-bottom: 30px; }
.amely-loadmore-wrap .amely-loadmore-btn {
font-size: 14px;
font-weight: 600;
cursor: pointer;
text-transform: uppercase;
letter-spacing: .3em;
color: #ababab; }
.amely-loadmore-wrap.loading {
cursor: wait; }
.amely-loadmore-wrap.loading .amely-loadmore-btn:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
display: inline-block;
vertical-align: -5px;
margin-right: 10px; }
.main-container > .container,
.main-container > .site-content {
padding-top: 30px; }
.error404 .main-container .site-content,
.main-container.no-whitespace > .container,
.main-container.no-whitespace > .site-content {
padding-top: 0; }
.header-minicart {
position: relative; }
.header-tools.layout-big .header-minicart > a.toggle {
font-size: 30px; }
.header-minicart > a.toggle {
position: relative;
font-size: 18px; }
.header-minicart > a.toggle .minicart-count {
position: absolute;
top: -5px;
left: 18px;
height: 18px;
min-width: 18px;
line-height: 18px;
font-size: 12px;
font-weight: 700;
text-align: center;
border-radius: 10px;
z-index: 1;
padding: 0 5px; }
.header-minicart > a.toggle .minicart-title,
.header-minicart > a.toggle .minicart-total {
display: none; }
.header-minicart .minicart-dropdown-wrapper {
position: absolute;
top: 180%;
right: 0;
z-index: 20;
visibility: hidden;
width: 320px;
background-color: #ffffff;
box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
opacity: 0; }
.header-minicart .minicart-dropdown-wrapper.loading:before {
position: absolute;
top: 50%;
left: 50%;
z-index: 1;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
transform: translate(-50%, -50%); }
.header-minicart .minicart-dropdown-wrapper.loading:after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
background-color: #ffffff;
content: '';
opacity: .9; }
.header-minicart .widget_shopping_cart {
padding-bottom: 0;
margin-bottom: 0; }
.header-minicart .widget_shopping_cart_content {
padding: 20px; }
.header-minicart .widget_shopping_cart .widget_minicart_title {
display: block;
font-weight: 600;
text-transform: uppercase;
color: #333333;
border-bottom: 1px solid #eeeeee;
padding-bottom: 5px; }
.header-minicart .widget_shopping_cart .widget_minicart_title .undo {
visibility: hidden;
float: right;
text-transform: none;
font-weight: 400;
font-size: 11px;
opacity: 0; }
.header-minicart .widget_shopping_cart .widget_minicart_title .undo.visible {
visibility: visible;
opacity: 1; }
.header-minicart .widget_shopping_cart .widget_minicart_title .undo a {
text-decoration: underline; }
.header-minicart .widget_shopping_cart .widget_minicart_title .close-on-mobile {
float: right;
font-size: 0;
margin-right: -20px;
margin-top: -20px;
color: #222222; }
.header-minicart .widget_shopping_cart .widget_minicart_title .close-on-mobile:before {
font-size: 50px;
content: ""; }
.header-minicart .product_list_widget {
max-height: 330px; }
.header-minicart .woocommerce-mini-cart__empty-message.hidden {
display: none !important; }
.mobile-menu-btn {
margin-right: -10px; }
.mobile-menu-btn svg {
display: inline-block;
vertical-align: 0;
width: 50px;
height: 60px;
cursor: pointer;
transform: translate3d(0, 0, 0); }
.mobile-menu-btn path {
transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
fill: none;
stroke-width: 40px;
stroke-linecap: round;
stroke-dashoffset: 0; }
.mobile-menu-btn path#top, .mobile-menu-btn path#bottom {
stroke-dasharray: 240px 950px; }
.mobile-menu-btn path#middle {
stroke-dasharray: 240px 240px; }
.mobile-menu-btn.is-active path#top,
.mobile-menu-btn.is-active path#bottom {
stroke-dashoffset: -650px; }
.mobile-menu-btn.is-active path#middle {
stroke-dashoffset: -115px;
stroke-dasharray: 1px 220px; }
.site-mobile-menu {
position: fixed;
left: 0;
z-index: 1001;
display: block;
overflow-y: auto;
overflow-x: hidden;
width: 270px;
height: 100%;
background-color: #f5f5f5;
-webkit-overflow-scrolling: touch;
transform: translate3d(-100%, 0, 0);
transition: transform .25s ease, z-index .1s ease; }
.mobile-menu-opened .site-mobile-menu {
transform: translate3d(0, 0, 0); }
.mobile-search-opened .site-mobile-menu {
display: none; }
.site-mobile-menu .menu > ul,
.site-mobile-menu .menu {
position: relative;
margin: 0;
padding: 0;
list-style: none; }
.site-mobile-menu .menu-item-icon {
margin-right: 10px; }
.site-mobile-menu .menu > ul li.page_item,
.site-mobile-menu .menu li.menu-item {
display: block;
clear: both;
padding-left: 20px;
padding-right: 20px;
border-bottom: 1px solid #e6e6e6;
vertical-align: top; }
.site-mobile-menu .menu > ul li.page_item.hide,
.site-mobile-menu .menu li.menu-item.hide {
display: none; }
.site-mobile-menu .menu > ul li.page_item.over > .children,
.site-mobile-menu .menu > ul li.page_item.over > .sub-menu,
.site-mobile-menu .menu li.menu-item.over > .children,
.site-mobile-menu .menu li.menu-item.over > .sub-menu {
transform: translateX(0); }
.site-mobile-menu .menu > ul li.page_item.mega-menu .sub-menu .menu-item-object-ic_mega_menu,
.site-mobile-menu .menu li.menu-item.mega-menu .sub-menu .menu-item-object-ic_mega_menu {
padding-top: 20px;
padding-bottom: 20px; }
.site-mobile-menu .menu > ul li.page_item.mega-menu .sub-menu .menu-item-object-ic_mega_menu .open-child,
.site-mobile-menu .menu li.menu-item.mega-menu .sub-menu .menu-item-object-ic_mega_menu .open-child {
display: none; }
.site-mobile-menu .menu > ul li.page_item.mega-menu .sub-menu .mega-menu-content,
.site-mobile-menu .menu li.menu-item.mega-menu .sub-menu .mega-menu-content {
padding: 0; }
.site-mobile-menu .menu > ul li.page_item.page_item_has_children, .site-mobile-menu .menu > ul li.page_item.menu-item-has-children,
.site-mobile-menu .menu li.menu-item.page_item_has_children,
.site-mobile-menu .menu li.menu-item.menu-item-has-children {
padding-right: 0; }
.site-mobile-menu .menu > ul li.page_item > a,
.site-mobile-menu .menu li.menu-item > a {
display: block;
position: relative;
text-transform: uppercase;
font-weight: 500;
line-height: 40px;
z-index: 1; }
.site-mobile-menu .menu > ul li.page_item .open-child,
.site-mobile-menu .menu li.menu-item .open-child {
position: relative;
text-align: center;
display: inline-block;
vertical-align: middle;
float: right;
font-size: 0;
line-height: 0;
width: 40px;
z-index: 2;
background-color: rgba(239, 239, 239, 0.8); }
.site-mobile-menu .menu > ul li.page_item .open-child:before,
.site-mobile-menu .menu li.menu-item .open-child:before {
display: block;
color: #cccccc;
font-size: 20px;
line-height: 40px;
content: ""; }
.site-mobile-menu .menu > ul > li .children,
.site-mobile-menu .menu > li .sub-menu {
position: absolute;
top: 0;
left: 0;
z-index: 10;
float: left;
margin: 0;
padding: 0;
min-height: 100% !important;
width: 100% !important;
height: 100vh !important;
background-color: #f5f5f5;
list-style: none;
transform: translateX(100%); }
.site-mobile-menu .menu-back {
position: relative;
display: block;
text-align: center;
background-color: #e6e6e6;
border-bottom: 1px solid #e6e6e6; }
.site-mobile-menu .menu-back a {
text-transform: uppercase;
font-weight: 600;
line-height: 40px;
opacity: .5; }
.site-mobile-menu .menu-back:before {
position: absolute;
top: 0;
left: 15px;
display: inline-block;
font-size: 20px;
line-height: 39px;
content: ""; }
.site-mobile-menu .menu-item-tag {
font-size: 10px;
line-height: 1.2;
letter-spacing: .05em;
text-transform: lowercase;
position: absolute;
top: 50%;
right: auto;
min-width: 35px;
min-height: 16px;
text-align: center;
transform: translateY(-50%);
padding: 3px;
margin-left: 10px; }
.site-mobile-menu .menu-item-tag:after {
content: '';
display: block;
position: absolute;
top: 50%;
left: -5px;
width: 0;
height: 0;
border-style: solid;
border-width: 3.5px 5px 3.5px 0;
border-color: transparent transparent transparent transparent;
transform: translateY(-50%); }
.site-mobile-menu #mobile-searchform {
position: relative;
padding: 10px;
background-color: #e6e6e6; }
.site-mobile-menu #mobile-searchform input[type='text'] {
padding: 9px 15px; }
.site-mobile-menu #mobile-searchform button, .site-mobile-menu #mobile-searchform .amely-button {
position: absolute;
top: 50%;
right: 20px;
background-color: transparent;
border: none;
color: #aaaaaa;
font-size: 0;
padding: 0;
transform: translateY(-50%); }
.site-mobile-menu #mobile-searchform button:after, .site-mobile-menu #mobile-searchform .amely-button:after {
font-size: 25px;
line-height: 40px;
content: ""; }
.nice-select {
padding-left: 20px;
padding-right: 35px;
background-color: #f7f7f7; }
.nice-select:after {
position: absolute;
top: 50%;
right: 15px;
width: auto;
height: auto;
border: none;
pointer-events: none;
color: #696969;
transform: translateY(-50%);
margin-top: 0;
content: ""; }
.nice-select.open:after {
transform: rotate(0) translateY(-50%);
content: ""; }
.nice-select .list {
border-radius: 0;
margin-top: 0;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
transform: translateY(0); }
.nice-select .option {
min-height: 0;
line-height: initial;
padding: 8px 15px; }
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
background-color: #ffffff; }
.nice-select .option:hover {
transform: translate(5px); }
.nice-select .option.selected {
font-weight: 400; }
.offcanvas-btn {
position: relative;
display: table-cell;
vertical-align: middle;
width: 24px; }
.offcanvas-btn a {
color: #333333 !important;
display: inline-block;
vertical-align: -15px;
font-size: 24px; }
.offcanvas-btn span {
font-size: 0; }
.offcanvas-btn.on-left {
padding-right: 30px; }
.offcanvas-btn.on-right {
padding-left: 35px; }
.header-split .offcanvas-btn {
display: inline-block; }
.header-tools.layout-base .offcanvas-btn a,
.header-tools.layout-no-line .offcanvas-btn a {
font-size: 18px;
vertical-align: -5px; }
.header-tools.layout-big .offcanvas-btn a {
font-size: 30px; }
.offcanvas-close {
font-size: 0;
position: absolute;
top: 15px;
right: 15px;
color: #333333 !important;
z-index: 1; }
.offcanvas-close:before {
font-size: 25px;
content: ""; }
.offcanvas-menu .offcanvas-close {
top: 40px;
right: 40px; }
.offcanvas-sidebar {
position: fixed;
top: 0;
z-index: 1001;
width: 360px;
height: 100vh;
background-color: #ffffff;
-webkit-overflow-scrolling: touch; }
.offcanvas-sidebar.on-left {
left: 0;
box-shadow: 3px 0 15px 0 rgba(0, 0, 0, 0.05);
transform: translateX(-100%); }
.offcanvas-sidebar.on-right {
right: 0;
transform: translateX(100%);
box-shadow: -3px 0 15px 0 rgba(0, 0, 0, 0.05); }
.offcanvas-sidebar.open {
transform: translateX(0); }
.admin-bar .offcanvas-sidebar {
top: 32px; }
.offcanvas-sidebar-inner {
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
padding: 50px 40px 40px; }
.offcanvas-menu-wrapper {
display: table;
width: 100%;
height: 100%; }
.offcanvas-menu {
position: fixed;
text-align: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9999;
visibility: hidden;
overflow: hidden;
overflow-y: auto;
opacity: 0;
transform: scale(0.3);
transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
background-color: rgba(255, 255, 255, 0.9); }
.offcanvas-menu .menu {
display: table-cell;
vertical-align: middle;
margin: 0;
padding: 0;
list-style: none; }
.offcanvas-menu .menu > li {
opacity: 0;
transition: all .5s ease;
transform: translateY(50px); }
.offcanvas-menu .menu > li > a {
position: relative;
display: inline-block;
font-size: 32px;
line-height: 1.8;
margin-bottom: 20px;
color: #333333; }
.offcanvas-menu .menu > li > a:hover:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.offcanvas-menu .menu > li > a:after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 2px;
transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
background-color: #333333; }
.offcanvas-menu .menu > li .sub-menu {
display: none; }
.admin-bar .offcanvas-menu {
top: 32px; }
body.offcanvas-menu-opened .offcanvas-menu {
opacity: 1;
visibility: visible;
transform: scale(1); }
body.offcanvas-menu-opened .menu > ul > li,
body.offcanvas-menu-opened .menu > li {
opacity: 1;
transform: translateY(0); }
#menu-full-screen-menu .sub-menu {
list-style: none;
padding: 0;
font-size: 20px;
line-height: 40px; }
#menu-full-screen-menu .sub-menu li > a {
position: relative;
display: inline-block;
color: #333333; }
#menu-full-screen-menu .sub-menu li > a:hover:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
#menu-full-screen-menu .sub-menu li > a:after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 2px;
transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
background-color: #333333; }
#menu-full-screen-menu li.opened > a:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
#page-container {
position: relative;
overflow: hidden;
background-color: #ffffff; }
#page-container:after {
content: '';
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(0, 0, 0, 0.4); }
body.mobile-menu-opened #page-container:after,
body.mobile-wishlist-opened #page-container:after,
body.mobile-minicart-opened #page-container:after,
body.search-opened #page-container:after {
opacity: 1;
z-index: 999; }
body.quick-view-opened #page-container:after,
body.offcanvas-sidebar-opened #page-container:after {
opacity: 1;
z-index: 1000; }
.body-boxed #page-container {
margin: 0 auto;
max-width: 1200px; }
.page-title {
position: relative;
text-align: center;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
padding: 30px 0; }
.page-title.has-margin-bottom {
margin-bottom: 30px; }
.page-title.page-title-bg_color {
background-image: none; }
.page-title.page-title-bg_color:before {
display: none; }
.page-title:before {
content: '';
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.page-title > .container > .row {
-ms-flex-align: center;
align-items: center;
min-height: 200px; }
.page-title h1 {
font-size: 30px;
font-weight: 400;
margin-top: 0;
margin-bottom: 10px; }
.page-title + .container,
.page-title + .site-content {
padding-top: 0 !important; }
.amely-pagination, .woocommerce-pagination {
margin-bottom: 100px; }
.amely-pagination.woocommerce-pagination, .woocommerce-pagination {
margin-bottom: 30px; }
.amely-pagination ul.page-numbers, .woocommerce-pagination ul.page-numbers {
font-size: 0;
text-align: center;
list-style: none;
padding: 0;
margin: 0; }
.amely-pagination ul.page-numbers a, .woocommerce-pagination ul.page-numbers a {
color: #696969;
font-weight: 600; }
.amely-pagination ul li, .woocommerce-pagination ul li {
display: inline-block;
vertical-align: top;
text-align: center;
font-size: 14px;
border-radius: 100%;
margin-right: 5px; }
.amely-pagination ul li span, .woocommerce-pagination ul li span {
display: block;
width: 40px;
line-height: 40px;
border-radius: 100%; }
.amely-pagination .current, .woocommerce-pagination .current {
color: #ffffff;
background-color: #333333;
font-weight: 600; }
.amely-pagination ul li a, .woocommerce-pagination ul li a {
display: block;
width: 40px;
line-height: 40px;
border-radius: 100%; }
.amely-pagination ul li a:hover, .woocommerce-pagination ul li a:hover {
color: #ffffff;
background-color: #444444;
transition: all 0.5s ease; }
.amely-pagination .prev, .woocommerce-pagination .prev,
.amely-pagination .next, .woocommerce-pagination .next {
position: relative;
text-transform: uppercase;
letter-spacing: .05em; }
.amely-pagination .prev:before, .woocommerce-pagination .prev:before,
.amely-pagination .next:before, .woocommerce-pagination .next:before {
position: absolute;
top: 50%;
left: 50%;
opacity: 1;
visibility: hidden;
font-size: 18px;
color: #ffffff;
transform: translate(-50%, -50%); }
.amely-pagination .prev:hover, .woocommerce-pagination .prev:hover,
.amely-pagination .next:hover, .woocommerce-pagination .next:hover {
font-size: 0; }
.amely-pagination .prev:hover:before, .woocommerce-pagination .prev:hover:before,
.amely-pagination .next:hover:before, .woocommerce-pagination .next:hover:before {
opacity: 1;
visibility: visible;
transition: all 0.5s ease; }
.amely-pagination .prev:before, .woocommerce-pagination .prev:before {
content: ""; }
.amely-pagination .next:before, .woocommerce-pagination .next:before {
content: ""; }
.woocommerce-pagination {
margin-top: 30px; }
.woocommerce-pagination .next:before,
.woocommerce-pagination .prev:before {
display: inline-block;
vertical-align: middle;
font-size: 16px; }
.woocommerce-pagination .next:before {
content: '\f105'; }
.woocommerce-pagination .prev:before {
content: '\f104'; }
.insight-popup .insight-popup-never-show {
margin-left: 15px;
margin-bottom: 5px; }
.insight-popup button.mfp-close, .insight-popup .mfp-close.amely-button {
background-color: #ffffff; }
.insight-popup button.mfp-close:before, .insight-popup .mfp-close.amely-button:before {
font-size: 40px;
content: ""; }
.masonry-container {
opacity: 0; }
.masonry-container.loaded {
opacity: 1; }
.post {
margin-bottom: 60px; }
.post.masonry-item {
padding: 0 15px; }
.post.masonry-item.grid-sizer-2 {
width: 50%; }
.post.masonry-item.grid-sizer-3 {
width: 33.333333%; }
.byline,
.updated:not(.published) {
display: none; }
.single .byline,
.group-blog .byline {
display: inline; }
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none; }
.post-audio iframe {
width: 100%;
height: 150px; }
.post_format-post-format-quote .entry-body {
display: none; }
.post-quote {
position: relative;
background: #f7f7f7;
padding: 63px 20px 52px; }
.post-quote > h2 {
font-size: 30px;
margin-top: 0; }
.post-quote:before {
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABCCAMAAAAon9sQAAAAM1BMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u6Q4Jt8AAAAEHRSTlMAECAwQFBgcICQoLDA0ODwVOCoyAAAAWlJREFUeAHt19Gq5CAQhOEycUzHdLTf/2n3cteZ1So4A4eB+W8DnyghaeExr+PfLBZlAEsrkmwd1MqydVLrkC2n1ilbnVouW5GY1XQrMyt0q1Brly2jVpati1omW/5Gq1PLZSveae3M6rqVmRW6Vai1yZZRK/+KdVHrkC2nlv2K1al1ylZQyz/f2t5oZTwXYzemuWCNfa2v9SFW+4GVY8x1a/+BRU/DFhPrWKJWXQw6Yw+6gxZjj6l1vv4fx/bFDEBWNbbFPqUy+6xu8dQlvxGRMHYtLzHjyZOPeQn1uFKPp4xR94y6yapHhLjF/V6vuvniLjqULF4rfx+XK/5TxWu59umMbGbXzYdVAMWs+nLk02YvctNsIFZLspWZtUO1ThCrQLVuEKtCte5ErApiDdTSOqBanrC0eoZqGbC0aoJo3RlLy3dAs1oBFlavG6BZ1wOYW60OjxdWv0qa/X2bV8sJALW6u5XJKfwBmBPAfVq03noAAAAASUVORK5CYII=);
position: absolute;
top: 0;
left: -15px;
z-index: 0; }
.post-quote .source-name {
font-weight: 600; }
.post-quote .source-name a.source {
color: currentColor; }
.post-quote .source-name span {
position: relative;
color: #333333;
margin-right: 5px;
padding-left: 35px; }
.post-quote .source-name span:before {
background: currentColor;
content: '';
display: inline-block;
position: absolute;
left: 0;
top: 50%;
width: 30px;
height: 1px; }
.post-quote .source-name span:after {
content: '.'; }
.post-quote .source-name em {
position: relative;
color: #999999;
font-style: italic;
font-size: 13px;
font-weight: 400;
z-index: 2; }
.post-quote .source-name a.post-link {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
font-size: 0; }
.masonry-item .post-quote .source-name em {
display: block; }
.entry-header.single-nav-on {
position: relative; }
.entry-header.single-nav-on .entry-title {
width: calc(100% - 60px); }
.entry-thumbnail {
margin-bottom: 20px; }
.post-related .entry-thumbnail {
margin-bottom: 20px; }
.entry-thumbnail .post-thumb {
overflow: hidden; }
.entry-thumbnail img {
-webkit-backface-visibility: hidden; }
.entry-thumbnail img:hover {
transform: scale(1.05); }
.entry-thumbnail .slick-slider.slider {
opacity: 0;
visibility: hidden;
transition: opacity .4s ease, height .4s ease; }
.entry-thumbnail .slick-slider.slider.slick-initialized {
opacity: 1;
visibility: visible; }
.entry-thumbnail .slick-slider.slider img {
margin: 0 auto; }
.entry-thumbnail .slick-slider.slider img:hover {
transform: scale(1); }
.entry-thumbnail .slick-slider.slider .slick-slide a {
margin: 0; }
.entry-thumbnail .slick-slider.slider .slick-arrow {
opacity: .6;
visibility: visible; }
.entry-thumbnail .slick-slider.slider .slick-arrow.slick-prev {
left: 0; }
.entry-thumbnail .slick-slider.slider .slick-arrow.slick-next {
right: 0; }
.entry-thumbnail .slick-slider.slider .single-image a:focus {
outline: none; }
.entry-title {
font-size: 18px;
font-weight: 500;
line-height: 1.5;
word-wrap: break-word;
margin-top: 0;
margin-bottom: 10px; }
.entry-title a {
font-weight: 500; }
.post.sticky .entry-title a:before {
content: "";
margin-right: 10px; }
.single .entry-title {
font-size: 30px; }
.post-related .post .entry-title {
font-size: 18px;
margin-bottom: 10px; }
.post-related .post .entry-title a {
font-weight: 500; }
.entry-meta {
margin-bottom: 15px; }
.entry-meta span {
font-size: 14px;
display: inline-block;
line-height: 1.3em;
margin-right: 25px; }
.entry-meta .vcard {
margin: 0; }
.single .entry-meta {
margin-bottom: 20px; }
.entry-meta .meta-date a,
.entry-meta .meta-comments a,
.entry-meta .meta-author a,
.entry-meta .meta-featured-post a,
.entry-meta .meta-categories a {
color: #999999; }
.entry-meta .meta-date:before,
.entry-meta .meta-comments:before,
.entry-meta .meta-author:before,
.entry-meta .meta-featured-post:before,
.entry-meta .meta-categories:before {
display: inline-block;
font-size: 16px;
color: #999999;
margin-right: 8px; }
.entry-meta .meta-date:before {
content: ""; }
.entry-meta .meta-comments:before {
content: ""; }
.entry-meta .meta-author:before {
content: ""; }
.entry-meta .meta-featured-post:before {
content: ""; }
.entry-meta .meta-categories:before {
content: ""; }
.entry-content {
word-wrap: break-word;
margin-bottom: 20px; }
.single .entry-content {
margin-bottom: 40px; }
.page-links {
margin-bottom: 15px; }
.page-links > span {
display: inline-block;
vertical-align: top;
margin-right: 10px; }
.page-links > span:not(.page-links-title) {
border-bottom: 1px dotted #666666; }
.page-links a {
display: inline-block;
vertical-align: top;
margin-right: 10px; }
.readmore-button {
font-size: 12px;
font-weight: 600;
letter-spacing: .1em;
vertical-align: middle;
text-transform: uppercase;
color: #333333; }
.readmore-button:before {
display: inline-block;
content: '';
vertical-align: middle;
width: 30px;
height: 1px;
background-color: #333333;
margin-right: 10px; }
.post-related {
margin-bottom: 30px; }
.post-related__title {
text-align: center;
font-size: 24px;
font-weight: 400;
margin-bottom: 30px; }
.post-single-hr {
margin: 22px 0 32px 0; }
.post-share {
margin-bottom: 15px; }
.share-list {
margin-bottom: 0; }
.share-list__title {
font-size: 16px;
font-weight: 400;
margin-top: 0;
margin-bottom: 0;
margin-right: 20px; }
.share-list__item {
font-size: 16px; }
.share-list__item > a {
color: currentColor; }
.share-list__item:not(:last-child) {
margin-right: 15px; }
.post-tags .tagcloud .tag-cloud__item:after {
content: '/';
font-size: 14px;
margin-right: 5px; }
.post-tags .tagcloud .tag-cloud__item:last-child:after {
display: none; }
.header-search {
position: relative;
display: inline-block; }
.header-search.search-style-input input.fake-input {
display: none;
vertical-align: middle;
letter-spacing: .1em;
z-index: 1;
background-color: transparent;
border: none;
border-bottom: 2px solid #efefef;
padding-left: 0;
padding-right: 0;
padding-bottom: 5px; }
.header-search.search-style-input > a.toggle {
display: inline-block;
vertical-align: middle;
margin-left: -25px; }
.site-header .right-col.layout-big .header-search.search-style-input input.fake-input {
display: none; }
.site-header.header-menu-bottom .right-col .header-search.search-style-input,
.site-header.header-menu-left .right-col .header-search.search-style-input {
padding-right: 20px; }
.site-header.header-menu-bottom.is-sticky .header-search.search-style-input input.fake-input {
display: none; }
.site-header.header-menu-bottom.is-sticky .header-search.search-style-input .header-tools.layout-big > a.toggle i {
vertical-align: -5px; }
.header-search > a.toggle {
font-size: 18px;
position: relative; }
.header-search > a.toggle span {
font-size: 0;
position: absolute;
top: 0;
left: 0; }
.header-search > a.toggle > i:before {
display: inline-block; }
.header-tools.layout-base .header-search {
padding-right: 20px; }
.header-tools.layout-base .header-search:after {
content: '';
display: inline-block;
height: 16px;
width: 1px;
margin-left: 15px;
background-color: #e0e0e0; }
.header-tools.layout-big .header-search {
padding-right: 30px; }
.header-tools.layout-big .header-search > a.toggle {
font-size: 30px; }
.header-tools.layout-no-line .header-search {
padding-right: 25px; }
.site-header .left-col .header-search {
display: table-cell;
vertical-align: middle;
position: relative;
z-index: 1; }
.site-header .left-col .header-search i:before {
vertical-align: -3px; }
.site-header.header-menu-bottom.is-sticky .header-tools.layout-big .header-search > a.toggle {
font-size: 30px;
margin-left: 0; }
.site-header.header-menu-bottom.is-sticky .header-tools.layout-only-mini-cart .header-search {
padding-right: 30px; }
.site-header.header-menu-bottom.is-sticky .header-tools.layout-only-mini-cart .header-search > a.toggle {
font-size: 30px;
margin-left: 0; }
.site-header.header-menu-bottom.is-sticky .header-tools.layout-only-mini-cart .header-search > a.toggle i {
vertical-align: -5px; }
.site-header.header-menu-bottom .site-menu-wrap .header-search {
position: absolute;
top: 50%;
left: auto;
right: auto;
transform: translateY(-50%);
margin-left: 20px; }
.site-header.header-menu-bottom .site-menu-wrap .header-search input.fake-input {
width: 200px; }
.search-form {
display: table;
width: 90%; }
.search-form-wrapper {
pointer-events: none;
position: fixed;
top: 0;
left: 100%;
overflow: hidden;
width: 100%;
height: 100vh;
background-color: #ffffff;
z-index: 1001;
padding: 40px;
transition: transform .5s ease-out;
transition-delay: .4s; }
.search-form-wrapper:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background: #ffffff;
transition: transform .5s ease-out; }
.search-form-wrapper.search-loading input.search-input {
margin: 0 auto;
background-image: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg); }
.search-form-wrapper.search--open {
pointer-events: auto;
transform: translate3d(-100%, 0, 0);
transition-delay: 0s; }
.search-form-wrapper.search--open:after {
transform: translate3d(100%, 0, 0);
transition-delay: .4s; }
.search-form-wrapper input.search-input {
font-size: 3vw;
display: table-cell;
vertical-align: middle;
line-height: 1;
width: 95%;
border: none;
border-bottom: 2px solid #222222;
background: #ffffff none no-repeat right center;
background-size: 30px;
padding: 5px 0; }
.search-form-wrapper .select2 {
font-size: 3vw;
display: table-cell;
vertical-align: middle;
line-height: 1;
border-bottom: 2px solid #222222;
width: 30% !important; }
.search-form-wrapper .select2-container--default .select2-selection--single {
height: 3vw;
border: none;
border-radius: 0;
background-color: #ffffff !important; }
.search-form-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #dcdcdc;
line-height: 3.5vw; }
.search-form-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered:after {
position: absolute;
top: 50%;
right: 0;
font-size: 30px;
content: "";
transform: translateY(-50%); }
.search-form-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
display: none; }
.search-form-wrapper input.search-input::-webkit-input-placeholder {
color: #dcdcdc; }
.search-form-wrapper input.search-input::-moz-placeholder {
color: #dcdcdc; }
.search-form-wrapper input.search-input:-ms-input-placeholder {
color: #dcdcdc; }
.search-form-wrapper input.search-input::-webkit-search-cancel-button,
.search-form-wrapper input.search-input::-webkit-search-decoration {
-webkit-appearance: none; }
.search-form-wrapper select {
display: none; }
.search-form-wrapper #search-btn {
display: none; }
.search-form-wrapper .search-description {
font-size: 13px;
color: #999999;
padding: 10px 0; }
.search-form-wrapper .search-description span {
display: inline-block;
margin-right: 20px; }
.search-form-wrapper .btn-search-close {
cursor: pointer;
position: fixed;
top: 40px;
right: 40px;
transition: opacity .5s;
transition-delay: .3s; }
.search-form-wrapper .btn-search-close.btn--hidden {
opacity: 0;
visibility: hidden; }
.search-form-wrapper .btn-search-close i {
font-size: 60px;
z-index: 1001;
color: #222222; }
.search-form-wrapper .search-results-wrapper .amely-scroller-pane {
z-index: 2; }
.search-form-wrapper .search-results-wrapper .search-view-all {
display: inline-block;
font-weight: 500;
text-transform: uppercase;
padding: 10px 20px; }
.search-form-wrapper .search-results-wrapper .search-view-all .suggestion-title {
font-size: 14px; }
.search-form-wrapper .search-results-wrapper .autocomplete-suggestions {
display: block !important;
max-height: 60% !important;
z-index: 1 !important; }
.search-form-wrapper .search-results-wrapper .autocomplete-suggestion {
cursor: pointer;
display: inline-block;
vertical-align: top;
width: 50%;
border-top: 1px solid #eeeeee;
padding: 20px; }
.search-form-wrapper .search-results-wrapper .autocomplete-suggestion.autocomplete-selected {
background-color: #fafafa; }
.search-form-wrapper .search-results-wrapper .autocomplete-suggestion:last-child {
border-bottom: 1px solid #eeeeee; }
.search-form-wrapper .search-results-wrapper .autocomplete-suggestion > div {
display: table-cell;
vertical-align: top; }
.search-form-wrapper .search-results-wrapper .suggestion-thumb {
padding-right: 20px;
width: 130px; }
.search-form-wrapper .search-results-wrapper .suggestion-title {
display: block;
margin-top: 0;
margin-bottom: 15px;
font-size: 20px; }
.search-form-wrapper .search-results-wrapper .suggestion-title a {
font-weight: 500; }
.search-form-wrapper .search-results-wrapper .suggestion-title ins {
text-decoration: underline; }
.search-form-wrapper .search-results-wrapper .suggestion-sku,
.search-form-wrapper .search-results-wrapper .suggestion-price {
display: block;
margin-bottom: 10px;
font-weight: 300;
font-size: 18px; }
.search-form-wrapper .ajax-search-notice {
font-size: 20px; }
.select2-dropdown {
border-radius: 0;
border: 1px solid #eeeeee;
box-sizing: border-box;
display: block;
box-shadow: -2px 2px 80px -27px rgba(0, 0, 0, 0.3); }
.select2-search--dropdown {
padding: 10px 15px; }
.select2-container--default .select2-selection--single {
outline: none; }
.select2-container--default .select2-selection--single .select2-selection__rendered {
outline: none; }
.select2-container--default .select2-search--dropdown .select2-search__field {
padding: 10px;
background-color: transparent;
border: 1px solid #eeeeee; }
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
border-color: #c7c7c7; }
.select2-results__option {
position: relative;
padding: 10px 15px; }
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: transparent;
color: #333333;
font-weight: 500; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: #fbfbfb;
color: #333333; } .single-nav-wrapper {
position: absolute;
top: 0;
right: 0;
font-size: 0;
z-index: 1; }
.single-nav__prev-item,
.single-nav__next-item {
text-align: center;
display: inline-block;
vertical-align: middle;
font-size: 16px; }
.single-nav__prev-item:hover .item-wrapper, .single-nav__prev-item:focus .item-wrapper,
.single-nav__next-item:hover .item-wrapper,
.single-nav__next-item:focus .item-wrapper {
opacity: 1;
visibility: visible; }
.single-nav__prev-item:hover > a, .single-nav__prev-item:focus > a,
.single-nav__next-item:hover > a,
.single-nav__next-item:focus > a {
color: #333333; }
.single-nav__prev-item > a,
.single-nav__next-item > a {
font-size: 34px;
color: #ababab; }
.single-nav__prev-item .item-wrapper,
.single-nav__next-item .item-wrapper {
display: none;
position: absolute;
top: 120%;
min-width: 250px;
text-align: left;
opacity: 0;
visibility: hidden;
padding: 10px;
background-color: #ffffff;
box-shadow: -2px 2px 81px -20px rgba(0, 0, 0, 0.3); }
.single-nav__prev-item .item-wrapper div,
.single-nav__next-item .item-wrapper div {
display: table-cell;
vertical-align: top;
line-height: 1; }
.single-nav__prev-item .item-wrapper div.thumbnail,
.single-nav__next-item .item-wrapper div.thumbnail {
width: 70px;
padding-right: 10px; }
.single-nav__prev-item .item-wrapper a.title,
.single-nav__next-item .item-wrapper a.title {
font-size: 14px;
line-height: 1.5;
display: block; }
.single-nav__prev-item .item-wrapper span.meta-date,
.single-nav__next-item .item-wrapper span.meta-date {
display: block;
font-size: 12px;
margin-top: 10px;
color: #ababab; }
.single-nav__prev-item .item-wrapper span.meta-date:before,
.single-nav__next-item .item-wrapper span.meta-date:before {
margin-right: 5px;
content: ""; }
.single-nav__prev-item .item-wrapper span.price,
.single-nav__next-item .item-wrapper span.price {
display: block;
font-size: 14px !important;
margin-bottom: 0 !important; }
.single-nav__prev-item .item-wrapper span.price del,
.single-nav__next-item .item-wrapper span.price del {
margin-right: 5px !important; }
.single-nav__prev-item {
margin-right: 5px; }
.single-nav__prev-item .item-wrapper {
left: 20px; }
.single-nav__prev-item:hover .item-wrapper {
left: 0; }
.single-nav__next-item {
margin-left: 5px; }
.single-nav__next-item .item-wrapper {
right: 20px; }
.single-nav__next-item:hover .item-wrapper {
right: 0; }
.site-menu {
position: relative;
display: table-cell;
vertical-align: middle; }
.site-menu.menu-align-center {
text-align: center; }
.site-menu.menu-align-right {
text-align: right; }
.site-menu.menu-hover-top .menu > ul > li > a:after,
.site-menu.menu-hover-top .menu > li > a:after {
top: -25px;
bottom: auto; }
.site-menu .menu > ul,
.site-menu .menu {
margin: 0;
padding: 0;
list-style: none;
font-size: 0; }
.site-menu .menu-item-icon {
margin-right: 10px; }
.site-menu .menu > ul > li,
.site-menu .menu > li {
position: relative;
display: inline-block;
vertical-align: top;
font-size: 14px;
padding: 0 25px; }
.site-menu .menu > ul > li > a,
.site-menu .menu > li > a {
position: relative;
display: inline-block;
text-transform: uppercase;
font-size: 14px;
line-height: 1.5;
letter-spacing: .1em; }
.site-menu .menu > ul > li > a:after,
.site-menu .menu > li > a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%; }
.site-menu .menu > ul > li > a > i,
.site-menu .menu > li > a > i {
margin-right: 10px; }
.site-menu .menu li.page_item:hover > a:after,
.site-menu .menu li.menu-item:hover > a:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.site-menu .menu li.page_item:hover > .children,
.site-menu .menu li.page_item:hover > .sub-menu,
.site-menu .menu li.menu-item:hover > .children,
.site-menu .menu li.menu-item:hover > .sub-menu {
display: block; }
.site-menu .menu li.page_item.page_item_has_children > a, .site-menu .menu li.page_item.menu-item-has-children > a,
.site-menu .menu li.menu-item.page_item_has_children > a,
.site-menu .menu li.menu-item.menu-item-has-children > a {
padding-right: 10px; }
.site-menu .menu li.page_item.page_item_has_children > a:before, .site-menu .menu li.page_item.menu-item-has-children > a:before,
.site-menu .menu li.menu-item.page_item_has_children > a:before,
.site-menu .menu li.menu-item.menu-item-has-children > a:before {
font-size: 12px;
position: absolute;
top: 50%;
right: -2px;
opacity: .6;
transform: translateY(-50%);
content: ""; }
.site-menu .menu li.current_page_item > a:after,
.site-menu .menu li.current-menu-item > a:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.site-menu .menu > ul > li .children,
.site-menu .menu > li .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
background-color: #ffffff;
box-shadow: -2px 2px 81px -20px rgba(0, 0, 0, 0.3);
list-style: none;
text-align: left;
animation-duration: .6s;
transition: left .5s ease, right .5s ease;
margin: 0;
padding: 10px 0;
z-index: 999; }
.site-menu .menu > ul > li .children.hover-back,
.site-menu .menu > li .sub-menu.hover-back {
right: 0;
left: auto; }
.site-menu .menu > ul > li .children li.page_item,
.site-menu .menu > li .sub-menu li.menu-item {
position: relative;
display: block;
line-height: 1.5; }
.site-menu .menu > ul > li .children li.page_item.page_item_has_children > a:before, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children > a:before,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children > a:before,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children > a:before {
display: none; }
.site-menu .menu > ul > li .children li.page_item.page_item_has_children:after, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children:after {
position: absolute;
top: 50%;
right: 10px;
color: #ababab;
font-size: 16px;
background-color: transparent !important;
margin: -1px;
transform: translateY(-50%);
content: ""; }
.site-menu .menu > ul > li .children li.page_item.page_item_has_children.has-hover-back:after, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children.has-hover-back:after,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children.has-hover-back:after,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children.has-hover-back:after {
content: ""; }
.site-menu .menu > ul > li .children li.page_item.page_item_has_children.has-hover-back > a, .site-menu .menu > ul > li .children li.page_item.menu-item-has-children.has-hover-back > a,
.site-menu .menu > li .sub-menu li.menu-item.page_item_has_children.has-hover-back > a,
.site-menu .menu > li .sub-menu li.menu-item.menu-item-has-children.has-hover-back > a {
padding-left: 25px; }
.site-menu .menu > ul > li .children li.page_item.current_page_item:before, .site-menu .menu > ul > li .children li.page_item.current-menu-item:before,
.site-menu .menu > li .sub-menu li.menu-item.current_page_item:before,
.site-menu .menu > li .sub-menu li.menu-item.current-menu-item:before {
opacity: 1 !important;
width: 12px !important; }
.site-menu .menu > ul > li .children li.page_item.current_page_item > a, .site-menu .menu > ul > li .children li.page_item.current-menu-item > a,
.site-menu .menu > li .sub-menu li.menu-item.current_page_item > a,
.site-menu .menu > li .sub-menu li.menu-item.current-menu-item > a {
transform: translate(5px); }
.site-menu .menu > ul > li .children li.page_item:not(.menu-item-object-ic_mega_menu):before,
.site-menu .menu > li .sub-menu li.menu-item:not(.menu-item-object-ic_mega_menu):before {
opacity: 0;
content: '';
height: 1px;
width: 0;
position: absolute;
top: 50%;
left: 14px;
margin-right: 5px; }
.site-menu .menu > ul > li .children li.page_item:hover:before,
.site-menu .menu > li .sub-menu li.menu-item:hover:before {
opacity: 1;
width: 12px; }
.site-menu .menu > ul > li .children li.page_item:hover > a,
.site-menu .menu > li .sub-menu li.menu-item:hover > a {
transform: translate(5px); }
.site-menu .menu > ul > li .children li.page_item a,
.site-menu .menu > li .sub-menu li.menu-item a {
display: block;
padding: 12px 30px; }
.site-menu .menu > ul > li .children li.page_item .children,
.site-menu .menu > ul > li .children li.page_item .sub-menu,
.site-menu .menu > li .sub-menu li.menu-item .children,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu {
top: 0;
left: 100%; }
.site-menu .menu > ul > li .children li.page_item .children.hover-back,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back {
right: 100%;
left: auto; }
.site-menu .menu > ul > li .children li.page_item .children.hover-back li.page_item_has_children:after,
.site-menu .menu > ul > li .children li.page_item .children.hover-back li.menu-item-has-children:after,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.page_item_has_children:after,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.menu-item-has-children:after,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.page_item_has_children:after,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.menu-item-has-children:after {
content: ""; }
.site-menu .menu > ul > li .children li.page_item .children.hover-back li.page_item_has_children > a,
.site-menu .menu > ul > li .children li.page_item .children.hover-back li.menu-item-has-children > a,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.page_item_has_children > a,
.site-menu .menu > ul > li .children li.page_item .sub-menu.hover-back li.menu-item-has-children > a,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.page_item_has_children > a,
.site-menu .menu > li .sub-menu li.menu-item .children.hover-back li.menu-item-has-children > a,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.page_item_has_children > a,
.site-menu .menu > li .sub-menu li.menu-item .sub-menu.hover-back li.menu-item-has-children > a {
padding-left: 25px; }
.site-menu .menu-item-tag {
font-size: 10px;
line-height: 1.2;
letter-spacing: .05em;
text-transform: lowercase;
position: absolute;
top: -20px;
right: -25px;
min-width: 35px;
min-height: 16px;
text-align: center;
padding: 3px; }
.site-menu .menu-item-tag:after {
content: '';
display: block;
position: absolute;
bottom: -7px;
left: 50%;
width: 0;
height: 0;
border-style: solid;
border-width: 7px 7px 0 0;
border-color: transparent transparent transparent transparent;
transform: translateX(-50%); }
.site-header.header-split .site-menu {
text-align: center;
opacity: 0;
transition: opacity .5s ease; }
.site-header.header-split .site-menu.menu-calculated {
opacity: 1; }
.site-header.header-menu-bottom .site-menu {
width: 100%; }
.site-header.header-menu-bottom .site-menu .menu > ul > li,
.site-header.header-menu-bottom .site-menu .menu > li {
height: auto !important;
line-height: 1 !important;
padding: 25px; }
.site-header.header-menu-bottom .site-menu > div {
display: inline-block;
vertical-align: middle; }
.site-header.header-menu-left .site-menu {
width: 100%; }
.site-header.header-menu-left .site-menu .menu > ul > li:first-child,
.site-header.header-menu-left .site-menu .menu > li:first-child {
padding-left: 0; }
.site-header.header-vertical .site-menu {
display: block; }
.site-menu .menu > li.mega-menu .sub-menu {
padding: 0;
box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3); }
.site-menu .menu > li.mega-menu .sub-menu li.menu-item a {
display: inline-block;
padding: 0; }
.social-links {
font-size: 0;
list-style-type: none;
margin: 0;
padding: 0; }
.social-links li {
display: inline-block;
vertical-align: top; }
.social-links li a {
position: relative;
display: inline-block;
font-size: 0; }
.social-links li i {
vertical-align: middle;
text-align: center;
font-size: 13px; }
.social-links li span.title {
text-align: left;
display: inline-block;
margin-right: 10px;
padding-right: 15px;
font-size: 13px; }
.social-links .title {
font-weight: 400; }
.topbar .social-links li {
border: 0 solid #eeeeee;
border-right-width: 1px;
line-height: 0; }
.topbar .social-links li:before, .topbar .social-links li:after {
display: none; }
.topbar .social-links li:first-child {
border-left-width: 1px; }
.topbar .social-links li:last-child.has-title .title {
padding-right: 5px; }
.topbar .social-links li i {
margin-right: 0;
width: 45px;
height: 45px;
font-size: 15px;
line-height: 45px; }
.topbar .social-links li span.title {
line-height: 45px; }
.topbar.topbar-divider--dotted .social-links li {
border: none;
position: relative; }
.topbar.topbar-divider--dotted .social-links li:after {
opacity: .5;
content: '';
height: 3px;
width: 3px;
border-radius: 100%;
display: inline-block;
vertical-align: middle;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%); }
.topbar.topbar-divider--dotted .social-links li:last-child:after {
display: none; }
.topbar.topbar-switchers-right .social-links li:last-child:after {
display: block; }
.site-mobile-menu .social-links {
padding: 0 20px;
margin-top: 30px; }
.site-mobile-menu .social-links li {
margin-right: 30px; }
.site-mobile-menu .social-links li:last-of-type {
margin-right: 0; }
.site-mobile-menu .social-links li i {
line-height: 30px;
font-size: 18px; }
.site-mobile-menu .social-links li span.title {
line-height: 30px;
margin-left: 5px;
margin-right: 0;
padding-right: 0; }
.site-header.header-vertical .social-links {
position: fixed;
bottom: 50px; }
.site-header.header-vertical .social-links li {
margin-right: 30px; }
.site-header.header-vertical .social-links li:last-of-type {
margin-right: 0; }
.site-header.header-vertical .social-links li i {
line-height: 30px;
font-size: 18px; }
.site-header.header-vertical .social-links li a {
color: #333333; }
.site-header.header-vertical .social-links li:before, .site-header.header-vertical .social-links li:after,
.site-header.header-vertical .social-links li span.title {
display: none; }
.site-header .content-social .social-links li {
margin-right: 30px; }
.site-header .content-social .social-links li i {
font-size: 14px; }
.offcanvas-sidebar .social-links span.title {
vertical-align: middle;
margin-right: 0;
margin-left: 10px;
padding-right: 0; }
.social-links--large li i {
font-size: 18px; }
.social-links--large li + li {
margin-left: 18px; }
.social-list {
list-style: none;
padding: 0; }
.social-list__item {
display: inline-block;
vertical-align: top;
margin-right: 20px; }
.social-list__link {
font-size: 0;
display: inline-block;
color: currentColor; }
.social-list__icon.social-list__icon {
font-size: 16px;
display: inline-block;
vertical-align: middle; } .switcher-menu {
border-right: 1px solid #eeeeee; }
.switcher-menu:first-child {
border-left: 1px solid #eeeeee; }
.switcher-menu ul {
padding-left: 0;
list-style: none; } .switcher {  }
.switcher.loading .nice-select:after {
top: 20%;
right: 8px;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg) !important;
background-color: transparent !important;
transform: scale(0.7); }
.switcher select {
display: none; }
.switcher .nice-select {
border-color: #eeeeee;
border-top-width: 0;
border-bottom-width: 0;
border-left-width: 0;
border-radius: 0;
background-color: transparent; }
.switcher .nice-select:after {
opacity: .4;
right: 12px;
color: currentColor; }
.switcher .nice-select img {
margin-right: 5px;
max-width: 16px;
vertical-align: -1px; }
.switcher .nice-select .list {
top: 120%;
z-index: 999;
margin-top: 0;
min-width: 110px;
box-shadow: -1px 10px 80px -15px rgba(0, 0, 0, 0.3);
transition-duration: .5s; }
.switcher .nice-select.open .list {
top: 100%; }
.switcher .menu {
border-right: 1px solid #eeeeee; }
.switcher .menu > li {
border-right-width: 0; }
.switcher .menu > li img {
margin-right: 5px;
vertical-align: 0; }
.topbar.topbar-switchers-right .switcher-menu {
border-right-width: 0;
border-left: 1px solid #eeeeee; }
.topbar.topbar-switchers-right .switcher-menu:first-child {
border-right: 1px solid #eeeeee; }
.topbar.topbar-switchers-right .switcher-menu:first-child:after {
display: none; }
.topbar.topbar-divider--dotted .switcher-menu {
border: none !important;
position: relative; }
.topbar.topbar-divider--dotted .switcher-menu:after {
opacity: .5;
content: '';
height: 3px;
width: 3px;
border-radius: 100%;
display: inline-block;
vertical-align: middle;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%); }
.topbar.topbar-divider--dotted .switcher-menu .menu li.menu-item-has-children > a:after {
display: none; }
.topbar.topbar-divider--dotted .switcher .nice-select,
.topbar.topbar-divider--dotted .switcher .menu,
.topbar.topbar-divider--dotted .switcher .menu li {
border: none; }
.topbar.topbar-divider--dotted .switcher .nice-select {
padding: 0 15px; }
.topbar.topbar-divider--dotted .switcher .nice-select:after {
opacity: .5;
content: '';
height: 3px;
width: 3px;
border-radius: 100%;
display: inline-block;
vertical-align: middle;
right: 0; }
.topbar.topbar-divider--dotted .switcher .nice-select .current:before {
font-size: 14px;
display: inline-block;
vertical-align: middle;
margin-right: 10px; }
.topbar.topbar-divider--dotted .switcher.wpml-switcher.show-flag .nice-select .current:before,
.topbar.topbar-divider--dotted .switcher.polylang-switcher .nice-select .current:before {
display: none; }
.topbar.topbar-divider--dotted .switcher.language-switcher .nice-select .current:before {
content: '\f276'; }
.topbar.topbar-divider--dotted .switcher.currency-switcher .nice-select .current:before {
content: '\f316'; }
.topbar.topbar-divider--dotted .switcher .menu > li:after {
opacity: .5;
width: 3px;
height: 3px;
border-radius: 100%; }
.topbar.topbar-divider--dotted .switcher .menu > li:last-child:after {
display: inline-block; }
.topbar.topbar-switchers-right .switcher:first-child .nice-select:after {
display: none; }
.site-header .content-switchers .switcher-menu {
display: inline-block;
vertical-align: middle;
border-left: none; }
.site-header .content-switchers .switcher-menu:first-child > ul > li {
padding-left: 0;
padding-right: 25px; }
.site-header .content-switchers .switcher-menu:last-child {
padding-left: 15px;
border-right: none; }
.site-header .content-switchers .switcher {
display: inline-block;
vertical-align: middle; }
.site-header .content-switchers .switcher .menu li {
padding-right: 20px;
padding-left: 20px; }
.site-header .content-switchers .switcher .menu li:first-child {
padding-left: 0; }
.site-header .content-switchers .switcher .nice-select {
position: relative;
border-right: none; }
.site-header .content-switchers .switcher .nice-select:before {
content: '';
position: absolute;
display: block;
top: 50%;
right: -10px;
height: 15px;
width: 1px;
background-color: #e0e0e0;
transform: translateY(-50%); }
.site-header .content-switchers .switcher:last-child .nice-select {
padding-left: 25px; }
.site-header .content-switchers .switcher:last-child .nice-select:before {
display: none; }
.topbar {
position: relative;
font-size: 14px;
min-height: 44px;
border-bottom: 1px solid #eeeeee; }
.topbar.closed {
transform: translateY(-100%); }
.topbar.closed + .topbar-open-btn {
opacity: 1;
visibility: visible; }
.topbar .topbar-text ul {
margin-bottom: 0;
padding-left: 0;
list-style: none; }
.topbar .topbar-text li {
display: inline-block;
margin-right: 25px; }
.topbar .topbar-text li:last-child {
margin-right: 0; }
.topbar .topbar-text i {
display: inline-block;
vertical-align: -1px;
margin-right: 8px; }
.topbar .menu {
font-size: 0;
margin: 0;
padding: 0;
list-style-type: none; }
.topbar .menu > li > .sub-menu.hover-back {
right: 0 !important; }
.topbar .menu li {
font-size: 14px;
position: relative;
display: inline-block;
vertical-align: middle;
padding: 0 15px;
border-right: 1px solid #eeeeee; }
.topbar .menu li.menu-item-has-children > a:after {
opacity: .6;
font-size: 12px;
margin-left: 5px;
content: ""; }
.topbar .menu li:hover > .sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
z-index: 999; }
.topbar .menu li:last-child {
border-right-width: 0; }
.topbar .menu li > a {
display: block; }
.topbar .menu li > a > i {
margin-right: 10px; }
.topbar .menu li .sub-menu {
position: absolute;
top: 120%;
left: 0;
visibility: hidden;
margin: 0;
padding: 0;
min-width: 150px;
background-color: #ffffff;
box-shadow: -1px 10px 80px -15px rgba(0, 0, 0, 0.3);
opacity: 0;
z-index: 0;
transition: top .5s ease-in-out, visibility .5s ease-in-out, opacity .5s ease-in-out, z-index .6s ease-in-out; }
.topbar .menu li .sub-menu.hover-back {
right: 100%;
left: auto !important; }
.topbar .menu li .sub-menu li {
display: block;
margin: 0;
padding: 0;
border: none;
line-height: initial; }
.topbar .menu li .sub-menu li:hover {
transform: translateX(5px); }
.topbar .menu li .sub-menu li a {
display: block;
padding: 8px 15px; }
.topbar .menu li .sub-menu li .sub-menu {
top: -1px;
left: 100%; }
.topbar .topbar-left > div, .topbar .topbar-left > ul {
float: left; }
.topbar .topbar-left.text-xs-center > div, .topbar .topbar-left.amely-icon-box.center > div {
float: none;
display: inline-block;
vertical-align: top; }
.topbar .topbar-right > div, .topbar .topbar-right > ul {
float: right; }
.topbar-close-btn,
.topbar-open-btn {
display: inline-block;
font-size: 0;
text-align: center;
position: absolute;
right: 0;
top: 0; }
.topbar-close-btn:before {
display: inline-block;
font-size: 30px;
content: ""; }
.topbar-open-btn {
opacity: 0;
visibility: hidden;
right: 15px;
z-index: 999; }
.topbar-open-btn i {
font-size: 15px; }
.topbar.topbar-divider--dotted .topbar-menu .menu > li.menu-item {
position: relative; }
.topbar.topbar-divider--dotted .topbar-menu .menu > li.menu-item:after {
opacity: .5;
content: '';
height: 3px;
width: 3px;
border-radius: 100%;
display: inline-block;
vertical-align: middle;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%); }
.topbar.topbar-divider--dotted .topbar-menu .menu > li.menu-item.menu-item-has-children > a:after {
display: none; }
.topbar.topbar-scheme--light {
background-color: #ffffff; }
.topbar.topbar-scheme--dark {
color: #ababab;
background-color: #333333;
border-color: #333333; }
.topbar.topbar-scheme--dark .social-links li,
.topbar.topbar-scheme--dark .menu li,
.topbar.topbar-scheme--dark .switcher-menu,
.topbar.topbar-scheme--dark .switcher .nice-select,
.topbar.topbar-scheme--dark .switcher .menu {
border-color: #696969; }
.topbar.topbar-scheme--dark .social-links a,
.topbar.topbar-scheme--dark .topbar-menu > .menu > li > a,
.topbar.topbar-scheme--dark .topbar-text a,
.topbar.topbar-scheme--dark .switcher-menu > .menu > li > a,
.topbar.topbar-scheme--dark .switcher .nice-select .list > li,
.topbar.topbar-scheme--dark .switcher > .menu > li > a {
color: #ababab; }
.topbar.topbar-scheme--dark .social-links a:hover, .topbar.topbar-scheme--dark .social-links a:focus,
.topbar.topbar-scheme--dark .topbar-menu > .menu > li > a:hover,
.topbar.topbar-scheme--dark .topbar-menu > .menu > li > a:focus,
.topbar.topbar-scheme--dark .topbar-text a:hover,
.topbar.topbar-scheme--dark .topbar-text a:focus,
.topbar.topbar-scheme--dark .switcher-menu > .menu > li > a:hover,
.topbar.topbar-scheme--dark .switcher-menu > .menu > li > a:focus,
.topbar.topbar-scheme--dark .switcher .nice-select .list > li:hover,
.topbar.topbar-scheme--dark .switcher .nice-select .list > li:focus,
.topbar.topbar-scheme--dark .switcher > .menu > li > a:hover,
.topbar.topbar-scheme--dark .switcher > .menu > li > a:focus {
color: #ffffff; }
.topbar.topbar-scheme--dark .social-links li:after {
background-color: #696969; }
.topbar.topbar-scheme--dark a.topbar-close-btn {
color: #ffffff; }
.widget {
border-bottom: 1px solid #efefef;
margin: 0 0 30px;
padding-bottom: 25px; }
.widget select {
max-width: 100%; }
.widget ul {
margin: 0;
padding: 0; }
.widget li {
margin: 0;
padding: 0;
list-style: none; }
.site-footer .widget {
border-bottom: none;
margin-bottom: 30px;
padding-bottom: 0; }
.filters-area .widget {
border-bottom: none;
margin-bottom: 0; }
.active-filters .widget {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0; }
.site-header .widget {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none; }
.offcanvas-sidebar .widget {
border-bottom: none; }
.widget-title {
font-size: 24px;
line-height: 32px;
font-weight: 500;
margin-top: 0;
margin-bottom: 30px;
text-transform: capitalize; }
.filters-area .widget-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px; }
.site-footer .widget-title {
font-size: 16px;
letter-spacing: .03em; }
.widget_tm .tm-social {
float: right; }
.widget_tm h3.widget-title {
text-align: right; }
.widget ul li {
letter-spacing: .03em;
word-wrap: break-word; }
.widget ul li > a {
display: inline-block;
padding: 14px 0;
color: #999999; }
.widget ul li > a:hover {
color: #333333; }
.widget ul li:first-child > a {
padding-top: 0; }
.widget ul li ul.children,
.widget ul li ul.sub-menu {
border-top: 1px solid #eeeeee;
padding-left: 1em;
padding-top: 14px; }
.sidebar .widget ul li {
font-size: 14px; }
.site-footer .widget ul li > a {
font-size: 14px;
line-height: 30px;
letter-spacing: .03em;
padding: 5px 0; }
.site-footer .widget ul li ul.children,
.site-footer .widget ul li ul.sub-menu {
padding-top: 0; }
.filters-area .widget ul li ul.children,
.filters-area .widget ul li ul.sub-menu {
border: none; }
.filters-area .widget ul li > a {
font-size: 14px;
padding-top: 0;
padding-bottom: 10px; }
.insight-core-bmw ul li + li,
.widget_archive ul > li + li,
.widget_pages ul > li + li,
.widget_nav_menu ul > li + li,
.widget_categories ul li + li,
.widget_recent_comments ul > li + li,
.widget_meta ul > li + li,
.widget_recent_entries ul > li + li,
.widget_product_categories ul > li + li,
.widget_layered_nav ul li + li,
.widget_edd_categories_tags_widget ul li + li,
.widget_display_replies ul li + li,
.widget_display_forums ul li + li,
.widget_display_topics ul li + li {
border-top: 1px solid #eeeeee; }
.filters-area .insight-core-bmw ul li, .filters-area
.widget_archive ul > li, .filters-area
.widget_pages ul > li, .filters-area
.widget_nav_menu ul > li, .filters-area
.widget_categories ul li, .filters-area
.widget_recent_comments ul > li, .filters-area
.widget_meta ul > li, .filters-area
.widget_recent_entries ul > li, .filters-area
.widget_product_categories ul > li, .filters-area
.widget_layered_nav ul li, .filters-area
.widget_edd_categories_tags_widget ul li, .filters-area
.widget_display_replies ul li, .filters-area
.widget_display_forums ul li, .filters-area
.widget_display_topics ul li {
border: none; }
.filters-area .insight-core-bmw ul li .count, .filters-area
.widget_archive ul > li .count, .filters-area
.widget_pages ul > li .count, .filters-area
.widget_nav_menu ul > li .count, .filters-area
.widget_categories ul li .count, .filters-area
.widget_recent_comments ul > li .count, .filters-area
.widget_meta ul > li .count, .filters-area
.widget_recent_entries ul > li .count, .filters-area
.widget_product_categories ul > li .count, .filters-area
.widget_layered_nav ul li .count, .filters-area
.widget_edd_categories_tags_widget ul li .count, .filters-area
.widget_display_replies ul li .count, .filters-area
.widget_display_forums ul li .count, .filters-area
.widget_display_topics ul li .count {
font-size: 12px; }
.widget_calendar tfoot td#next {
text-align: right; }
.widget_calendar tbody td a {
font-weight: 600;
border-bottom: 1px dotted #333333; }
.widget_recent_comments ul li.recentcomments {
padding: 10px 0; }
.widget_recent_comments ul li.recentcomments > a {
display: inline; }
.widget_search form,
.widget_product_search form {
position: relative;
margin-bottom: 0; }
.widget_search form.woocommerce-product-search:after,
.widget_product_search form.woocommerce-product-search:after {
font-size: 18px;
line-height: 40px;
position: absolute;
top: 0;
right: 18px;
color: #333333;
content: ""; }
.widget_search input,
.widget_product_search input {
margin: 0;
border: 1px solid #eeeeee;
background: #f7f7f7;
width: 100%;
height: 40px;
font-size: 14px;
line-height: 19px;
padding-left: 15px;
padding-right: 45px;
background-clip: padding-box; }
.widget_search input[type='submit'],
.widget_product_search input[type='submit'] {
display: none; }
.widget_search button, .widget_search .amely-button,
.widget_product_search button,
.widget_product_search .amely-button {
position: absolute;
top: 0;
right: 18px;
font-size: 0;
background-color: transparent !important;
border: none;
padding: 0; }
.widget_search button:after, .widget_search .amely-button:after,
.widget_product_search button:after,
.widget_product_search .amely-button:after {
font-size: 18px;
line-height: 40px;
float: right;
color: #333333;
content: ""; }
.post-tags .tagcloud,
.widget_tag_cloud .tagcloud,
.widget_product_tag_cloud .tagcloud {
font-size: 0; }
.post-tags .tagcloud li,
.widget_tag_cloud .tagcloud li,
.widget_product_tag_cloud .tagcloud li {
display: inline-block; }
.post-tags .tagcloud li:last-child a,
.widget_tag_cloud .tagcloud li:last-child a,
.widget_product_tag_cloud .tagcloud li:last-child a {
margin-right: 0; }
.post-tags .tagcloud a,
.widget_tag_cloud .tagcloud a,
.widget_product_tag_cloud .tagcloud a {
color: #999999;
font-size: 14px !important;
line-height: 1.6;
letter-spacing: .03em;
display: inline-block;
word-wrap: break-word;
word-break: break-all;
margin-right: 5px; }
.post-tags .tagcloud a:after,
.widget_tag_cloud .tagcloud a:after,
.widget_product_tag_cloud .tagcloud a:after {
content: '/';
color: #999999;
display: inline-block;
margin-left: 5px; }
.post-tags .tagcloud a:last-child:after,
.widget_tag_cloud .tagcloud a:last-child:after,
.widget_product_tag_cloud .tagcloud a:last-child:after {
display: none; }
.single .post-tags .tagcloud, .single
.widget_tag_cloud .tagcloud, .single
.widget_product_tag_cloud .tagcloud {
padding: 0;
margin-bottom: 0; }
.site-footer .post-tags .tagcloud a, .site-footer
.widget_tag_cloud .tagcloud a, .site-footer
.widget_product_tag_cloud .tagcloud a {
color: #777777;
border-color: #777777; }
.site-footer .post-tags .tagcloud a:hover, .site-footer
.widget_tag_cloud .tagcloud a:hover, .site-footer
.widget_product_tag_cloud .tagcloud a:hover {
color: #ffffff; }
.widget_tm_contact_info p {
display: table;
vertical-align: middle;
margin-bottom: 10px; }
.widget_tm_contact_info p > i {
display: table-cell;
width: 30px;
font-size: 14px; }
.widget_tm_contact_info p > a,
.widget_tm_contact_info p > span {
display: table-cell;
width: calc(100% - 30px); }
.widget_tm_contact_info .contact-info__logo {
margin-bottom: 30px; }
.widget_tm_contact_info .social-links li {
margin-right: 20px; }
.widget_tm_contact_info .social-links li a {
padding: 0; }
.widget_product_categories .title-wrap.widget-heading {
margin-bottom: 30px; }
.widget_product_categories ul li:first-child a {
padding-top: 14px; }
.widget_product_categories ul.product-categories {
margin-top: -14px;
max-height: 300px; }
.widget_product_categories ul.product-categories.has-toggle .count {
margin-right: 20px; }
.filters-area .widget_product_categories ul.product-categories {
max-height: 200px; }
.widget_product_categories ul.children {
display: none;
padding-left: 30px !important;
padding-top: 0 !important;
border-top: 1px solid #eeeeee; }
.widget_product_categories ul.children li {
font-weight: 400;
text-transform: none;
letter-spacing: 0;
border-bottom: none;
margin-bottom: 0; }
.widget_product_categories ul.children .count {
color: #999999; }
.widget_product_categories .count {
margin-top: 10px; }
.widget_product_categories li {
position: relative;
text-transform: uppercase;
font-weight: 600;
letter-spacing: .1em; }
.widget_product_categories li:hover a {
color: #333333; }
.widget_product_categories li:hover .count {
color: #333333; }
.widget_product_categories li .count {
color: #999999; }
.widget_product_categories li.expand > i {
transform: rotate(180deg); }
.widget_product_categories li.current-cat > a {
color: #333333; }
.widget_product_categories li.current-cat > .count {
color: #333333; }
.widget_product_categories li i {
position: absolute;
top: 5px;
right: 0;
cursor: pointer;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center; }
.widget_product_categories li .count {
font-size: 14px; }
.widget_product_categories li a > span {
display: inline-block;
position: relative;
top: -4px;
float: none;
color: #777777;
font-size: 12px;
opacity: 0;
padding: 1px 0;
margin-left: 3px;
transition: opacity .3s ease-in-out; }
.filters-area .widget_product_categories ul.product-categories {
margin-top: 0; }
.filters-area .widget_product_categories li {
text-transform: none;
font-weight: 400; }
.filters-area .widget_product_categories li i {
top: 0;
height: 22px;
width: 22px;
line-height: 22px; }
.filters-area .widget_product_categories ul li:first-child a {
padding-top: 0; }
.widget_nav_menu .title-wrap,
.insight-core-bmw .title-wrap {
margin-bottom: 15px; }
.widget_nav_menu li,
.insight-core-bmw li {
border: none  !important; }
.widget_nav_menu ul.sub-menu,
.insight-core-bmw ul.sub-menu {
border: none  !important; }
.widget_nav_menu ul.sub-menu li,
.insight-core-bmw ul.sub-menu li {
border: none;
padding-left: 15px; }
.widget_shopping_cart .amount {
font-size: 14px;
font-weight: 700;
color: #333333; }
.widget_shopping_cart .widget_minicart_title {
display: none; }
.widget_shopping_cart .product_list_widget {
margin: 0 -10px;
padding: 0 10px;
list-style: none; }
.widget_shopping_cart .mini_cart_item {
position: relative;
display: table;
margin-bottom: 20px;
padding-bottom: 20px;
min-height: 100px;
width: 100%;
border-bottom: 1px solid #eeeeee; }
.widget_shopping_cart .mini_cart_item:last-of-type {
padding-bottom: 0;
margin-bottom: 0;
border-bottom: none; }
.widget_shopping_cart .mini_cart_item.deleted {
position: absolute;
width: calc(100% - 20px);
opacity: 0;
animation: widget-item-slide-out 0.3s forwards; }
.widget_shopping_cart .mini_cart_item.deleted + .mini_cart_item:not(.deleted):not(.undo-deleted) {
animation: widget-item-move-up 0.3s forwards; }
.widget_shopping_cart .mini_cart_item.undo-deleted {
animation: widget-item-slide-in 0.3s forwards; }
.widget_shopping_cart .mini_cart_item.undo-deleted + .mini_cart_item:not(.deleted):not(.undo-deleted) {
animation: widget-item-move-down 0.3s forwards; }
.widget_shopping_cart .mini_cart_item .variation {
margin-top: 5px;
margin-bottom: 5px; }
.widget_shopping_cart .remove {
position: absolute;
top: 0;
right: 0;
padding: 0;
font-size: 0; }
.widget_shopping_cart .remove:before {
vertical-align: -4px;
font-size: 20px;
line-height: 0;
content: ""; }
.widget_shopping_cart .remove:hover {
color: #ff0000; }
.widget_shopping_cart .remove.inactive {
position: relative;
z-index: -1; }
.widget_shopping_cart .remove.inactive:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
content: ''; }
.widget_shopping_cart .minicart_item_product_image {
display: table-cell;
padding-top: 0;
padding-right: 15px;
padding-bottom: 0;
width: 90px;
vertical-align: top; }
.widget_shopping_cart .minicart_item_right {
display: table-cell;
vertical-align: top; }
.widget_shopping_cart .minicart_item_details {
font-size: 12px; }
.widget_shopping_cart .product-title {
font-size: 14px;
line-height: 24px;
width: 90%;
margin-top: 0;
margin-bottom: 10px; }
.widget_shopping_cart .product-title a {
color: #696969;
font-weight: 400; }
.widget_shopping_cart .product-title span {
display: block;
font-size: 14px;
line-height: 18px;
color: #ababab;
margin: 10px 0; }
.widget_shopping_cart .woocommerce-mini-cart__total {
margin-top: 10px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 8px;
border-top: 1px solid #eeeeee;
border-bottom: 1px solid #eeeeee; }
.widget_shopping_cart .woocommerce-mini-cart__total strong {
margin-right: 10px;
color: #222222;
text-transform: uppercase;
font-weight: 600;
font-size: 16px; }
.widget_shopping_cart .woocommerce-mini-cart__total .amount {
float: right;
font-size: 18px;
margin-top: -5px; }
.widget_shopping_cart .woocommerce-mini-cart__buttons .button {
display: block;
margin-bottom: 15px;
padding: 5px 10px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
letter-spacing: .1em; }
.widget_shopping_cart .woocommerce-mini-cart__buttons .button:hover {
opacity: .85; }
.widget_shopping_cart .woocommerce-mini-cart__buttons .checkout {
margin-bottom: 0; }
.product_list_widget .product {
clear: both;
display: table;
width: 100%;
border-bottom: 1px solid #eeeeee;
padding-bottom: 20px;
margin-bottom: 20px; }
.product_list_widget .product:last-of-type {
border: none;
margin-bottom: 0;
padding-bottom: 0; }
.product_list_widget .product > a {
padding-bottom: 5px; }
.product_list_widget .product-thumb {
display: table-cell;
vertical-align: top;
width: 120px; }
.product_list_widget .product-info {
display: table-cell;
vertical-align: top;
position: relative;
padding-left: 20px; }
.product_list_widget .product-info a.product-title {
display: block;
font-size: 15px; }
.product_list_widget .product-price {
display: block;
font-size: 14px;
line-height: 1.7;
font-weight: 700;
color: #333333; }
.product_list_widget .product-price del {
font-size: .875em;
font-weight: 600;
margin-right: 5px; }
.site-footer .product_list_widget .product-thumb {
width: 50px; }
.widget_price_filter input[type="text"] {
display: none; }
.widget_price_filter .price_label {
font-size: 14px;
font-weight: 500; }
.widget_price_filter .price_slider {
margin-bottom: 20px; }
.widget_price_filter .price_slider_amount {
text-align: right;
line-height: 2.4; }
.widget_price_filter .price_slider_amount .price_label {
text-align: left; }
.widget_price_filter .price_slider_amount .button {
float: right;
font-size: 14px;
font-weight: 600;
background-color: transparent;
border: none;
padding: 0;
color: #333333; }
.widget_price_filter .price_slider_amount .button:before {
margin-right: 5px;
content: ""; }
.widget_price_filter .ui-slider {
position: relative;
text-align: left;
margin-right: .5em; }
.widget_price_filter .ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1em;
height: 1em;
border-radius: 1em;
cursor: ew-resize;
outline: none;
top: -.3em;
background-color: #333333; }
.widget_price_filter .ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
display: block;
border: 0;
background-color: #333333; }
.widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #eeeeee;
border: 0; }
.widget_price_filter .ui-slider-horizontal {
height: 5px; }
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%; }
.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
left: -1px; }
.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
right: -1px; }
.widget_recent_reviews .product_list_widget li {
clear: both; }
.widget_recent_reviews .product_list_widget li > a {
display: block !important;
padding: 0 !important; }
.widget_recent_reviews .product_list_widget li > a > img {
float: left;
width: 130px;
padding-right: 10px; }
.widget_recent_reviews .product_list_widget li .reviewer {
display: block; }
.widget_tm_layered_nav a.filter-pseudo-link {
display: none; }
.widget_tm_layered_nav ul li.wc-layered-nav-term {
line-height: 1.5;
padding-top: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #eeeeee; }
.widget_tm_layered_nav ul li.wc-layered-nav-term.swatch-color a:hover span.filter-swatch,
.widget_tm_layered_nav ul li.wc-layered-nav-term.swatch-color.chosen span.filter-swatch,
.widget_tm_layered_nav ul li.wc-layered-nav-term.swatch-image a:hover img,
.widget_tm_layered_nav ul li.wc-layered-nav-term.swatch-image.chosen img {
box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #aaaaaa; }
.widget_tm_layered_nav ul li.wc-layered-nav-term.chosen a {
color: #333333; }
.widget_tm_layered_nav ul li.wc-layered-nav-term > a {
padding: 0; }
.widget_tm_layered_nav ul li.wc-layered-nav-term .count {
float: right; }
.widget_tm_layered_nav ul .count {
color: #bbbbbb; }
.widget_tm_layered_nav ul.show-labels-off li.wc-layered-nav-term a .term-name {
display: none; }
.widget_tm_layered_nav ul.show-labels-on li.wc-layered-nav-term.swatch-color span:before,
.widget_tm_layered_nav ul.show-labels-on li.wc-layered-nav-term.swatch-color span:after {
display: none; }
.widget_tm_layered_nav ul.show-labels-on li.no-swatch,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text {
position: relative; }
.widget_tm_layered_nav ul.show-labels-on li.no-swatch a,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text a {
font-size: 14px;
font-weight: 600;
display: inline-block;
height: 30px;
min-width: 30px;
line-height: 30px;
text-align: center;
border-radius: 25px;
z-index: 1;
color: #ababab;
background-color: #eeeeee;
padding: 0 10px; }
.widget_tm_layered_nav ul.show-labels-on li.no-swatch:hover a, .widget_tm_layered_nav ul.show-labels-on li.no-swatch.chosen a,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text:hover a,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text.chosen a {
color: #ffffff; }
.widget_tm_layered_nav ul.show-labels-on li.no-swatch span.count,
.widget_tm_layered_nav ul.show-labels-on li.swatch-text span.count {
position: relative;
display: inline-block;
vertical-align: super;
font-size: 10px;
font-weight: 600;
height: 20px;
min-width: 20px;
line-height: 20px;
text-align: center;
border-radius: 15px;
background-color: #ababab;
color: #ffffff;
z-index: 2;
padding: 0 5px;
margin-top: -5px;
margin-left: -10px; }
.widget_tm_layered_nav ul.show-display-list {
padding: 0 5px; }
.widget_tm_layered_nav ul.show-display-list li.wc-layered-nav-term .term-name {
display: inline-block;
vertical-align: middle; }
.widget_tm_layered_nav ul.show-display-list li,
.widget_tm_layered_nav ul.show-display-list li.swatch-text {
margin-bottom: 5px; }
.widget_tm_layered_nav ul.show-display-list li span.count,
.widget_tm_layered_nav ul.show-display-list li.swatch-text span.count {
top: 50% !important;
transform: translateY(-50%); }
.widget_tm_layered_nav ul.show-display-inline li {
display: inline-block;
vertical-align: top;
border-bottom: none;
margin-right: 15px;
margin-bottom: 15px;
padding: 0; }
.widget_tm_layered_nav ul.show-display-inline li > a {
font-weight: 600;
padding: 0; }
.widget_tm_layered_nav ul.show-display-inline li .count {
display: inline-block;
vertical-align: super;
font-size: 10px;
font-weight: 400;
margin-left: 5px; }
.widget_tm_layered_nav li.swatch-color .filter-swatch {
display: inline-block;
vertical-align: middle;
height: 16px;
width: 16px;
line-height: 16px;
border-radius: 100%;
box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3); }
.widget_tm_layered_nav li.swatch-color .filter-swatch + .term-name {
width: calc(100% - 26px);
white-space: nowrap;
margin-left: 10px; }
.widget_tm_layered_nav li.swatch-image img {
height: 25px;
width: 25px;
border-radius: 100%;
box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3); }
.widget_tm_layered_nav li.swatch-image img + .term-name {
margin-left: 10px; }
.filters-area .widget_tm_layered_nav ul {
max-height: 200px; }
.filters-area .widget_tm_layered_nav ul.children,
.filters-area .widget_tm_layered_nav ul.sub-menu {
border: none; }
.filters-area .widget_tm_layered_nav ul.show-display-list li.wc-layered-nav-term {
padding-top: 0;
padding-bottom: 10px;
border: none; }
.filters-area .widget_tm_layered_nav ul.show-display-list li.wc-layered-nav-term .count {
font-size: 12px; }
.filters-area .widget_tm_layered_nav > a {
font-size: 14px;
padding-top: 0;
padding-bottom: 10px; }
.widget_layered_nav_filters ul li {
display: inline-block;
vertical-align: top;
margin-right: 15px;
margin-bottom: 10px; }
.widget_layered_nav_filters ul li > a {
color: #333333;
font-size: 14px;
font-weight: 500;
padding: 0; }
.widget_layered_nav_filters ul li > a:before {
content: '\e646';
display: inline-block;
vertical-align: 0;
font-size: 10px;
margin-right: 10px; }
.active-filters .widget_layered_nav_filters ul li {
margin-bottom: 5px; }
.widget_tm_sorting a {
position: relative; }
.widget_tm_sorting a:hover, .widget_tm_sorting a.selected-order {
color: #333333; }
.widget_tm_sorting a:after {
content: '';
display: block;
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
height: 1px;
background-color: #111111;
transition: transform .5s;
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1); }
.widget_tm_sorting a.selected-order:after,
.widget_tm_sorting a:hover:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.widget_tm_price_filter ul li a {
color: #999999; }
.widget_tm_price_filter ul li a:hover, .widget_tm_price_filter ul li a.current-state {
color: #333333; }
.yith-woocompare-widget .products-list li {
margin-bottom: 10px;
padding-bottom: 10px !important;
border-bottom-color: #eeeeee !important; }
.yith-woocompare-widget .products-list li a.title {
font-size: 14px;
text-transform: none;
padding: 0; }
.yith-woocompare-widget .products-list li a.remove {
font-size: 0;
padding: 0; }
.yith-woocompare-widget .products-list li a.remove:before {
font-size: 20px;
display: inline-block;
line-height: 1;
content: ""; }
.yith-woocompare-widget .products-list li a.remove:hover:before {
color: red; }
.yith-woocompare-widget a.compare {
line-height: initial;
font-weight: 500;
color: #333333;
background-color: transparent !important;
border: none;
padding: 0; }
.yith-woocompare-widget a.compare:before {
margin-right: 5px;
content: ""; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-color li {
border: none; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-color li a {
border: none !important;
height: 24px;
width: 24px;
border-radius: 100%;
box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
margin: 8px; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-color li a:hover,
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-color li.chosen a {
box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #aaaaaa; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-label li {
border: none; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-label li a {
color: #666666;
font-size: 14px !important;
line-height: 1.6;
display: inline-block;
word-wrap: break-word;
word-break: break-all;
background-color: #ffffff;
border: 1px solid #eeeeee;
padding: 5px 15px;
margin-right: 5px;
margin-bottom: 5px; }
.woocommerce .widget_layered_nav.yith-woocommerce-ajax-product-filter ul.yith-wcan-label li a:hover {
color: #ffffff !important; }
.widget_tm_social ul.social-links li {
margin-right: 25px; }
.widget_tm_social ul.social-links li a {
padding: 0; }
.widget_tm_social ul.social-links li:last-child {
margin-right: 0; }
.widget_tm_social ul.social-links i {
font-size: 18px; }
.header-wishlist {
position: relative; }
.header-tools.layout-base .header-wishlist {
padding-left: 0;
padding-right: 20px; }
.header-tools.layout-base .header-wishlist:after {
content: '';
display: inline-block;
height: 16px;
width: 1px;
margin-left: 25px;
background-color: #e0e0e0; }
.header-tools.layout-big .header-wishlist {
padding-right: 30px; }
.header-tools.layout-big .header-wishlist > a.toggle {
font-size: 30px; }
.header-tools.layout-no-line .header-wishlist {
padding-right: 30px; }
.header-wishlist > a.toggle {
position: relative;
font-size: 18px; }
.header-wishlist > a.toggle .wishlist-count {
position: absolute;
top: -5px;
left: 18px;
height: 18px;
min-width: 18px;
line-height: 18px;
font-size: 12px;
font-weight: 700;
text-align: center;
border-radius: 10px;
z-index: 1;
padding: 0 5px; }
.header-wishlist .wishlist-dropdown-wrapper {
position: absolute;
top: 180%;
right: 0;
z-index: 20;
visibility: hidden;
width: 320px;
background-color: #ffffff;
box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
opacity: 0; }
.header-wishlist .wishlist-dropdown-wrapper.loading:before {
position: absolute;
top: 50%;
left: 50%;
z-index: 1;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
transform: translate(-50%, -50%); }
.header-wishlist .wishlist-dropdown-wrapper.loading:after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
background-color: #ffffff;
content: '';
opacity: .9; }
.header-wishlist .widget_wishlist_title {
font-weight: 600;
text-transform: uppercase;
color: #333333;
border-bottom: 1px solid #eeeeee;
padding-bottom: 5px; }
.header-wishlist .widget_wishlist_title .undo {
visibility: hidden;
float: right;
text-transform: none;
font-weight: 400;
font-size: 11px;
opacity: 0; }
.header-wishlist .widget_wishlist_title .undo.visible {
visibility: visible;
opacity: 1; }
.header-wishlist .widget_wishlist_title .undo a {
text-decoration: underline; }
.header-wishlist .widget_wishlist_title .close-on-mobile {
float: right;
font-size: 0;
margin-right: -20px;
margin-top: -20px;
color: #333333; }
.header-wishlist .widget_wishlist_title .close-on-mobile:before {
font-size: 50px;
content: ""; }
.header-wishlist .widget_wishlist_content {
padding: 20px; }
.header-wishlist .wishlist_items.product_list_widget {
margin: 0 -10px;
padding: 0 10px;
max-height: 330px;
list-style: none; }
.header-wishlist .wishlist_item {
position: relative;
display: table;
margin-bottom: 20px;
min-height: 100px;
width: 100%;
border-bottom: 1px solid #eeeeee; }
.header-wishlist .wishlist_item:last-of-type {
margin-bottom: 0; }
.header-wishlist .wishlist_item.deleted {
position: absolute;
width: calc(100% - 20px);
opacity: 0;
animation: widget-item-slide-out 0.3s forwards; }
.header-wishlist .wishlist_item.deleted + .wishlist_item:not(.deleted):not(.undo-deleted) {
animation: widget-item-move-up 0.3s forwards; }
.header-wishlist .wishlist_item.undo-deleted {
animation: widget-item-slide-in 0.3s forwards; }
.header-wishlist .wishlist_item.undo-deleted + .wishlist_item:not(.deleted):not(.undo-deleted) {
animation: widget-item-move-down 0.3s forwards; }
.header-wishlist .wishlist_item_product_image {
display: table-cell;
padding-right: 15px;
width: 90px;
vertical-align: top; }
.header-wishlist .wishlist_item_right {
display: table-cell;
vertical-align: top; }
.header-wishlist .remove {
position: absolute;
top: 0;
right: 0;
font-size: 0; }
.header-wishlist .remove:before {
vertical-align: -4px;
font-size: 20px;
line-height: 0;
content: ""; }
.header-wishlist .remove:hover {
color: #ff0000; }
.header-wishlist .product-title {
font-size: 16px;
width: 90%;
margin-top: 0;
margin-bottom: 10px; }
.header-wishlist .product-title a {
font-weight: 400; }
.header-wishlist .amount {
font-size: 14px;
font-weight: 700;
color: #333; }
.header-wishlist del .amount {
font-size: .875em;
font-weight: 400;
color: #ababab; }
.header-wishlist .button {
display: block;
margin-top: 10px; }
.header-wishlist .add-to-cart-btn {
display: block; }
.header-wishlist .add-to-cart-btn:before, .header-wishlist .add-to-cart-btn:after {
display: none; }
.header-wishlist .add-to-cart-btn .button {
font-size: 13px;
letter-spacing: .05em;
background: none !important;
border: none;
margin-top: 5px;
padding: 0; }
.header-wishlist .add-to-cart-btn .button:before {
margin-right: 5px; }
.header-wishlist .add-to-cart-btn .button.product_type_grouped:before {
content: ""; }
.header-wishlist .add-to-cart-btn .button.product_type_variable:before {
content: ""; }
.header-wishlist .add-to-cart-btn .button.product_type_simple:before {
content: ""; }
.header-wishlist .added_to_cart {
display: none; }
.header-wishlist .btn-view-wishlist {
padding: 5px 10px;
color: #ffffff;
text-align: center;
letter-spacing: .1em; }
.header-wishlist .outofstock {
margin-top: 5px;
color: #cd5c5c;
text-transform: uppercase;
font-weight: 600;
font-size: 12px; } .woocommerce-account .woocommerce-MyAccount-navigation {
float: left;
width: 30%;
padding-right: 15px;
margin-bottom: 40px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul {
list-style: none;
border: 1px solid #eeeeee;
padding: 0;
margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
border-bottom: 1px solid #eeeeee; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-of-type {
border-bottom: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active > a {
background-color: #fafafa;
cursor: default; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li > a {
position: relative;
display: block;
text-transform: uppercase;
padding: 14px 20px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li > a:after {
display: inline-block;
font-size: 20px;
position: absolute;
right: 20px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard > a:after {
content: '\e69b'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders > a:after {
content: '\e6b4'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads > a:after {
content: '\e6a7'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address > a:after {
content: '\e693'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods > a:after {
content: '\e721'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account > a:after {
content: '\e602'; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout > a:after {
content: '\e646'; }
.woocommerce-account .woocommerce-MyAccount-content {
float: right;
width: 68%;
padding-left: 15px; }
.woocommerce-account .woocommerce-MyAccount-content > p:not(.woocommerce-info) {
padding: 20px;
background-color: #fafafa; }
.woocommerce-account .woocommerce-MyAccount-content > p:not(.woocommerce-info):first-child {
font-size: 14px;
margin-bottom: 20px; }
.woocommerce-account .woocommerce-MyAccount-content > p:first-child strong {
color: #333333; }
.woocommerce-account .woocommerce-MyAccount-content h2 {
font-size: 25px;
text-transform: none;
font-weight: 400; }
.woocommerce-account .woocommerce-MyAccount-content fieldset {
border: 1px solid #dddddd;
padding: 20px 40px;
margin-top: 50px;
margin-bottom: 30px; }
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
color: #333333;
font-size: 20px;
text-transform: uppercase;
letter-spacing: .1em;
line-height: 1.5;
width: auto;
padding: 0 15px; }
.woocommerce-account .description {
font-size: 16px;
margin: 0 0 40px 0; }
.woocommerce-account .woocommerce-form__label.woocommerce-form__label-for-checkbox.inline {
text-transform: none;
letter-spacing: 0;
font-size: 16px; }
.woocommerce-account .woocommerce-form.woocommerce-form-login.login label[for='rememberme'] {
float: left;
cursor: pointer; }
.woocommerce-account .woocommerce-form.woocommerce-form-login.login .woocommerce-Button {
float: right; }
.woocommerce-account .woocommerce-form.woocommerce-form-login.login .woocommerce-LostPassword {
clear: left; }
.woocommerce-account .woocommerce-form.woocommerce-form-login.login input[type="text"],
.woocommerce-account .woocommerce-form.woocommerce-form-login.login input[type="password"] {
background-color: #ffffff;
line-height: 30px; }
.woocommerce-account .woocommerce-form.woocommerce-form-login.login .form-row {
margin-bottom: 40px; } #customer_login {
position: relative;
margin: 20px 0 60px; }
#customer_login h2 {
text-align: center;
text-transform: none;
margin-bottom: 20px;
font-weight: 400;
font-size: 34px;
line-height: 48px;
margin-top: 0; }
#customer_login h2:before {
display: inline-block;
font-size: 24px;
margin-right: 10px; }
#customer_login .woocommerce-FormRow--wide {
width: 100%; }
#customer_login .col-1 {
padding: 50px;
background-color: #f7f7f7; }
#customer_login .col-2 {
padding: 60px; }
#customer_login .col-1,
#customer_login .col-2 {
margin: 0 auto; }
#customer_login .woocommerce-LostPassword {
clear: both; }
#customer_login .description {
text-align: center; }
#customer_login .woocommerce-Button {
width: 180px;
margin: 0; }
#customer_login .woocommerce-Button[name='register']:hover {
opacity: .8; }
#customer_login .button-login,
#customer_login .button-register {
text-align: center; }
#customer_login .button-register {
margin-top: 50px; }
#customer_login .wc-social-login {
margin-bottom: 2rem; }
#customer_login .wc-social-login .ywsl-label {
margin-bottom: .5rem; }
#customer_login .wc-social-login a.ywsl-social:hover img {
opacity: .8; } .woocommerce > .woocommerce-form-login {
max-width: 470px;
padding: 50px;
background-color: #f7f7f7; } form.woocommerce-ResetPassword {
max-width: 500px;
padding: 30px;
margin: 0 auto;
background-color: #f7f7f7; }
form.woocommerce-ResetPassword .woocommerce-FormRow--first {
width: 100% !important; }
form.woocommerce-ResetPassword .woocommerce-Button {
width: 100%;
margin-bottom: 0; }
form.woocommerce-ResetPassword .woocommerce-Input.woocommerce-Input--text.input-text {
background-color: #ffffff;
border: none;
margin-bottom: 30px; }
form.woocommerce-ResetPassword .woocommerce-form-row.form-row {
width: 50%;
margin: 0 auto; }
form.woocommerce-ResetPassword .woocommerce-form-row.form-row.woocommerce-form-row--first {
width: 100%; }
form.woocommerce-ResetPassword .woocommerce-form-row.form-row.woocommerce-form-row--last {
float: none;
width: 100%; } .woocommerce-Address .title,
.addresses .title {
margin-bottom: 20px; }
.woocommerce-Address .title h3,
.addresses .title h3 {
text-transform: none;
font-size: 25px;
font-weight: 400;
display: inline-block;
margin-bottom: 0; }
.woocommerce-Address .edit,
.addresses .edit {
font-size: 12px;
display: inline-block;
font-weight: 400;
margin-left: 5px; }
.woocommerce-MyAccount-content input[type='text'],
.woocommerce-MyAccount-content input[type='tel'],
.woocommerce-MyAccount-content input[type='email'],
.woocommerce-MyAccount-content .select2-selection.select2-selection--single {
border: none; }
.woocommerce-MyAccount-content h3 {
background-color: #ffffff !important;
padding-top: 0 !important; }
.woocommerce-MyAccount-content .woocommerce-address-fields label {
text-transform: uppercase;
letter-spacing: 0.1em; }
.woocommerce-MyAccount-content .woocommerce-address-fields .required {
border: none; } .woocommerce-MyAccount-downloads .download-actions .button.download {
border: none;
background-color: transparent;
padding: 0; }
.woocommerce-MyAccount-downloads .download-actions .button.download:before {
display: inline-block;
vertical-align: middle;
margin-right: 5px;
content: ""; } form#add_payment_method .woocommerce-PaymentMethods {
margin-bottom: 20px; } .woocommerce-EditAccountForm.edit-account label {
text-transform: none;
letter-spacing: 0; }
.woocommerce-EditAccountForm.edit-account input[type='password'],
.woocommerce-EditAccountForm.edit-account .select2-selection.select2-selection--single {
border: none; }
.order-again a {
border: none; }
.order-again a:hover {
background-color: #333333 !important; } .archive.woocommerce #main.site-content .term-description,
.archive.woocommerce #main.site-content .page-description {
display: none; }
.shop-menu {
max-width: 960px;
padding-bottom: 10px;
margin: 30px auto 0; }
a.show-categories-menu {
display: none;
text-transform: uppercase;
font-weight: 500;
letter-spacing: .1em;
margin-top: 10px;
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 3px solid; }
a.show-categories-menu:after {
margin-left: 5px;
content: ""; }
a.show-categories-menu.open:after {
content: ""; }
ul.product-categories-menu {
font-size: 0;
max-height: 35px;
list-style: none;
overflow: hidden;
padding: 0;
margin: 0 auto; }
ul.product-categories-menu li.cat-item {
text-transform: uppercase;
font-size: 15px;
font-weight: 500;
letter-spacing: .1em;
display: inline-block;
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
margin: 0 20px;
padding-bottom: 10px; }
ul.product-categories-menu li.cat-item > a {
position: relative;
display: inline-block; }
ul.product-categories-menu li.cat-item > a:after {
content: '';
position: absolute;
left: 50%;
bottom: -3px;
height: 3px;
width: 0;
transform: translateX(-50%); }
ul.product-categories-menu li.cat-item > a:hover:after {
width: 100%; }
ul.product-categories-menu li.shop-back-link a span {
display: inline-block;
margin-right: 5px;
transition: transform .5s ease; }
ul.product-categories-menu li.shop-back-link a:hover span {
transform: translateX(-5px); }
ul.product-categories-menu + select {
display: none; }
.products {
position: relative; }
.categories-row {
margin-bottom: 50px; }
.categories-row.categories-carousel {
opacity: 0; }
.categories-row.categories-carousel .product-category--content > a {
margin-left: 0;
margin-right: 0; }
.categories-row.categories-carousel.slick-initialized {
opacity: 1; }
.shop-loop-head {
-ms-flex-align: center;
align-items: center;
margin-left: 0;
margin-right: 0;
margin-bottom: 30px; }
.shop-loop-head > div {
padding: 0;
margin-bottom: 8px; }
.shop-loop-head .woocommerce-result-count {
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: #ababab;
margin-bottom: 0; }
.shop-loop-head .woocommerce-result-count span {
color: #333333; }
.shop-loop-head .switcher {
display: inline-block;
text-align: center;
width: 30px;
height: 30px;
line-height: 28px;
cursor: pointer;
border: 1px solid #eeeeee;
margin-right: 5px; }
.shop-filter .woocommerce-ordering {
text-align: right;
display: inline-block;
vertical-align: middle;
margin-right: 20px; }
.shop-filter select.orderby {
display: none; }
.shop-filter .nice-select {
border: none;
height: auto; }
.shop-filter .nice-select .list {
padding: 10px; }
.col-switcher {
font-size: 14px;
display: none;
vertical-align: middle;
background-color: #f5f5f5;
padding: 9px 20px; }
.col-switcher span {
display: inline-block;
vertical-align: middle; }
.col-switcher a {
position: relative;
display: inline-block;
vertical-align: middle;
margin-left: 5px;
margin-right: 5px; }
.col-switcher a:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 1px;
background-color: #333333; }
.col-switcher a:hover,
.col-switcher a:focus,
.col-switcher a.active {
font-weight: 600;
color: #333333; }
.col-switcher a:hover:after,
.col-switcher a:focus:after,
.col-switcher a.active:after {
width: 100%; }
.amely-filter-buttons {
display: inline-block; }
.amely-filter-buttons .open-filters {
font-size: 14px;
font-weight: 600; }
.amely-filter-buttons .open-filters:after {
content: '\e64b';
margin-left: 10px;
display: inline-block;
vertical-align: middle;
font-size: 12px; }
.amely-filter-buttons .open-filters.opened:after {
content: '\e646'; }
.filters-area {
background-color: #f9f9f9;
padding: 30px 30px 0;
margin-top: -10px;
margin-bottom: 30px;
display: none; }
.active-filters {
margin-top: -15px;
margin-bottom: 15px;
min-height: 1px; }  .wb-thumb-wrapper .wb-thumb-cnt {
padding: 0; }
.wb-thumb-wrapper .wb-thumb-title a {
font-size: 16px; } .eb-scrollbarcnt .scrollbar {
background-color: transparent;
width: 6px; }
.eb-scrollbarcnt .scrollbar:hover .track {
background-color: #e6e6e6; }
.eb-scrollbarcnt .scrollbar:hover .thumb {
width: 6px; }
.eb-scrollbarcnt .track {
background-color: transparent;
width: 6px;
border-radius: 3px; }
.eb-scrollbarcnt .thumb {
background-color: #9f9f9f;
width: 3px;
left: 0; }
.eb-scrollbarcnt .thumb .end {
background-color: #9f9f9f; }
.eb-scrollbarcnt .scrollbar,
.eb-scrollbarcnt-short .scrollbar {
z-index: 1 !important; }
.wb-alphabet-table .wb-other-brands {
display: table-cell;
vertical-align: middle; }
.wb-filter-amely .wb-alphabet-table {
background-color: #f5f5f5;
padding: 15px 0; }
.wb-filter-amely .wb-alphabet-table .wb-all-alphabet {
display: table-cell;
vertical-align: middle;
text-align: center;
width: 60px;
line-height: 1.5;
border-right: 1px solid #eeeeee; }
.wb-filter-amely .wb-alphabet-table .wb-alphabet-item {
font-size: 15px !important;
font-weight: 600;
padding: 0 10px; }
.wb-filter-amely .wb-other-brands {
display: table-cell;
vertical-align: middle;
padding-left: 20px; }
.wb-filter-amely .eb-scrollbarcnt {
margin-top: 0; }
.wb-filter-amely .eb-scrollbarcnt .overview {
padding: 0; }
.wb-brandlist-amely .wb-filter-item-cnt {
border-top: 1px solid #eeeeee;
padding: 10px 0 10px 20px; }
.wb-brandlist-amely .wb-filter-item {
font-size: 16px;
padding-right: 5px; }
.wb-brandlist-amely .brand-count {
font-size: 14px; } .wb-allview.wb-allview-amely .wb-allview-cat-cnt {
margin-bottom: 70px; }
.wb-allview.wb-allview-amely .wb-allview-title {
font-size: 72px;
line-height: 1.5em;
padding-left: 0;
padding-right: 0;
padding-bottom: 20px;
margin-bottom: 30px;
border-bottom: 1px solid #dddddd;
font-weight: 600;
color: #333333; }
.wb-allview.wb-allview-amely .wb-allview-item-cnt img {
margin-bottom: 10px; }
.wb-allview-formcnt select#pw_brand_category_filter {
display: none; }
.wb-allview-formcnt .select2 {
width: 50% !important; }
.wb-allview-formcnt .select2 .select2-selection {
border: none !important;
background-color: #f7f7f7;
height: 50px; }
.wb-allview-formcnt .select2 .select2-selection .select2-selection__rendered {
position: relative;
line-height: 50px !important; }
.wb-allview-formcnt .select2 .select2-selection .select2-selection__rendered:after {
position: absolute;
top: 50%;
right: 30px;
font-size: 18px;
transform: translateY(-50%);
content: ""; }
.wb-allview-formcnt .select2 .select2-selection .select2-selection__arrow {
display: none; }
.wb-allview-lettercnt {
text-align: left;
border: 1px solid #eeeeee;
margin: 50px 0;
padding: 35px 30px 5px; }
.wb-allview-lettercnt .wb-wb-allview-letters {
text-align: center;
font-size: 36px;
font-weight: 600;
width: 60px;
height: 60px;
border: 1px solid #eeeeee;
padding: 10px 0;
margin-right: 30px;
margin-bottom: 30px; }
.wb-allview-lettercnt .wb-wb-allview-letters:hover, .wb-allview-lettercnt .wb-wb-allview-letters:focus {
color: #ffffff !important; }
.wb-allview.wb-allview-amely .wb-allview-cat-cnt {
position: relative; }
.wb-allview.wb-allview-amely .wb-allview-cat-cnt .go-to-filter {
position: absolute;
bottom: -60px;
right: 0; }
.wb-allview.wb-allview-amely .wb-allview-cat-cnt .go-to-filter:after {
margin-left: 10px;
content: ""; }
.wb-allview-formcnt.wb-multi-filter-amely {
text-align: left; }
.wb-allview-formcnt.wb-multi-filter-amely label.pw_brand_category_filter_checkbox:before {
display: inline-block;
vertical-align: -3px;
position: relative;
height: 20px;
width: 20px;
border: 1px solid #dddddd;
background-image: none;
margin-top: 0;
margin-right: 5px; }
.wb-allview-formcnt.wb-multi-filter-amely label.pw_brand_category_filter_checkbox:after {
position: absolute;
left: 17px;
top: 6px;
opacity: 0;
content: ""; }
.wb-allview-formcnt.wb-multi-filter-amely label.pw_brand_category_filter_checkbox.pw-active-filter:after {
opacity: 1; }
.pw_brand_loading_cnt .pw_brand_le_loading:before {
display: inline-block;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
transform: scale(2); }
.pw_brand_loading_cnt img {
display: none; } .wb-bx-wrapper.wb-car-amely {
max-width: none !important;
text-align: center;
margin: 0 auto 60px; }
.wb-bx-wrapper.wb-car-amely img {
margin: 0 auto; }
.wb-bx-wrapper.wb-car-amely .wb-car-title {
font-size: 14px;
margin-top: 10px; }
.wb-bx-wrapper.wb-car-amely .wb-car-title > a {
font-size: 16px; }
.wb-bx-wrapper.wb-car-amely .wb-car-item-cnt {
background: transparent; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-controls-direction {
top: 50%;
transform: translateY(-50%); }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-controls-direction a {
text-indent: 0;
z-index: 99; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev,
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next {
position: absolute;
top: 50%;
width: 30px;
height: 60px;
font-size: 0;
opacity: .6;
z-index: 1;
background-color: #333333;
background-image: none !important;
transform: translateY(-50%); }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev:before,
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next:before {
position: absolute;
display: block;
top: 50%;
left: 50%;
color: #ffffff;
font-size: 14px;
transform: translate(-50%, -50%);
content: ""; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev:hover,
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next:hover {
opacity: 1; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev {
left: -15px; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next {
left: auto;
right: -15px; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next:before {
content: '\f054'; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager {
bottom: -50px; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a {
cursor: pointer;
line-height: 1.5;
border: none;
height: 5px;
width: 20px;
background-color: #333333;
border-radius: 0;
opacity: .6;
margin: 0 5px 0 0; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a:hover, .wb-bx-wrapper.wb-carousel-amely .wb-bx-pager.wb-bx-default-pager .wb-bx-pager-item a.active {
opacity: 1; } .wb-brandpro-car-header-amely {
text-align: center; }
.wb-brandpro-car-header-amely span {
display: block;
font-size: 36px;
font-weight: 700;
line-height: 1.6;
color: #333333;
margin-bottom: 25px; }
.wb-brandpro-car-header-amely span:after {
content: '';
display: block;
height: 2px;
width: 100px;
background-color: #cccccc;
margin: 20px auto 0; }
.wb-brandpro-car-header-amely a {
margin-left: 5px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely {
margin-top: 40px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-bxslider > li {
margin: 0 15px !important; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt {
border: none; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-detail {
background-color: transparent;
padding: 0; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-title h3 {
font-size: 16px;
line-height: 1.5;
text-transform: none;
margin-top: 20px;
margin-bottom: 10px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-price {
color: #d92523;
font-size: 20px;
font-weight: 600;
margin-bottom: 5px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-price del {
font-size: 15px;
margin-right: 5px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-meta span {
font-size: 16px;
margin-top: 5px; }
.wb-brandpro-car-header.wb-brandpro-car-header-amely + .wb-bx-wrapper.wb-carousel-amely .wb-brandpro-car-cnt .wb-brandpro-car-meta a {
font-size: 16px; }
.wb-brandpro-car-header-amely + .products {
margin-top: 40px; } select#pw_brand_category_filter_product {
display: none; }
select#pw_brand_category_filter_product + .select2 {
width: 30% !important;
margin: 0 15px 10px; }
.wb-brandpro-list-cnt .wb-brandpro-list-detail {
padding: 0; }
.wb-brandpro-list-cnt .wb-brandpro-list-detail .wb-brandpro-list-title h3 {
display: inline-block;
font-size: 16px;
line-height: 1.5;
text-transform: none;
margin-top: 20px;
margin-bottom: 10px; }
.wb-brandpro-list-cnt .wb-brandpro-list-detail .wb-brandpro-list-price {
color: #d92523;
font-size: 20px;
font-weight: 600;
margin-bottom: 5px; }
.wb-brandpro-list-cnt .wb-brandpro-list-detail .wb-brandpro-list-price del {
font-size: 15px;
margin-right: 5px; }
.wb-brandpro-list-cnt .wb-brandpro-list-meta span {
font-size: 16px;
font-weight: 600;
margin-top: 5px; }
.wb-brandpro-list-cnt .wb-brandpro-list-meta a {
font-size: 16px;
font-weight: 400; }
.wb-brandpro-list-cnt .tooltip-cnt {
top: -43px;
height: auto;
border: 1px solid #eeeeee;
margin-left: -15px;
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.15); } #pw_stick_brands {
font-weight: 600;
text-transform: uppercase;
letter-spacing: .03em;
width: 100px;
height: 50px;
color: #333333;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); }
#pw_stick_brands .pw-title {
line-height: 50px; }
#pw_stick_brands .pw-title:before {
margin-right: 5px;
content: ""; }
.pw_stick_brands {
padding: 0 20px 20px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15); }
.pw_stick_brands .pw-content-close {
margin-top: 10px;
margin-right: -10px; }
.pw_stick_brands.pw-content-left {
left: 100px; }
.pw_stick_brands.pw-content-right {
right: 100px; } .wb-posted_in {
display: none; }
.wb-single-img-cnt {
margin-bottom: 20px; }
.wb-single-img-cnt a {
margin: 0; }
.wb-single-img-cnt img {
height: auto !important;
width: auto !important; }
.wb-single-img-cnt + .product_meta {
margin-top: 0 !important; } .widget_pw_widget_a_z_views .wb-alphabet-table {
padding: 10px 0;
margin-bottom: 0; }
.widget_pw_widget_a_z_views .wb-alphabet-table + .eb-scrollbarcnt {
margin-top: 0; }
.widget_pw_widget_a_z_views .wb-alphabet-table .wb-alphabet-item {
font-size: 16px; }
.widget_pw_widget_a_z_views .brand-count {
font-size: 14px; }
.widget_pw_widget_a_z_views .wb-filter-item-cnt.brand-item-short {
border-bottom: 1px solid #eeeeee; }
.widget_pw_widget_a_z_views .wb-filter-item-cnt .wb-filter-item {
font-size: 15px;
padding: 14px 0; } .woocommerce-cart table.cart {
border: none;
width: 100%; }
.woocommerce-cart table.cart tr {
border-bottom: 1px solid #ededed; }
.woocommerce-cart table.cart td {
padding-top: 30px;
padding-bottom: 30px; }
.woocommerce-cart table.cart td.product-remove {
text-align: center; }
.woocommerce-cart table.cart td.product-remove a {
font-size: 0; }
.woocommerce-cart table.cart td.product-remove a:before {
font-size: 20px;
content: ""; }
.woocommerce-cart table.cart td.product-thumbnail {
width: 80px; }
.woocommerce-cart table.cart td.product-name {
width: 30%;
padding-left: 20px; }
.woocommerce-cart table.cart td.product-name a {
display: block;
font-size: 16px;
font-weight: 500;
line-height: 1;
margin-bottom: 20px; }
.woocommerce-cart table.cart td.product-price {
clear: left; }
.woocommerce-cart table.cart td.product-quantity .quantity.amely_qty {
background-color: #ffffff; }
.cart-actions {
margin-top: 35px;
padding-bottom: 40px;
border-bottom: 1px solid #eeeeee; }
.cart-actions .coupon label {
display: none; }
.cart-actions #coupon_code {
display: inline-block;
max-width: 300px; }
.cart-actions input[name='apply_coupon'] {
border: none;
color: #333333;
background-color: #dddddd; }
.cart-actions input[name='apply_coupon']:hover {
color: #ffffff; }
.cart-actions button[name='update_cart'], .cart-actions [name='update_cart'].amely-button {
float: right;
cursor: pointer; }
.cart-collaterals {
margin-top: 80px; }
.cart-collaterals h2 {
font-size: 34px;
font-weight: 400;
text-align: center;
margin-top: 0; }
.cart-collaterals .cart_totals {
float: right;
width: 35%;
background-color: #f7f7f7;
padding: 30px; }
.cart-collaterals .cart_totals .select2-container--default .select2-selection--single {
text-align: left;
background-color: #f7f7f7; }
.cart-collaterals .cart_totals button[name='calc_shipping'], .cart-collaterals .cart_totals [name='calc_shipping'].amely-button {
color: #333333;
background-color: transparent;
border: none;
padding: 0; }
.cart-collaterals .shipping-calculator-button {
font-size: 12px;
text-decoration: underline; }
.cart-collaterals table.shop_table {
width: 100%;
border: none;
margin-bottom: 30px; }
.cart-collaterals table.shop_table th {
font-weight: 400;
padding-left: 10px !important;
color: #333333; }
.cart-collaterals table.shop_table td {
padding-left: 10px !important;
text-align: right; }
.cart-collaterals form.woocommerce-shipping-calculator p {
margin-bottom: 10px; }
.cross-sells {
float: left;
width: 60%; }
.cross-sells h2 {
margin-bottom: 50px; } .woocommerce-checkout h3 {
text-transform: none;
font-size: 25px;
margin-top: 10px;
font-weight: 400; }
.woocommerce-checkout .woocommerce-info {
margin-bottom: 20px;
padding: 0;
border: none;
background-color: transparent; }
.woocommerce-checkout .woocommerce-info:before {
display: none; }
.woocommerce-checkout .showlogin,
.woocommerce-checkout .showcoupon {
position: relative;
color: #333333; }
.woocommerce-checkout .showlogin:after,
.woocommerce-checkout .showcoupon:after {
position: absolute;
display: block;
content: '';
width: 100%;
height: 1px;
left: 0;
background-color: #333333; }
.woocommerce-checkout .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
text-transform: none;
letter-spacing: 0; }
.woocommerce-checkout .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox span {
padding-left: 5px; }
.woocommerce-checkout table.shop_table .product-name {
font-size: 16px; }
.woocommerce-checkout form .input-text,
.woocommerce-checkout .select2-selection.select2-selection--single {
border: none;
min-height: 40px; }
.woocommerce-checkout form.login,
.woocommerce-checkout form.checkout_coupon {
background-color: #f7f7f7;
max-width: 500px;
padding: 20px 25px;
margin-bottom: 25px; }
.woocommerce-checkout form.checkout_coupon .input-text {
max-width: 270px;
background-color: #ffffff;
height: 44px;
margin-bottom: 0; }
.woocommerce-checkout form.checkout_coupon .form-row-first {
width: auto; }
.woocommerce-checkout form.checkout_coupon .form-row-last {
float: left;
margin-left: 20px; }
.woocommerce-checkout form.checkout_coupon input[type="submit"] {
border: none;
color: #333333;
background-color: #dddddd; }
.woocommerce-checkout form.checkout_coupon input[type="submit"]:hover {
color: #ffffff; }
.woocommerce-checkout form.login .button {
width: 100%; }
.woocommerce-checkout form.login .input-text {
border: 1px solid #ffffff;
background-color: #ffffff; }
.woocommerce-checkout form.login .input-text:focus {
border-color: #c7c7c7; }
.woocommerce-checkout form.login label {
display: block;
margin-top: 15px; }
.woocommerce-checkout form.login .lost_password {
text-align: right;
float: right;
width: 50%;
position: relative;
z-index: 2;
margin-top: -43px; }
.woocommerce-checkout form.login .lost_password a:before {
display: inline-block;
vertical-align: middle;
font-size: 20px;
margin-right: 5px;
content: ""; }
.woocommerce-checkout form.woocommerce-checkout th.product-total,
.woocommerce-checkout form.woocommerce-checkout td.product-total {
text-align: right; }
.woocommerce-checkout form.woocommerce-checkout tfoot td {
text-align: right; }
.woocommerce-checkout abbr.required {
border: none; }
.woocommerce-checkout .wc_payment_method.payment_method_paypal .about_paypal {
font-size: 12px;
text-decoration: underline; }
.woocommerce-checkout-payment ul {
list-style: none;
padding: 0;
margin-top: 20px;
margin-bottom: 30px;
border-bottom: 1px solid #eeeeee; }
.woocommerce-checkout-payment li {
margin-bottom: 15px; }
.woocommerce-checkout-payment p {
margin-bottom: 0; }
.woocommerce-checkout-payment img {
max-height: 40px;
margin-left: 10px;
margin-right: 20px;
vertical-align: middle; }
.woocommerce-checkout-payment .payment_box {
background: #ffffff;
padding: 10px 15px;
position: relative;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
.woocommerce-checkout-payment .payment_box:before {
font-size: 22px;
position: absolute;
top: -3px;
left: 25px;
line-height: 0;
color: #ffffff;
content: ""; }
.woocommerce-checkout-payment .place-order {
text-align: right; }
.wooscp-area .wooscp-inner .wooscp-table .wooscp-table-inner .wooscp-table-close {
line-height: 28px; }
.mabel-siwc-img-wrapper {
width: auto; }
.mabel-siwc-img-wrapper .mb-siwc-tag {
font-size: 15px;
font-weight: 700;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25); }
.mabel-siwc-img-wrapper .mb-siwc-tag:hover, .mabel-siwc-img-wrapper .mb-siwc-tag.active {
color: #ffffff; }
.mb-siwc-popup.mb-siwc-popup {
opacity: 1;
z-index: 11;
border-radius: 0;
transition: opacity .5s ease; }
.mb-siwc-popup.mb-siwc-popup.mabel-invisible {
opacity: 0;
z-index: -1; }
.mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner {
text-align: left; }
.mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner h1, .mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner h2, .mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner a {
text-align: left; }
.mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner h1 {
font-size: 15px;
line-height: 1.4;
font-weight: 400; }
.mb-siwc-popup.mb-siwc-popup .mb-siwc-popup-inner h2 {
font-size: 14px;
font-weight: 700;
color: #333333; } .mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner {
padding: 20px 20px 0; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .siwc-thumb-wrapper {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
width: auto; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .siwc-thumb-wrapper a {
border: none;
background-color: transparent;
padding: 0;
margin: 0; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .product-title, .mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .product-price, .mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .shop-button {
margin-left: 0; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .product-title {
margin-top: 20px; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .product-title a {
text-align: left;
color: #696969;
border: none;
background-color: transparent;
padding: 0;
margin: 0; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .product-price {
padding-bottom: 0; }
.mabel-siwc-img-wrapper.product-popup .mb-siwc-popup .mb-siwc-popup-inner .wrap-price {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
padding-bottom: 15px; }
.mb-siwc-popup.mb-siwc-popup .shop-button {
display: block;
text-transform: uppercase;
letter-spacing: .1em;
padding: 10px 15px;
text-align: center; } .mb-siwc-popup.mb-siwc-popup .product-swatches .isw-swatch:last-of-type {
margin-bottom: 0; }
.mb-siwc-popup.mb-siwc-popup .product-swatches .isw-swatch--isw_color .isw-term {
vertical-align: middle;
height: 14px;
width: 14px;
border-radius: 100%;
line-height: 14px; }
.mb-siwc-popup.mb-siwc-popup .product-swatches .isw-swatch--isw_color .isw-term[data-term="white"] {
border: 1px solid #dddddd; }
.mb-siwc-popup.mb-siwc-popup .product-swatches .isw-swatch--isw_image .isw-term {
height: 14px;
width: 14px; }
.mb-siwc-popup.mb-siwc-popup .product-swatches .isw-swatch--isw_image .isw-term img {
vertical-align: middle !important;
border-radius: 100%; } table.shop_table.woocommerce-MyAccount-orders thead th {
text-align: center;
padding-top: 10px;
padding-bottom: 10px; }
table.shop_table.woocommerce-MyAccount-orders tbody td {
text-align: center; }
table.shop_table.woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-actions a.button {
color: #696969;
border: none;
background-color: transparent; }
table.shop_table.woocommerce-MyAccount-orders .order-number a {
text-decoration: underline; }
table.shop_table.woocommerce-MyAccount-orders .order-actions a {
border: none;
background-color: transparent;
padding: 0; } .woocommerce-order-received h2 {
font-size: 25px;
text-transform: none;
font-weight: 400;
margin-top: 30px; }
.woocommerce-order-received table.shop_table {
max-width: 500px; } table.woocommerce-table--order-details {
margin-bottom: 30px; }
table.woocommerce-table--order-details .wc-item-meta {
list-style-type: none;
font-size: 12px;
padding-left: 15px;
margin-bottom: 0; }
table.woocommerce-table--order-details .wc-item-meta .wc-item-meta-label {
color: #696969;
font-weight: 500; }
table.woocommerce-table--order-details tr.product-purchase-note {
background-color: #fafafa; }
table.woocommerce-table--order-details tr.product-purchase-note td {
border: none;
padding-left: 30px; }
table.woocommerce-table--order-details tr.product-purchase-note td p {
font-size: 12px; }
table.woocommerce-table--order-details tfoot tr:last-of-type td .woocommerce-Price-amount {
font-size: 20px; } table.customer_details {
margin-bottom: 30px; }
table.customer_details tr {
background: #fafafa; }
table.customer_details th {
font-weight: 600;
width: 50%; } .woocommerce .commentlist.notes {
list-style-type: none;
padding: 0;
margin-bottom: 30px; }
.woocommerce .commentlist.notes .comment-text {
padding: 15px 20px;
min-height: 0;
margin: 0; }
.woocommerce .commentlist.notes .comment-text p.meta {
font-size: 13px;
letter-spacing: .03em; }
.woocommerce .commentlist.notes .comment-text p.meta:before {
margin-right: 5px;
content: ""; } form.track_order {
padding: 40px 30px;
background-color: #f7f7f7; }
form.track_order label {
text-transform: none;
font-size: 20px;
font-weight: 400;
color: #333333; }
form.track_order .input-text {
background-color: #ffffff; }
form.track_order .form-row {
float: none !important;
width: 100% !important; }
form.track_order .form-row.form-row-last {
margin-bottom: 40px !important; }
form.track_order p.form-row:last-of-type {
text-align: center;
margin-bottom: 0; }
form.track_order p.form-row:last-of-type .button {
width: 200px; }
form.track_order input[type="text"] {
background-color: #ffffff;
border-color: transparent; }
.woocommerce > .order-info {
font-size: 14px;
background-color: #fafafa;
padding: 20px;
margin-bottom: 20px; }
.woocommerce > .order-info + h2 {
font-size: 25px;
text-transform: uppercase; }
.order-again {
margin-bottom: 20px; }
.order-again + header > h2 {
font-size: 25px;
text-transform: uppercase; }
.woocommerce-customer-details .woocommerce-customer-details--phone {
margin-top: 10px;
margin-bottom: 0; }
.woocommerce-customer-details .woocommerce-customer-details--phone:before {
margin-right: 10px;
content: ""; }
.woocommerce-customer-details .woocommerce-customer-details--email:before {
margin-right: 10px;
content: ""; }
.woobt-wrap {
margin-top: 25px; }
.woobt-wrap .woobt-text {
font-size: 15px;
line-height: 1.6; }
.woobt-wrap .woobt-text span {
color: #c61932;
font-weight: 600; }
.woobt-wrap .woobt-products.woobt-table {
width: 100%; }
.woobt-wrap .woocommerce-Price-amount.amount {
font-size: 15px;
line-height: 28px;
font-weight: 600;
color: #333333; }
.woobt-wrap del .woocommerce-Price-amount.amount {
font-size: 13px;
text-decoration: line-through; }
.woobt-wrap .woobt-thumb {
width: 100px; }
.woobt-wrap .woobt-title {
font-size: 15px;
line-height: 1.6; }
.woobt-wrap .woobt-thumb img {
height: 50px !important; }
.woobt-wrap .woobt-title {
padding-left: 10px !important; } .category-grid-item {
margin-bottom: 30px; }
.category-grid-item:hover img {
transform: scale(1.05); }
.category-grid-item:hover .product-category-content {
border-bottom-color: #cccccc; }
.category-grid-item:hover .product-category-content .category-link:after {
margin-left: 10px; }
.category-grid-item.slick-slide {
margin-bottom: 0; }
.category-grid-item.slick-slide a {
margin-left: 0;
margin-right: 0; }
.category-grid-item .product-category-thumbnail {
position: relative;
overflow: hidden; }
.category-grid-item .product-category-thumbnail a {
display: block;
margin: 0; }
.category-grid-item img {
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.category-grid-item .woocommerce-loop-category__title {
text-align: center;
font-size: 20px;
letter-spacing: .03em;
line-height: 1.5;
padding-top: 20px;
margin: 0; }
.category-grid-item .woocommerce-loop-category__title a {
font-weight: 500; }
.category-grid-item mark {
font-size: 15px;
font-weight: 400;
display: block;
background-color: transparent;
color: #606060;
letter-spacing: 0;
padding: 0;
opacity: 1; }
.category-grid-item .product-category-content {
text-align: center;
padding: 0 15px; }
.category-grid-item .product-category-content .category-link a {
display: inline-block;
text-align: center;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
line-height: 1.3em;
letter-spacing: 0;
color: #cccccc;
margin-top: 5px;
margin-bottom: 30px; }
.category-grid-item .product-category-content .category-link:after {
position: relative;
font-size: 10px;
vertical-align: 1px;
color: #cccccc;
margin-left: 5px;
content: ""; }
.hide_count .category-grid-item mark {
display: none !important; } .product-loop {
margin-bottom: 35px; }
.product-loop.empty-box {
opacity: 0; }
.product-loop.empty-box:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
z-index: 10; }
.product-loop.adding-item {
opacity: 0;
visibility: hidden; }
.product-loop.small-product .product-buttons .add-to-cart-btn {
font-size: 0; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading):before {
content: '\e60d';
line-height: 48px; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading).add_to_cart_button:before {
content: '\e60d'; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading).product_type_variable:before {
content: '\e64d'; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading).product_type_variable.isw-ready:not(.loading):not(.added):before {
content: '\e60d'; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading).product_type_variable.isw-readmore:not(.loading):not(.added):before {
content: '\e60d'; }
.product-loop.small-product .product-buttons .add-to-cart-btn a:not(.loading).product_type_external:before {
content: '\e62d'; }
.product-loop.small-product .product-buttons .add-to-cart-btn a.added:before {
content: '\f375'; }
.product-loop.extra-small-product .product-buttons,
.product-loop.extra-small-product .yith-wcwl-add-to-wishlist {
display: none; } .product-loop.outofstock .product-thumb:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: .8;
z-index: 1;
background-color: #ffffff; } .product-loop .product-thumb {
position: relative;
text-align: center;
overflow: hidden; }
.product-loop .product-thumb img {
margin: 0 auto; }
.image-full-width .product-loop .product-thumb img {
width: 100%; }
.product-loop .product-thumb.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
top: 50%;
left: 50%;
z-index: 3;
transform: scale(1.5) translate(-50%, -50%); }
.product-loop .product-thumb.loading:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff;
opacity: .8;
z-index: 2; }
.product-loop .hover-image {
position: absolute;
top: 0;
left: 50%;
opacity: 0;
visibility: hidden;
transform: translate(-50%, 20px);
transition-duration: .7s; }
.product-loop:hover .hover-image {
opacity: 1;
visibility: visible;
transform: translate(-50%, 0); } .product-loop .product-buttons {
position: absolute;
left: 50%;
bottom: 0;
font-size: 0;
width: 100%;
z-index: 2;
transform: translateX(-50%); }
.product-loop .product-buttons > div {
opacity: 0;
visibility: hidden;
text-align: center;
display: inline-block;
vertical-align: top;
height: 48px;
transform: translateY(20px); }
.product-loop .product-buttons > div > a {
display: block; }
.product-loop .product-buttons > div a:before {
font-size: 18px;
line-height: 48px;
height: 100%;
width: 100%; }
.product-loop .product-buttons > div a:focus {
outline: none; }
.product-loop .product-buttons > div.loading a:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg); }
.product-loop .product-buttons .quick-view-btn {
width: 48px;
border-right: 1px solid rgba(255, 255, 255, 0.2); }
.product-loop .product-buttons .quick-view-btn a:before {
content: '\f4a4'; }
.product-loop .product-buttons .add-to-cart-btn {
font-size: 14px;
letter-spacing: .1em;
width: calc(100% - 48px - 48px);
transition-delay: .1s; }
.product-loop .product-buttons .add-to-cart-btn a {
height: 48px;
line-height: 48px;
width: 100%;
background-color: transparent;
border: none;
border-radius: 0;
padding: 0; }
.product-loop .product-buttons .add-to-cart-btn a.loading {
font-size: 0; }
.product-loop .product-buttons .add-to-cart-btn a.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
display: block; }
.product-loop .product-buttons .add-to-cart-btn a.added:before {
display: inline-block;
vertical-align: -1px;
width: auto;
margin-right: 5px;
content: ""; }
.product-loop .product-buttons .add-to-cart-btn a.added_to_cart {
display: none; }
.product-loop .product-buttons .compare-btn {
width: 48px;
display: inline-block;
border-left: 1px solid rgba(255, 255, 255, 0.2);
margin: 0;
transition-delay: .2s; }
.product-loop .product-buttons .compare-btn a:before {
content: '\f4a8'; }
.product-loop .product-buttons .compare-btn .blockUI,
.product-loop .product-buttons .compare-btn .blocOverlay {
display: none !important; }
.product-loop .product-buttons.mobile .quick-view-btn,
.product-loop .product-buttons.mobile .compare-btn {
display: none; }
.product-loop .product-buttons.mobile .add-to-cart-btn {
width: 100%; }
.product-loop .product-buttons.product-buttons--dark > div {
background-color: #333333; }
.product-loop .product-buttons.product-buttons--dark > div a {
color: #ababab; }
.product-loop .product-buttons.product-buttons--dark > div:hover {
background-color: #c61932; }
.product-loop .product-buttons.product-buttons--dark > div:hover a {
color: #ffffff; }
.product-loop .product-buttons.product-buttons--light > div {
background-color: #ffffff;
border: 1px solid #eeeeee; }
.product-loop .product-buttons.product-buttons--light > div a {
color: #333333; }
.product-loop .product-buttons.product-buttons--light .add-to-cart-btn {
border-left-width: 0;
border-right-width: 0; }
.product-loop:hover .product-buttons > div {
opacity: 1;
visibility: visible;
transform: translateY(0); } .product-loop .yith-wcwl-add-to-wishlist {
position: absolute;
top: 20px;
right: 20px;
font-size: 0;
margin-top: 0;
z-index: 2; }
.product-loop .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important; }
.product-loop .yith-wcwl-add-to-wishlist a {
display: block;
text-align: center;
line-height: 1; }
.product-loop .yith-wcwl-add-to-wishlist a:before {
font-size: 24px; }
.product-loop .yith-wcwl-add-to-wishlist a:focus {
outline: none; }
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist:before {
display: inline-block;
content: '\f387'; }
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
line-height: 0;
vertical-align: -20px; }
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: '\f388'; }
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback,
.product-loop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .feedback {
display: none; } .product-loop .product-info {
position: relative;
text-align: left; }
.product-loop .product-info .product-title {
font-size: 15px;
line-height: 1.5;
margin-top: 20px;
margin-bottom: 10px; }
.product-loop .product-info a {
font-weight: 400;
color: #696969; }
.product-loop .product-info .wrap-price {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: justify;
justify-content: space-between; }
.product-loop .product-info .price {
display: block;
font-size: 14px;
line-height: 1.7;
font-weight: 700;
color: #333333; }
.product-loop .product-info .price del {
font-size: .875em;
font-weight: 600;
margin-right: 5px; }
.product-loop .product-info .product-rating {
display: none; } .product-loop .product-description {
display: none;
margin-top: 15px; } .isw-swatches--in-loop .isw-swatch:last-of-type {
margin-bottom: 0; }
.isw-swatches--in-loop .isw-swatch--isw_color .isw-term {
vertical-align: middle;
height: 16px;
width: 16px;
line-height: 16px; }
.isw-swatches--in-loop .isw-swatch--isw_color .isw-term.isw-selected {
box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #aaaaaa; }
.isw-swatches--in-loop .isw-swatch--isw_image .isw-term {
height: 16px;
width: 16px;
border-radius: 100%; }
.isw-swatches--in-loop .isw-swatch--isw_image .isw-term.isw-selected {
box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #aaaaaa; }
.product-loop.isw-product-swatched .hover-image {
display: none; } .products.yith-wcan-loading {
background: none;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
opacity: .6;
transform: scale(0.5);
margin: 0 auto !important; } #woo-quick-view {
display: none;
position: fixed;
max-width: 960px;
visibility: hidden; -webkit-backface-visibility: hidden;
backface-visibility: hidden;
will-change: left, top, width;
z-index: 1000;
transform: translateZ(0); }
#woo-quick-view.is-visible {
visibility: visible; }
#woo-quick-view.animate-width {
background-color: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
transition: box-shadow .3s; }
#woo-quick-view .container {
max-width: none; }
#woo-quick-view .quick-view-close {
cursor: pointer;
position: absolute;
top: 0;
right: 0;
opacity: 0;
visibility: hidden;
height: 50px;
width: 50px;
line-height: 50px;
z-index: 99; }
#woo-quick-view .quick-view-close:after {
font-size: 50px;
color: #333333;
content: ""; }
#woo-quick-view .product-badges span {
left: 0; }
#woo-quick-view .quickview-loading {
display: none;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.9);
z-index: 4; }
#woo-quick-view .quickview-loading span {
position: absolute;
top: 50%;
left: 50%;
width: 80%;
text-align: center;
font-size: 28px;
color: #333333;
transform: translate(-50%, -50%); }
#woo-quick-view .quickview-loading span:before {
display: block;
text-align: center;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
z-index: 3;
margin-bottom: 40px;
transform: scale(2.5); }
#woo-quick-view .quickview-loading.added span:before {
font-size: 30px;
content: ""; }
#woo-quick-view .quickview-loading.error span:before {
font-size: 30px;
content: ""; }
#woo-quick-view .post-password-form p {
opacity: 0;
visibility: hidden; }
#woo-quick-view .images {
position: relative;
float: left;
width: 432px;
margin-bottom: 0;
z-index: 2; }
#woo-quick-view .quick-view-carousel {
overflow: hidden;
margin-bottom: 0; }
#woo-quick-view .quick-view-carousel img.slick-slide {
width: 432px; }
#woo-quick-view .quick-view-carousel img:not(.slick-slide):not(:first-of-type) {
display: none; }
#woo-quick-view .summary {
position: absolute;
opacity: 0;
visibility: hidden;
float: left;
z-index: 1;
width: calc(100% - 432px);
max-height: 544px;
padding: 40px 50px 30px;
transition: opacity 0.3s, visibility 0s; }
#woo-quick-view .summary table.product_meta,
#woo-quick-view .summary table.product-share {
width: 100%; }
#woo-quick-view .summary.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y,
#woo-quick-view .summary.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
width: 6px; }
#woo-quick-view .slick-dots {
position: absolute;
left: 0;
bottom: 20px;
margin-top: 0 !important; }
#woo-quick-view.add-content .quick-view-close {
opacity: .4;
visibility: visible;
animation: quickview-slide-in 0.5s; }
#woo-quick-view.add-content .quick-view-close:hover {
opacity: 1; }
#woo-quick-view.add-content .post-password-form p {
opacity: 1;
visibility: visible; }
#woo-quick-view.add-content .summary {
opacity: 1;
visibility: visible;
position: relative; }
#woo-quick-view.add-content .summary .product_title {
line-height: 1.2; }
#woo-quick-view.add-content .summary .product_title a {
color: #696969; }
#woo-quick-view.add-content .summary .product_title,
#woo-quick-view.add-content .summary .woocommerce-product-rating,
#woo-quick-view.add-content .summary .price,
#woo-quick-view.add-content .summary .woocommerce-product-details__short-description,
#woo-quick-view.add-content .summary .cart,
#woo-quick-view.add-content .summary .stock,
#woo-quick-view.add-content .summary .product-meta-buttons,
#woo-quick-view.add-content .summary .product_meta,
#woo-quick-view.add-content .summary .product-share {
animation: quickview-slide-in 0.5s; }
.mfp-content #woo-quick-view {
display: block;
position: relative;
visibility: visible;
margin: 0 auto;
background-color: #ffffff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
.mfp-content #woo-quick-view .summary {
position: relative;
opacity: 1;
visibility: visible; }
.mfp-content #woo-quick-view .mfp-close {
height: 50px;
width: 50px;
line-height: 50px;
background-color: transparent;
opacity: .4; }
.mfp-content #woo-quick-view .mfp-close:before {
font-size: 50px;
content: ""; }
.mfp-content #woo-quick-view .mfp-close:hover {
opacity: 1; }
.woocommerce.single-product .product.product-layout-sticky .row.sticky-row {
-ms-flex-align: start;
align-items: flex-start; }
.woocommerce.single-product .product.product-layout-sticky .woocommerce-product-gallery__image {
margin-bottom: 10px !important; }
.woocommerce.single-product .product.product-layout-sticky .images .thumbnails {
opacity: 1;
visibility: visible; }
.woocommerce.single-product .product.product-layout-sticky .images .thumbnails > a {
opacity: 0;
visibility: hidden;
display: block;
margin-bottom: 10px;
transform: translateY(100px);
animation-duration: .5s;
animation-delay: .2s; }
.woocommerce.single-product .product.product-layout-sticky .images .thumbnails > a.animate-images {
opacity: 1;
visibility: visible;
transform: translateY(0); }
.woocommerce.single-product .product.product-layout-sticky .images .thumbnails img {
width: 100%; }
.woocommerce.single-product .page-title + .site-content .product.product-layout-background .background-wrapper,
.woocommerce.single-product .page-title + .site-content .product.product-layout-background-fullwidth .background-wrapper {
margin-top: -30px;
padding-top: 30px; }
.woocommerce.single-product .page-title + .site-content .product.product-layout-background .background-wrapper + .product-tabs-wrapper,
.woocommerce.single-product .page-title + .site-content .product.product-layout-background-fullwidth .background-wrapper + .product-tabs-wrapper {
margin-top: 0; }
.woocommerce.single-product .product.product-layout-background .background-wrapper,
.woocommerce.single-product .product.product-layout-background-fullwidth .background-wrapper {
padding-top: 60px; }
.woocommerce.single-product .product.product-title-hide .product_title {
display: none; }
.woocommerce.single-product .product .woocommerce-product-gallery {
margin-bottom: 40px; }
.woocommerce.single-product .product .woocommerce-product-gallery.only-featured-image {
margin-bottom: 0; }
.woocommerce.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
display: none; }
.woocommerce.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image {
position: relative; }
.woocommerce.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
width: 100%; }
.woocommerce.single-product .product .woocommerce-product-gallery .product-badges {
font-size: 15px; }
.woocommerce.single-product .product .woocommerce-product-gallery .product-badges span {
left: 0;
min-width: 70px;
padding: 3px 15px; }
.woocommerce.single-product .product .woocommerce-product-gallery .product-badges span + span {
top: 55px; }
.woocommerce.single-product .product .woocommerce-product-gallery .product-badges span + span + span {
top: 110px; }
.woocommerce.single-product .product .woocommerce-product-gallery .lightbox-btn {
font-size: 0;
line-height: 1;
position: absolute;
right: 20px;
top: 20px;
z-index: 1; }
.woocommerce.single-product .product .woocommerce-product-gallery .lightbox-btn i {
font-size: 30px; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist {
font-size: 0;
position: absolute;
top: 20px;
right: 20px;
margin-top: 0;
z-index: 1; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .ajax-loading,
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .feedback {
display: none !important; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist a {
display: block;
text-align: center;
line-height: 1; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist a:before {
font-size: 30px; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist a:focus {
outline: none; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist:before {
display: inline-block;
content: '\f387'; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
line-height: 0;
vertical-align: -5px; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: '\f388'; }
.woocommerce.single-product .product .woocommerce-product-gallery .yith-wcwl-add-to-wishlist + .lightbox-btn {
top: 70px; }
.woocommerce-product-gallery__wrapper {
position: relative; }
.woocommerce-product-gallery__slider {
opacity: 0;
visibility: hidden;
margin-bottom: 0; }
.woocommerce-product-gallery__slider:hover .slick-arrow {
opacity: 1; }
.thumbnails-bottom .woocommerce-product-gallery__slider {
margin-bottom: 30px; }
.only-featured-image .woocommerce-product-gallery__slider {
opacity: 1;
visibility: visible; }
.woocommerce-product-gallery__slider .slick-dots {
position: absolute;
left: 0;
bottom: 20px; }
.woocommerce-product-gallery__slider .slick-arrow.slick-prev {
left: 0; }
.woocommerce-product-gallery__slider .slick-arrow.slick-arrow {
right: 0; }
.woocommerce-product-gallery__slider .woocommerce-product-gallery__image,
.woocommerce-product-gallery__slider .woocommerce-product-gallery__image a {
cursor: crosshair; }
.product-layout-sticky .woocommerce-product-gallery__slider {
opacity: 1;
visibility: visible; }
.thumbnails-slider {
opacity: 0;
visibility: hidden;
transition: opacity .4s ease, height .4s ease; }
.thumbnails-slider .slick-slide {
margin-left: 5px;
margin-right: 5px; }
.thumbnails-slider .slick-slide.slick-current img {
border-color: #696969; }
.thumbnails-slider .slick-slide img {
width: 100%;
border: 1px solid transparent; }
.thumbnails-slider .slick-dots {
margin-top: 20px; }
.thumbnails-slider.slick-slider .slick-arrow {
height: 30px;
width: 30px;
visibility: visible; }
.thumbnails-slider.slick-slider .slick-arrow:before {
height: 30px;
width: 30px;
line-height: 30px;
font-size: 14px; }
.thumbnails-slider.slick-slider:hover .slick-arrow {
opacity: 1; }
.thumbnails-slider.slick-slider:hover .slick-arrow.slick-next {
right: -10px; }
.thumbnails-slider.slick-slider:hover .slick-arrow.slick-prev {
left: -10px; }
.thumbnails-slider.slick-vertical {
margin: 0; }
.thumbnails-slider.slick-vertical .slick-arrow {
height: 30px;
width: 49%;
color: #ffffff;
opacity: .7;
background-color: #333333;
transform: translateY(0); }
.thumbnails-slider.slick-vertical .slick-arrow:before {
height: 30px;
width: 100%;
line-height: 30px; }
.thumbnails-slider.slick-vertical .slick-arrow:hover {
opacity: 1;
color: #ffffff;
background-color: #333333; }
.thumbnails-slider.slick-vertical .slick-arrow.slick-next {
left: auto;
right: 0 !important;
top: auto;
bottom: 0; }
.thumbnails-slider.slick-vertical .slick-arrow.slick-next:before {
content: '\e64b'; }
.thumbnails-slider.slick-vertical .slick-arrow.slick-prev {
left: 0 !important;
top: auto;
bottom: 0; }
.thumbnails-slider.slick-vertical .slick-arrow.slick-prev:before {
content: '\e648'; }
.thumbnails-slider.slick-vertical .slick-arrow.slick-disabled {
opacity: .4 !important;
visibility: visible !important; }
.thumbnails-slider.slick-vertical .slick-list {
padding-top: 2px;
padding-bottom: 60px; }
.thumbnails-slider.slick-vertical .slick-slide {
border: none;
margin: 0 0 10px; }
.woocommerce.single-product .product .summary {
z-index: 1; }
.woocommerce.single-product .product .summary.single-nav-on {
position: relative; }
.woocommerce.single-product .product .summary.single-nav-on .post-nav-wrapper {
right: 15px; }
.woocommerce.single-product .product .summary .woocommerce-product-rating {
margin-bottom: 15px; }
.woocommerce.single-product .product .summary .product_title {
font-size: 24px;
line-height: 32px;
font-weight: 400;
color: #696969; }
.woocommerce.single-product .product .summary .woocommerce-review-link {
font-size: 14px;
vertical-align: middle; }
.woocommerce.single-product .product .summary .price {
font-size: 18px;
line-height: 28px;
font-weight: 600;
color: #333333;
margin-bottom: 20px; }
.woocommerce.single-product .product .summary .price del {
font-size: .875em;
margin-right: 10px; }
.woocommerce.single-product .product .summary .woocommerce-product-details__short-description p {
line-height: 1.6;
margin-bottom: 40px; }
.woocommerce.single-product .product .summary .stock {
display: inline-block;
text-transform: uppercase;
font-size: 12px;
font-weight: 500;
line-height: 2;
letter-spacing: .1em;
border: 2px solid transparent;
padding: 0 5px; }
.woocommerce.single-product .product .summary .stock.in-stock {
color: #297e29;
border-color: #297e29; }
.woocommerce.single-product .product .summary .stock.out-of-stock {
color: #8b0000;
border-color: #8b0000;
margin: 0; }
.woocommerce.single-product .product .summary form.cart {
font-size: 0;
margin-bottom: 25px; }
.woocommerce.single-product .product .summary form.cart .quantity {
margin-right: 20px; }
.woocommerce.single-product .product .summary .quantity {
display: inline-block;
vertical-align: top; }
.woocommerce.single-product .product .summary .single_add_to_cart_button {
font-size: 14px;
margin-right: 20px;
padding-left: 35px;
padding-right: 35px; }
.woocommerce.single-product .product .summary .single_add_to_cart_button.loading {
position: relative;
padding-left: 40px; }
.woocommerce.single-product .product .summary .single_add_to_cart_button.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
left: 10px; }
.woocommerce.single-product .product .summary .compare-btn {
display: inline-block;
vertical-align: bottom; }
.woocommerce.single-product .product .summary .compare-btn .blockUI.blockOverlay {
display: none !important; }
.woocommerce.single-product .product .summary .compare-btn:after {
margin: 0;
transform: translateX(-50%); }
.woocommerce.single-product .product .summary .compare-btn:hover:after {
transform: translateX(-50%) translateY(-8px); }
.woocommerce.single-product .product .summary .compare-btn.loading a:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
line-height: 1;
display: inline-block;
vertical-align: middle; }
.woocommerce.single-product .product .summary .compare-btn:hover a:before {
color: #ffffff; }
.woocommerce.single-product .product .summary .compare-btn a {
display: block;
height: 44px;
width: 44px;
line-height: 40px;
text-align: center;
border: 2px solid #e0e0e0; }
.woocommerce.single-product .product .summary .compare-btn a:before {
font-size: 20px;
color: #ababab;
line-height: 40px;
margin: 0;
content: ""; }
.woocommerce.single-product .product .summary form.variations_form table.variations {
width: 100%;
border: none;
margin-bottom: 20px; }
.woocommerce.single-product .product .summary form.variations_form table.variations td {
border: none;
padding: 10px 0 0; }
.woocommerce.single-product .product .summary form.variations_form table.variations td.label {
width: 25%; }
.woocommerce.single-product .product .summary form.variations_form label {
font-size: 16px;
font-weight: 500;
color: #333333;
margin-bottom: 0; }
.woocommerce.single-product .product .summary form.variations_form select.isw-selectbox {
display: none; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch {
vertical-align: middle; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_color .isw-term {
vertical-align: middle;
height: 24px;
width: 24px;
line-height: 24px; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_color .isw-term.isw-selected {
box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #aaaaaa; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_text .isw-term {
height: 30px;
min-width: 30px;
line-height: 30px;
font-size: 12px;
font-weight: 600;
text-align: center;
border-radius: 25px;
z-index: 1;
color: #ababab;
background-color: #eeeeee;
padding: 0 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_text .isw-term:hover, .woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_text .isw-term:focus, .woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_text .isw-term.isw-selected {
color: #ffffff; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_image .isw-term {
height: 24px;
width: 24px;
border-radius: 100%; }
.woocommerce.single-product .product .summary form.variations_form .isw-swatch--isw_image .isw-term.isw-selected {
box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px #aaaaaa; }
.woocommerce.single-product .product .summary form.variations_form .isw-selectbox.nice-select {
height: auto;
border-radius: 0;
border: none; }
.woocommerce.single-product .product .summary form.variations_form .out-of-stock {
margin-top: 15px; }
.woocommerce.single-product .product .summary .woocommerce-variation-add-to-cart {
display: inline-block;
margin-top: 15px; }
.woocommerce.single-product .product .summary p.cart {
display: inline-block;
margin-bottom: 25px; }
.woocommerce.single-product .product .summary p.cart + .compare-btn {
margin-bottom: 25px; }
.woocommerce.single-product .product .summary table.group_table {
width: 100%;
margin-bottom: 25px; }
.woocommerce.single-product .product .summary table.group_table td {
padding-top: 10px;
padding-bottom: 10px; }
.woocommerce.single-product .product .summary table.group_table td:first-of-type {
width: 150px;
padding-left: 0; }
.woocommerce.single-product .product .summary table.group_table td:first-of-type .quantity {
margin-right: 0; }
.woocommerce.single-product .product .summary table.group_table td.label {
font-size: 16px;
font-weight: 500; }
.woocommerce.single-product .product .summary table.group_table td.label label {
margin: 0; }
.woocommerce.single-product .product .summary table.group_table td.price {
font-size: 18px; }
.woocommerce.single-product .product .summary table.group_table .add-to-cart-btn > a {
text-align: center;
font-size: 12px;
background-color: transparent !important;
border: none !important;
padding: 0; }
.woocommerce.single-product .product .summary table.group_table .add-to-cart-btn > a.product_type_external:before {
margin-right: 5px;
content: ""; }
.woocommerce.single-product .product .summary table.product_meta,
.woocommerce.single-product .product .summary table.product-share {
width: 80%;
border-bottom: none; }
.woocommerce.single-product .product .summary table.product_meta tr,
.woocommerce.single-product .product .summary table.product-share tr {
padding: 0; }
.woocommerce.single-product .product .summary table.product_meta td,
.woocommerce.single-product .product .summary table.product-share td {
border: none;
padding-top: 5px;
padding-bottom: 0; }
.woocommerce.single-product .product .summary table.product_meta td.label,
.woocommerce.single-product .product .summary table.product-share td.label {
font-size: 14px;
font-weight: 500;
width: 30%;
color: #333333; }
.woocommerce.single-product .product .summary table.product_meta td.value a,
.woocommerce.single-product .product .summary table.product-share td.value a {
color: currentColor; }
.woocommerce.single-product .product .summary table.product_meta td:first-of-type,
.woocommerce.single-product .product .summary table.product-share td:first-of-type {
padding-left: 0; }
.woocommerce.single-product .product .summary table.product_meta span,
.woocommerce.single-product .product .summary table.product-share span {
font-size: 16px; }
.woocommerce.single-product .product .summary table.product_meta {
border-top: 1px solid #e0e0e0;
margin-top: 20px; }
.woocommerce.single-product .product .summary table.product_meta tr:first-of-type td {
padding-top: 20px; }
.woocommerce.single-product .product .summary table.product-share .share-list__item {
font-size: 16px; }
.woocommerce.single-product .product .summary table.product-share td {
padding-left: 0; }
.woocommerce.single-product .product .product-tabs-wrapper {
margin-top: 50px;
border-bottom: 1px solid #eeeeee; }
.woocommerce.single-product .product .product-tabs-wrapper .wc-tabs {
list-style: none;
margin: 0;
padding-top: 80px;
text-align: center;
border-top: 1px solid #ededed; }
.woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li {
position: relative;
display: inline-block;
font-size: 14px;
font-weight: 600;
margin: 0 22px; }
.woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li > a {
display: inline-block;
font-size: 24px;
font-weight: 400;
color: #ababab;
padding: 20px 0 18px; }
.woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li.active > a, .woocommerce.single-product .product .product-tabs-wrapper .wc-tabs li:hover > a {
color: #333333; }
.woocommerce.single-product .product .product-tabs-wrapper .wc-tabs-panel-wrapper {
background-color: #ffffff;
padding: 80px 0 60px; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--description > h2, .woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--additional_information > h2 {
display: none; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--additional_information table.shop_attributes {
width: 100%;
max-width: 550px;
margin: 0 auto;
font-size: 16px; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--additional_information table.shop_attributes th {
font-size: 14px;
font-weight: 500;
color: #333333;
border-top: 1px solid #ededed;
padding-top: 10px;
padding-bottom: 10px; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--additional_information table.shop_attributes td {
font-size: 14px;
padding-top: 10px;
padding-bottom: 10px; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--reviews {
margin-top: -40px; } .woocommerce.single-product .product #comments {
padding-top: 60px; }
.woocommerce.single-product .product #comments > h2 {
text-align: center;
font-size: 24px;
text-transform: none;
font-weight: 400;
margin-top: 0; }
.woocommerce.single-product .product #comments .woocommerce-review__author {
font-size: 18px;
font-weight: 600;
color: #333333; }
.woocommerce.single-product .product #comments .commentlist,
.woocommerce.single-product .product #comments .commentlist .children {
padding-left: 0;
list-style: none; }
.woocommerce.single-product .product #comments .comment .avatar {
position: relative;
border-radius: 50%;
z-index: 1;
display: block;
margin: 0 auto; }
.woocommerce.single-product .product #comments .comment .star-rating {
float: right; }
.woocommerce.single-product .product #comments .comment .meta {
font-size: 0;
margin-bottom: 10px; }
.woocommerce.single-product .product #comments .comment .meta strong[itemprop="author"] {
font-size: 16px;
font-weight: 600;
color: #333333; }
.woocommerce.single-product .product #comments .comment .meta time {
font-size: 14px;
margin-left: 15px; }
.woocommerce.single-product .product #comments .comment .meta time:before {
content: '';
height: 4px;
width: 4px;
display: inline-block;
vertical-align: middle;
border-radius: 100%;
background-color: #dddddd;
margin-right: 15px; }
.woocommerce.single-product .product #comments .comment .comment-text {
background-color: #ffffff; }
.woocommerce.single-product .product #review_form_wrapper {
padding-top: 40px; }
.woocommerce.single-product .product #review_form_wrapper #reply-title {
font-size: 24px;
font-weight: 400;
line-height: 1.2;
display: block;
text-transform: none;
color: #333333;
margin-bottom: 25px; }
.woocommerce.single-product .product #review_form_wrapper .comment-form label[for="rating"] {
font-weight: 600;
color: #333333;
display: inline-block;
vertical-align: middle;
margin-right: 40px;
margin-bottom: 0; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars {
position: relative;
display: inline-block;
vertical-align: middle;
white-space: nowrap;
line-height: 0;
margin-bottom: 0; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars:hover a:before {
content: '\f2fc'; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars.selected a.active:before {
content: '\f2fc'; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars.selected a:not(.active):before {
content: '\f2fc'; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars.selected a.active ~ a:before {
content: '\f3ae'; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars > span {
display: inline-block;
line-height: 0; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars a {
font-size: 0;
position: relative;
display: inline-block;
vertical-align: top;
text-indent: -999em;
color: #f5cc26; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars a:before {
display: block;
position: relative;
top: 0;
left: 0;
width: 1em;
height: 1em;
font-size: 15px;
text-indent: 0;
overflow: hidden;
content: ""; }
.woocommerce.single-product .product #review_form_wrapper .comment-form .stars a:hover ~ a:before {
content: '\f3ae'; }
.woocommerce.single-product .product #review_form_wrapper .comment-form-author {
float: left;
width: calc(50% - 15px);
margin-right: 30px;
margin-bottom: 20px; }
.woocommerce.single-product .product #review_form_wrapper .comment-form-email {
float: right;
width: calc(50% - 15px);
margin-bottom: 20px; }
.woocommerce.single-product .product #review_form_wrapper .comment-form-rating {
clear: both; }
.woocommerce.single-product .product #review_form_wrapper .comment-form-comment {
margin-bottom: 30px; }
.woocommerce.single-product .product #review_form_wrapper #submit {
padding: 10px 35px; } .up-sells,
.related {
margin-top: 100px; }
.up-sells.slick-slider .products,
.related.slick-slider .products {
opacity: 0;
visibility: hidden;
margin-bottom: 0; }
.up-sells .slick-dots,
.related .slick-dots {
margin-bottom: 35px !important; }
.up-sells > h2,
.related > h2 {
text-align: center;
text-transform: none;
font-weight: 400;
font-size: 35px;
margin-top: 0;
margin-bottom: 50px; } .product-instagram {
border-top: 1px solid #eeeeee;
padding-top: 50px; }
.product-instagram p {
margin-bottom: 45px; }
.product-instagram p > a {
font-weight: 600; }
.product-instagram .tm-instagram-pics {
margin: 0; }
.product-instagram .tm-instagram-pics .item {
padding: 0; }
.product-instagram .tm-instagram-pics .item:hover .item-info span {
padding-left: 40px; }
.product-instagram .tm-instagram-pics .item:hover .item-info span:before {
width: 30px; }
.product-instagram .tm-instagram-pics .item-info {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .1em;
color: #ffffff; }
.product-instagram .tm-instagram-pics .item-info a {
color: #ffffff !important; }
.product-instagram .tm-instagram-pics .item-info span {
position: relative;
transition-delay: .3s; }
.product-instagram .tm-instagram-pics .item-info span:before {
content: '';
height: 1px;
width: 0;
position: absolute;
left: 0;
top: 50%;
background-color: #ffffff;
transition-duration: .5s;
transform: translateY(-50%); } #yith-wcwl-form .wishlist-title {
display: none; }
#yith-wcwl-form table.shop_table.wishlist_table {
font-size: 100%; }
#yith-wcwl-form table.shop_table.wishlist_table th {
border-top: none; }
#yith-wcwl-form table.shop_table.wishlist_table th.product-name {
text-align: left; }
#yith-wcwl-form table.shop_table.wishlist_table td {
text-align: left;
padding-top: 30px;
padding-bottom: 30px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-thumbnail {
width: 130px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-thumbnail a {
max-width: 100px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-name {
padding-left: 0; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-name a {
font-size: 16px; }
#yith-wcwl-form table.shop_table.wishlist_table td.wishlist-empty {
font-size: initial; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status {
font-size: 14px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status span {
color: #ababab; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status span:before {
content: '\f120';
margin-right: 5px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status span.wishlist-out-of-stock:before {
content: '\f100';
color: #ababab; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-add-to-cart .add-to-cart-btn:before, #yith-wcwl-form table.shop_table.wishlist_table td.product-add-to-cart .add-to-cart-btn:after {
display: none; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-add-to-cart .add-to-cart-btn a.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
display: inline-block;
float: left;
margin-right: 5px; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-add-to-cart .button {
font-size: 14px;
padding: 10px 30px;
border-radius: 0;
margin: 0; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-remove {
padding: 30px; }
#yith-wcwl-form .yith-wcwl-share {
margin-bottom: 0; }
#yith-wcwl-form .yith-wcwl-share ul {
display: inline-block;
vertical-align: top; }
#yith-wcwl-form .yith-wcwl-share-title {
font-size: 18px;
font-weight: 500;
display: inline-block;
vertical-align: top;
margin-right: 10px; } .woocommerce {  }
.woocommerce .blockUI.blockOverlay {
opacity: 1 !important;
background: rgba(255, 255, 255, 0.5) none !important; }
.woocommerce .blockUI.blockOverlay:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
top: 50%;
left: 50%;
margin-top: -10px;
transform: scale(2) translate(-50%, -50%); }
.woocommerce .site-content {
margin-bottom: 70px; }
.woocommerce .variation {
font-size: 14px;
display: block;
margin: 0; }
.woocommerce .variation:after {
content: '';
display: table;
clear: both; }
.woocommerce .variation dd,
.woocommerce .variation dt {
display: block;
line-height: 22px;
float: left;
clear: both;
color: #ababab; }
.woocommerce .variation dt {
font-weight: inherit;
margin-right: 5px; }
.woocommerce .variation dd {
clear: none;
margin: 0; }
.woocommerce .variation dd p {
font-size: 14px;
line-height: 22px;
margin-bottom: 0; }
.woocommerce .variation dd span.filter-swatch.swatch-color,
.woocommerce .variation dd span.filter-swatch.swatch-image img {
display: inline-block;
vertical-align: 0px;
height: 16px;
width: 16px;
line-height: 16px;
border-radius: 100%; }
.woocommerce .variation .woocommerce-Price-amount {
font-size: 12px !important;
color: #999999 !important; }
.woocommerce input[type="number"].qty {
width: 45px;
background-color: #f7f7f7;
margin: 0 auto; }
.woocommerce .quantity.hidden {
display: none; }
.woocommerce .quantity.amely_qty {
height: 45px;
max-width: 130px;
width: 100%;
display: inline-block;
vertical-align: top;
background-color: #f7f7f7;
padding: 10px; }
.woocommerce .quantity.amely_qty .qty {
text-align: center;
border: none;
float: left;
height: 100%;
width: 80%;
margin: 0;
padding: 0 10px;
background-color: transparent !important;
-moz-appearance: textfield; }
.woocommerce .quantity.amely_qty .qty::-webkit-inner-spin-button, .woocommerce .quantity.amely_qty .qty::-webkit-outer-spin-button {
-webkit-appearance: none; }
.woocommerce .quantity.amely_qty .plus,
.woocommerce .quantity.amely_qty .minus {
font-size: 0;
float: left;
cursor: pointer;
line-height: 1;
margin-top: 5px; }
.woocommerce .quantity.amely_qty .plus:before,
.woocommerce .quantity.amely_qty .minus:before {
font-size: 14px; }
.woocommerce .quantity.amely_qty .plus:hover,
.woocommerce .quantity.amely_qty .minus:hover {
color: #333333; }
.woocommerce .quantity.amely_qty .plus:before {
content: '\f218'; }
.woocommerce .quantity.amely_qty .minus:before {
content: '\f209'; }
.woocommerce .col2-set {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px; }
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 30px;
padding: 0 15px; }
.woocommerce .col2-set label {
text-transform: uppercase;
letter-spacing: 0.1em; }
.woocommerce form > h3 {
text-transform: none;
text-align: center;
margin: 0;
padding: 50px 0 30px 0;
font-size: 34px;
line-height: 48px;
background-color: #f7f7f7;
font-weight: 400; }
.woocommerce form .form-row {
position: relative;
margin-bottom: 20px; }
.woocommerce form .form-row.form-row-first, .woocommerce form .form-row.form-row-last {
display: inline-block;
width: 48%;
overflow: visible; }
.woocommerce form .form-row.form-row-last {
float: right;
margin: 0; }
.woocommerce form .form-row.form-row-wide {
clear: both; }
.woocommerce form .form-row.place-order {
text-align: center; }
.woocommerce form .input-text {
background-color: #f7f7f7;
padding: 9px 15px; }
.woocommerce form #order_comments {
min-height: 140px; }
.woocommerce form .select2-container .select2-selection--single {
height: auto;
border-radius: 0;
border-color: #eeeeee;
background-color: #f7f7f7;
padding: 13px 15px; }
.woocommerce form .select2-container .select2-selection__rendered {
line-height: 1;
padding: 0; }
.woocommerce form .select2-container .select2-selection__rendered:after {
position: absolute;
top: 50%;
right: 20px;
content: "";
transform: translateY(-50%); }
.woocommerce form .select2-container .select2-selection__arrow {
display: none; }
.woocommerce table.shop_table {
width: 100%;
background-color: #f7f7f7; }
.woocommerce table.shop_table .cart-subtotal .woocommerce-Price-amount {
color: #333333; }
.woocommerce table.shop_table .woocommerce-Price-amount {
font-weight: 600; }
.woocommerce table.shop_table label {
color: #333333; }
.woocommerce table.shop_table th {
text-transform: none;
font-size: 16px;
font-weight: 600;
letter-spacing: .1em;
color: #222222;
background-color: #f7f7f7;
border-top: 1px solid #ededed;
padding: 6px 10px 6px 0; }
.woocommerce table.shop_table th:first-of-type {
padding-left: 10px; }
.woocommerce table.shop_table td.product-name {
color: #696969; }
.woocommerce table.shop_table td.product-name a {
color: currentColor; }
.woocommerce table.shop_table td.product-price del span.woocommerce-Price-amount {
font-size: 12px;
font-weight: 400;
color: #ababab; }
.woocommerce table.shop_table tr.shipping #shipping_method {
list-style: none;
padding: 0;
margin: 0; }
.woocommerce table.shop_table tr.shipping #shipping_method input[type="radio"] {
width: auto;
vertical-align: middle;
margin-right: 5px;
margin-bottom: 0; }
.woocommerce table.shop_table tr.order-total .amount {
font-size: 24px;
font-weight: 600; }
.woocommerce table.shop_table tr.order-total .includes_tax {
font-size: 100%; }
.woocommerce table.shop_table tr.order-total .includes_tax .amount {
font-size: inherit; }
.woocommerce table.shop_table td.product-remove a {
text-align: center;
font-size: 0;
display: block;
height: 45px;
width: 45px;
color: #ababab;
border: 2px solid #e6e6e6; }
.woocommerce table.shop_table td.product-remove a:before {
font-size: 20px;
line-height: 41px;
content: ""; }
.woocommerce table.shop_table td.product-remove a:hover {
color: #c61932;
border-color: #c61932; }
.woocommerce table.shop_table tfoot td {
padding-left: 0; }
.woocommerce ul.order_details {
display: inline-block;
list-style: none;
margin: 0 0 1.5em;
padding: 15px 15px 0;
background-color: #f7f7f7; }
.woocommerce ul.order_details::after {
clear: both;
content: "";
display: table; }
.woocommerce ul.order_details li {
float: left;
text-transform: uppercase;
font-size: .715em;
line-height: 1;
border-right: 1px dashed #dddddd;
list-style-type: none;
margin-left: 0;
padding-left: 0;
margin-bottom: 15px;
padding-right: 2em;
margin-right: 2em; }
.woocommerce ul.order_details li strong {
display: block;
font-size: 1.4em;
font-weight: 600;
text-transform: none;
line-height: 1.5;
color: #333333; }
.woocommerce ul.order_details li:last-of-type {
border: none; }
.woocommerce-page .site-content {
margin-bottom: 70px; }
.star-rating {
float: left;
overflow: hidden;
position: relative;
height: 15px;
line-height: 25px;
height: 25px;
font-size: 16px;
width: 80px;
color: #ababab; }
.star-rating:before {
font-size: 16px;
position: absolute;
top: 0;
left: 0;
content: "    "; }
.star-rating span {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #f5cc26;
padding-top: 1.5em; }
.star-rating span:before {
position: absolute;
top: 0;
left: 0;
font-size: 16px;
width: 80px;
content: "    "; }
.product-badges {
text-align: center;
text-transform: uppercase;
letter-spacing: .1em;
font-size: 13px;
font-weight: 500;
color: #ffffff; }
.product-badges span {
position: absolute;
left: 15px;
top: 20px;
z-index: 3;
min-width: 60px;
padding: 0 10px; }
.product-badges span.new {
background-color: #fbaf5d; }
.product-badges span.hot {
background-color: #da0e2b; }
.product-badges span.onsale {
background-color: #4accb0; }
.product-badges span.outofstock {
background-color: #aaaaaa; }
.product-badges span + span {
top: 50px; }
.product-badges span + span + span {
top: 80px; }
.isw-swatches.isw-swatches--in-loop .isw-term {
margin-right: 5px; }
.isw-swatches.isw-swatches--in-loop .isw-term:last-of-type {
margin-right: 0; }
.isw-swatches .isw-term:after {
font-family: inherit; }
.isw-swatches .isw-white.isw-selected {
border: 1px solid #dddddd; }
.isw-swatches .isw-swatch--isw_color .isw-term {
border-radius: 100%; }
.isw-swatches .isw-swatch--isw_image .isw-term img {
border-radius: 100%; }
.isw-swatches .isw-swatch--isw_text .isw-term {
color: #333333;
box-shadow: none; }
.isw-swatches .isw-swatch--isw_text .isw-term:before, .isw-swatches .isw-swatch--isw_text .isw-term:after {
display: none; }
.isw-swatches .reset_variations {
font-size: 8px;
display: inline-block;
font-weight: 500;
text-transform: uppercase;
letter-spacing: .1em;
text-decoration: underline; } .woocommerce-password-strength {
border: 1px solid transparent;
padding: 5px 20px; }
.woocommerce-password-strength.strong {
background-color: #c1e1b9;
border-color: #83c373;
color: #48823a; }
.woocommerce-password-strength.short {
background-color: #f1adad;
border-color: #e35b5b;
color: #ae4443; }
.woocommerce-password-strength.bad {
background-color: #fbc5a9;
border-color: #f78b53;
color: #ae5f37; }
.woocommerce-password-strength.good {
background-color: #ffe399;
border-color: #ffc733;
color: #b69640; }
.woocommerce-password-hint {
font-size: 14px;
position: absolute;
bottom: 100%;
right: 0;
opacity: 0;
visibility: hidden;
background: #ffffff;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
max-width: 300px;
width: 100%;
margin-bottom: -10px;
padding: 20px; }
.woocommerce-password-hint:after {
position: absolute;
top: 100%;
left: 30px;
font-size: 26px;
line-height: 7px;
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
color: #ffffff;
content: ""; }
.woocommerce-password-strength + .woocommerce-password-hint {
opacity: 1;
visibility: visible; } .woocommerce-message, .woocommerce-order-received .woocommerce-thankyou-order-received,
.woocommerce-error,
.woocommerce-info {
position: relative;
word-wrap: break-word;
background-color: #f7f7f7;
border-top: 3px solid #1e85be;
padding: 1em 2em 1em 3.5em;
margin-bottom: 2em; }
.woocommerce-message:before, .woocommerce-order-received .woocommerce-thankyou-order-received:before,
.woocommerce-error:before,
.woocommerce-info:before {
display: inline-block;
position: absolute;
top: 1.25em;
left: 2em;
content: ""; }
.woocommerce-message .button, .woocommerce-order-received .woocommerce-thankyou-order-received .button,
.woocommerce-error .button,
.woocommerce-info .button {
float: right;
background-color: transparent !important;
border: none !important;
color: #333333 !important;
padding: 0; }
.woocommerce-message li, .woocommerce-order-received .woocommerce-thankyou-order-received li,
.woocommerce-error li,
.woocommerce-info li {
list-style: none outside !important;
padding-left: 0 !important;
margin-left: 0 !important; }
.woocommerce-message, .woocommerce-order-received .woocommerce-thankyou-order-received {
border-top-color: #8fae1b; }
.woocommerce-message:before, .woocommerce-order-received .woocommerce-thankyou-order-received:before {
content: '\f00c';
color: #8fae1b; }
.woocommerce-info {
border-top-color: #1e85be; }
.woocommerce-info:before {
color: #1e85be; }
.woocommerce-error {
border-top-color: #b81c23; }
.woocommerce-error:before {
content: '\f00d';
color: #b81c23; }
.wc-points-rewards-product-message {
font-size: 14px;
display: block; }
.wpf-umf-cart-upload-button-container {
margin-top: 10px; }
.button.wpf-umf-cart-upload-button {
font-size: 12px !important; }
.amely-banner-grid-5 {
opacity: 0;
overflow: hidden;
position: relative;
margin-left: -5px;
margin-right: -5px; }
.amely-banner-grid-5.banner-loaded {
opacity: 1; }
.amely-banner-grid-5 .tm-shortcode {
margin-left: 5px;
margin-right: 5px; }
.amely-banner-grid-5 .banners {
float: left;
width: 50%; }
.amely-banner-grid-5 .banners-column-1 .tm-shortcode:nth-child(2),
.amely-banner-grid-5 .banners-column-1 .tm-shortcode:nth-child(3) {
float: left;
width: calc(50% - 10px); }
.amely-banner-grid-6 {
opacity: 0;
overflow: hidden;
position: relative;
margin-left: -15px;
margin-right: -15px; }
.amely-banner-grid-6.banner-loaded {
opacity: 1; }
.amely-banner-grid-6 .banners {
float: left;
margin: 0 15px; }
.amely-banner-grid-6 .banners-column-1 .tm-shortcode:nth-child(2),
.amely-banner-grid-6 .banners-column-1 .tm-shortcode:nth-child(3) {
float: left;
width: calc(50% - 30px); }
.amely-banner-grid-6v2 {
opacity: 0;
overflow: hidden;
position: relative;
margin-left: -15px;
margin-right: -15px;
font-size: 0; }
.amely-banner-grid-6v2.banner-loaded {
opacity: 1; }
.amely-banner-grid-6v2 .banners-wrap {
margin: 0 -15px; }
.amely-banner-grid-6v2 .banners {
float: left;
padding: 0 15px;
width: 100%; }
.amely-banner-grid-6v2 .banners .tm-shortcode {
margin-left: 15px;
margin-right: 15px; }
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(2),
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(3),
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(4) {
float: left; }
.amely-banner {
position: relative;
overflow: hidden;
margin-bottom: 30px; }
.amely-banner.hover-zoom-in:hover img {
transform: scale(1.1); }
.amely-banner.hover-blur:hover img {
filter: blur(2px); }
.amely-banner.hover-grayscale:hover img {
filter: grayscale(100%); }
.amely-banner.hover-white-overlay:before, .amely-banner.hover-black-overlay:before {
content: '';
opacity: 0;
z-index: 1; }
.amely-banner.hover-white-overlay:before {
background-color: #ffffff; }
.amely-banner.hover-white-overlay:hover:before {
opacity: .3; }
.amely-banner.hover-black-overlay:before {
background-color: #000000; }
.amely-banner.hover-black-overlay:hover:before {
opacity: .3; }
.amely-banner.text-position-left .banner-content {
left: 0; }
.amely-banner.text-position-right .banner-content {
right: 0; }
.amely-banner.text-position-center .banner-content {
left: 0;
width: 100%; }
.amely-banner.button-visible-hover .banner-content {
margin-top: 20px; }
.amely-banner.button-visible-hover .banner-button {
opacity: 0; }
.amely-banner.button-visible-hover:hover .banner-button {
opacity: 1; }
.amely-banner img {
display: block;
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: all .8s ease;
margin: 0 auto; }
.amely-banner .banner-desc {
display: block;
margin-bottom: 10px; }
.amely-banner .banner-content {
text-align: center;
position: absolute;
top: 50%;
width: 50%;
z-index: 2;
transform: translateY(-50%); }
.amely-banner .banner-text {
display: block;
margin-bottom: 20px; }
.amely-banner .banner-link {
display: block; }
.amely-banner .banner-button {
padding: 10px 30px; }
.amely-banner .banner-button.link {
position: relative;
text-transform: none;
background-color: transparent;
border: none;
padding: 0;
margin-top: 10px; }
.amely-banner .banner-button.link:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px; }
.amely-banner2 {
position: relative;
overflow: hidden;
margin-bottom: 30px; }
.amely-banner2.hover-zoom-in:hover img {
transform: scale(1.1); }
.amely-banner2.hover-blur:hover img {
filter: blur(2px); }
.amely-banner2.hover-grayscale:hover img {
filter: grayscale(100%); }
.amely-banner2.hover-white-overlay:before, .amely-banner2.hover-black-overlay:before {
content: '';
opacity: 0;
z-index: 0; }
.amely-banner2.hover-white-overlay:before {
background-color: #ffffff; }
.amely-banner2.hover-white-overlay:hover:before {
opacity: .3; }
.amely-banner2.hover-black-overlay:before {
background-color: #000000; }
.amely-banner2.hover-black-overlay:hover:before {
opacity: .3; }
.amely-banner2 img {
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: all .8s ease;
margin: 0 auto; }
.amely-banner2 .banner-buttons {
text-align: center;
position: absolute;
left: 0;
bottom: 50px;
width: 100%; }
.amely-banner2 .banner-button {
font-size: 14px;
letter-spacing: .1em;
min-width: 220px;
padding: 15px 40px;
margin: 0 15px; }
.amely-banner2 .banner-button.link {
position: relative;
text-transform: none;
background-color: transparent;
border: none;
min-width: 0;
min-height: 0;
padding: 0;
margin-top: 10px; }
.amely-banner2 .banner-button.link:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px; }
.amely-banner3 {
position: relative;
overflow: hidden;
margin-bottom: 30px; }
.amely-banner3.hover-zoom-in:hover img {
transform: scale(1.1); }
.amely-banner3.hover-blur:hover img {
filter: blur(2px); }
.amely-banner3.hover-grayscale:hover img {
filter: grayscale(100%); }
.amely-banner3.hover-white-overlay:before, .amely-banner3.hover-black-overlay:before {
content: '';
opacity: 0;
z-index: 1; }
.amely-banner3.hover-white-overlay:before {
background-color: #ffffff; }
.amely-banner3.hover-white-overlay:hover:before {
opacity: .3; }
.amely-banner3.hover-black-overlay:before {
background-color: #000000; }
.amely-banner3.hover-black-overlay:hover:before {
opacity: .3; }
.amely-banner3.text-align-left .banner-content {
left: 0; }
.amely-banner3.text-align-center .banner-content {
text-align: center;
left: 0;
width: 100%; }
.amely-banner3.text-align-right .banner-content {
text-align: right;
right: 0; }
.amely-banner3.vertical-align-top .banner-content {
top: 0; }
.amely-banner3.vertical-align-middle .banner-content {
top: 50%;
transform: translateY(-50%); }
.amely-banner3.vertical-align-bottom .banner-content {
bottom: 0; }
.amely-banner3.button-visible-hover .banner-content {
margin-top: 20px; }
.amely-banner3.button-visible-hover .banner-button {
opacity: 0;
transition-delay: .1s; }
.amely-banner3.button-visible-hover:hover .banner-button {
opacity: 1; }
.amely-banner3.button-visible-hover:hover .banner-content {
margin-top: 0; }
.amely-banner3 img {
display: block;
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: all .8s ease;
margin: 0 auto; }
.amely-banner3 .banner-content {
position: absolute;
z-index: 2;
padding: 30px; }
.amely-banner3 .banner-content h1,
.amely-banner3 .banner-content h2,
.amely-banner3 .banner-content h3,
.amely-banner3 .banner-content h4,
.amely-banner3 .banner-content h5,
.amely-banner3 .banner-content h6 {
line-height: 1.2;
margin-top: 0;
margin-bottom: 15px; }
.amely-banner3 .banner-text {
display: block; }
.amely-banner3 .banner-link {
font-size: 0;
z-index: 2;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.amely-banner3 .banner-button {
padding: 10px 30px; }
.amely-banner3 .banner-button.link {
position: relative;
text-transform: none;
background-color: transparent;
border: none;
padding: 0;
margin-top: 10px; }
.amely-banner3 .banner-button.link:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px; }
.amely-banner4 {
position: relative;
overflow: hidden;
margin-bottom: 30px; }
.amely-banner4.image-position-left .banner-image:after {
left: auto;
right: -100%; }
.amely-banner4.image-position-right {
text-align: right; }
.amely-banner4.image-position-top .banner-image:after {
left: 0;
top: auto;
bottom: 0; }
.amely-banner4.image-position-bottom .banner-image:after {
left: 0;
top: 0; }
.amely-banner4.image-position-bottom .banner-image {
padding-top: 100px; }
.amely-banner4.image-position-top .banner-image {
padding-bottom: 100px; }
.amely-banner4.text-position-top-left .banner-content {
left: 0; }
.amely-banner4.text-position-top-right .banner-content {
right: 0; }
.amely-banner4.text-position-top-center .banner-content {
left: 50%;
transform: translateX(-50%); }
.amely-banner4.text-position-middle-left .banner-content {
top: 50%;
left: 0;
transform: translateY(-50%); }
.amely-banner4.text-position-middle-center .banner-content {
top: 50%;
left: 50%;
transform: translate(-50%, -50%); }
.amely-banner4.text-position-middle-right .banner-content {
top: 50%;
right: 0;
transform: translateY(-50%); }
.amely-banner4.text-position-bottom-left .banner-content {
left: 0;
top: auto;
bottom: 0; }
.amely-banner4.text-position-bottom-right .banner-content {
right: 0;
top: auto;
bottom: 0; }
.amely-banner4.text-position-bottom-center .banner-content {
left: 50%;
top: auto;
bottom: 0;
transform: translateX(-50%); }
.amely-banner4.text-align-left .banner-content {
text-align: left; }
.amely-banner4.text-align-center .banner-content {
text-align: center; }
.amely-banner4.text-align-right .banner-content {
text-align: right; }
.amely-banner4.button-visible-hover .banner-content {
margin-top: 20px; }
.amely-banner4.button-visible-hover .banner-button {
opacity: 0; }
.amely-banner4.button-visible-hover:hover .banner-button {
opacity: 1; }
.amely-banner4.button-visible-hover:hover .banner-content {
margin-top: 0; }
.amely-banner4 img {
position: relative;
z-index: 2;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
width: 100%;
margin: 0 auto; }
.amely-banner4 .banner-image {
font-size: 0;
display: block;
position: relative; }
.amely-banner4 .banner-image:after {
display: none;
position: absolute;
content: '';
top: 0;
left: 0;
width: 100%;
height: 80%;
background: transparent url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/banner4-pattern.png);
z-index: 1; }
.amely-banner4 .banner-hashtag {
display: none;
font-size: 50px;
font-weight: 700;
color: #f8f8f8;
margin: 0; }
.amely-banner4 .banner-desc {
letter-spacing: .2em;
color: #696969;
margin-bottom: 10px; }
.amely-banner4 .banner-desc strong {
color: #333333; }
.amely-banner4 .banner-content {
position: absolute;
top: 0;
z-index: 2;
padding: 30px; }
.amely-banner4 .banner-content h1,
.amely-banner4 .banner-content h2,
.amely-banner4 .banner-content h3,
.amely-banner4 .banner-content h4,
.amely-banner4 .banner-content h5,
.amely-banner4 .banner-content h6 {
line-height: 1.2;
margin-top: 0;
margin-bottom: 0; }
.amely-banner4 .banner-content h1 {
font-size: 50px; }
.amely-banner4 .banner-content h2 {
font-size: 45px; }
.amely-banner4 .banner-content h3 {
font-size: 40px; }
.amely-banner4 .banner-content h4 {
font-size: 35px; }
.amely-banner4 .banner-content h5 {
font-size: 30px; }
.amely-banner4 .banner-content h6 {
font-size: 25px; }
.amely-banner4 .banner-button {
letter-spacing: .1em;
padding-left: 30px;
padding-right: 30px; }
.amely-banner4 .banner-button.link {
position: relative;
text-transform: none;
background-color: transparent;
border: none;
padding: 0;
margin-top: 20px; }
.amely-banner4 .banner-button.link:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px; }
.amely-blog {
opacity: 0;
transition: opacity .3s ease-in-out; }
.amely-blog.loaded {
opacity: 1; }
.amely-blog .js-post-carousel {
opacity: 0;
visibility: hidden; }
.amely-blog .js-post-carousel .slick-slide a {
margin: 0; }
.amely-blog .js-post-carousel .slick-slide .entry-meta a {
display: inline-block;
margin-right: 5px;
margin-left: 5px; }
.amely-blog .single-image.slick-slide {
opacity: 1; }
.amely-blog .post-item.adding-item {
opacity: 0;
visibility: hidden; }
.amely-blog .post-grid-layout .post-item > article {
margin-bottom: 30px; }
.amely-blog .post-grid-layout .post-item > article .entry-body {
left: 0;
width: 100%; }
.amely-brands-carousel {
opacity: 0;
margin-bottom: 0; }
.amely-brands-carousel.slick-initialized {
opacity: 1; }
.amely-brands-carousel .tm-carousel-item {
text-align: center;
margin: 0 30px; }
.amely-brands-carousel .tm-carousel-item:hover img {
opacity: 1; }
.amely-brands-carousel .tm-carousel-item a {
margin: 0; }
.amely-brands-carousel .tm-carousel-item span {
display: block;
margin-top: 10px; }
.amely-brands-carousel .tm-carousel-item img {
opacity: .5;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.amely-brands-carousel .slick-dots {
margin-top: -40px;
position: relative; }
.amely-brands-grid .tm-brand-item {
text-align: center;
margin-bottom: 30px; }
.amely-brands-grid .tm-brand-item span {
display: block;
margin-top: 10px; }
.amely-button {
-webkit-appearance: initial;
font-size: 14px; }
.amely-button.small {
font-size: 12px;
padding: 8px 15px; }
.amely-button.large {
font-size: 16px;
padding: 12px 35px; }
.amely-button.xlarge {
font-size: 19px;
padding: 20px 45px; }
.amely-button i.icon-right {
margin-left: 5px; }
.amely-button i.icon-left {
margin-right: 5px; }
.amely-countdown {
opacity: 0; }
.amely-countdown.is-countdown {
opacity: 1;
background-color: transparent;
border: none; }
.amely-countdown .countdown-section {
position: relative;
float: none;
display: inline-block;
vertical-align: top;
text-align: center;
line-height: 1;
max-width: 130px;
word-wrap: normal;
padding: 20px 10px;
margin-bottom: 10px;
margin-right: 18px; }
.amely-countdown .countdown-section:first-child {
border-left: 2px solid transparent; }
.amely-countdown .countdown-section:after {
position: absolute;
top: 35%;
right: -15px;
content: ':';
font-size: 30px;
color: #696969;
transform: translateY(-50%); }
.amely-countdown .countdown-section:last-child:after {
display: none; }
.amely-countdown .countdown-amount {
display: block;
font-weight: 400;
padding-bottom: 10px;
margin-bottom: 10px; }
.amely-countdown .countdown-period {
display: block;
text-transform: uppercase;
letter-spacing: .7em;
text-indent: .7em; }
.amely-feature-product .star-rating {
display: block;
float: none; }
.amely-feature-product .add_to_cart_inline {
display: none; }
.amely-feature-product .title,
.amely-feature-product .price {
line-height: 56px;
font-weight: 600;
color: #333333; }
.amely-feature-product .title {
font-size: 56px;
padding: 15px 0; }
.amely-feature-product .price {
font-size: 24px; }
.amely-feature-product .price .sale-price {
font-size: 20px;
color: #aaa;
text-decoration: line-through;
margin-right: 5px; }
.amely-feature-product .add-to-cart-btn {
margin-top: 30px; }
.amely-icon-box {
height: 100%; }
.amely-icon-box.left .title, .amely-icon-box.right .title {
margin-bottom: 4px;
margin-top: 0; }
.amely-icon-box.left .tm-icon-box__icon,
.amely-icon-box.left .tm-icon-box__content, .amely-icon-box.right .tm-icon-box__icon,
.amely-icon-box.right .tm-icon-box__content {
display: table-cell;
vertical-align: top; }
.amely-icon-box.left.middle .tm-icon-box__icon,
.amely-icon-box.left.middle .tm-icon-box__content, .amely-icon-box.right.middle .tm-icon-box__icon,
.amely-icon-box.right.middle .tm-icon-box__content {
vertical-align: middle; }
.amely-icon-box.left.bottom .tm-icon-box__icon,
.amely-icon-box.left.bottom .tm-icon-box__content, .amely-icon-box.right.bottom .tm-icon-box__icon,
.amely-icon-box.right.bottom .tm-icon-box__content {
vertical-align: bottom; }
.amely-icon-box.left .tm-icon-box__icon {
padding-right: 20px; }
.amely-icon-box.left .tm-icon-box__icon span {
padding-right: 10px; }
.amely-icon-box.right .tm-icon-box__icon {
padding-left: 20px; }
.amely-icon-box.right .tm-icon-box__icon span {
padding-left: 10px; }
.amely-icon-box.right .tm-icon-box__content {
text-align: right; }
.amely-icon-box.center {
display: block; }
.amely-icon-box.center .tm-icon-box__icon {
margin-bottom: 20px; }
.amely-icon-box.only-icon {
display: inline-block; }
.amely-icon-box.only-icon .tm-icon-box__icon {
padding: 0; }
.amely-icon-box.only-icon .tm-icon-box__icon span {
padding: 0; }
.amely-icon-box .tm-icon-box__content .title {
font-weight: 500;
letter-spacing: .1em;
line-height: 1.5; }
.amely-icon-box .tm-icon-box__content .title a {
display: block; }
.amely-icon-box .tm-icon-box__content p.subtext a {
font-size: 14px;
font-style: italic;
text-decoration: underline; }
.amely-icon-box .tm-icon-box__content p.subtext:after {
padding-left: 5px;
content: ""; }
.amely-icon-box .tm-icon-box__icon span {
line-height: 1;
font-weight: 300; }
.amely-icon-box .tm-icon-box__icon a {
display: block; }
.amely-icon-box .tm-icon-box__icon.with-bg[class*='circle'] i, .amely-icon-box .tm-icon-box__icon.with-bg[class*='circle'] span {
border-radius: 100%; }
.amely-icon-box .tm-icon-box__icon.with-bg[class*='rounded'] i, .amely-icon-box .tm-icon-box__icon.with-bg[class*='rounded'] span {
border-radius: 3px; }
.amely-icon-box .tm-icon-box__icon.with-bg[class*='outline-'] i, .amely-icon-box .tm-icon-box__icon.with-bg[class*='outline-'] span {
border: 2px solid; }
.amely-icon-box .tm-icon-box__icon.with-bg i, .amely-icon-box .tm-icon-box__icon.with-bg span {
text-align: center;
width: 1.8em;
height: 1.8em;
line-height: 1.8em; }
.amely-icon-box .tm-icon-box__icon.with-bg i[class|="pe-7s"] {
width: 1.5em;
height: 1.5em;
line-height: 1.5em; }
.amely-icon-box .description {
line-height: 1.6;
margin-top: 15px; }
.amely-icon-box .description em {
font-style: italic !important; }
.amely-image-carousel {
opacity: 0; }
.amely-image-carousel.slick-initialized {
opacity: 1; }
.amely-image-carousel .tm-carousel-item {
text-align: center; }
.amely-image-carousel .tm-carousel-item img {
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.amely-image-carousel .slick-dots {
margin-top: -40px;
position: relative; }
.amely-instagram .user-name {
text-align: center;
font-size: 18px;
color: #999999;
margin: 0 auto 50px; }
.amely-instagram .user-name a {
font-size: 18px;
line-height: 24px; }
.amely-instagram--carousel .tm-instagram-pics {
opacity: 0; }
.amely-mailchimp .mailchimp-message {
margin-bottom: 0; }
.amely-mailchimp .mailchimp-message:before {
font-size: 25px;
display: inline-block;
vertical-align: -5px;
margin-right: 10px; }
.amely-mailchimp .mailchimp-message.success:before {
content: '\f3fd'; }
.amely-mailchimp .mailchimp-message.error:before {
content: '\f404'; }
.amely-mailchimp .mailchimp-form {
position: relative; }
.amely-mailchimp .mailchimp-form.mailchimp-loading .mailchimp-button {
opacity: 0;
visibility: hidden; }
.amely-mailchimp .mailchimp-form.mailchimp-loading:before {
position: absolute;
top: 50%;
right: 0;
display: block;
text-align: center;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
transform: translateY(-50%); }
.amely-mailchimp .mailchimp-email {
font-size: 15px;
font-style: normal;
height: 50px;
letter-spacing: .03em;
background-color: transparent;
border-width: 0;
border-bottom-width: 2px;
padding-left: 0;
margin-bottom: 0;
padding-right: 95px; }
.amely-mailchimp .mailchimp-button {
position: absolute;
height: 50px;
right: 0;
top: 50%;
font-size: 14px;
letter-spacing: .1em;
background-color: transparent;
border: none;
padding: 0;
margin: 0;
transform: translateY(-50%); }
.amely-mailchimp.color-scheme--dark .mailchimp-email {
border-bottom-color: #cccccc; }
.amely-mailchimp.color-scheme--dark .mailchimp-button {
color: #333333; }
.amely-mailchimp.color-scheme--light .mailchimp-message {
color: #ffffff; }
.amely-mailchimp.color-scheme--light .mailchimp-email {
color: #ffffff;
border-bottom-color: #ffffff; }
.amely-mailchimp.color-scheme--light .mailchimp-email::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.6); }
.amely-mailchimp.color-scheme--light .mailchimp-email::-moz-placeholder {
color: rgba(255, 255, 255, 0.6); }
.amely-mailchimp.color-scheme--light .mailchimp-email:-ms-input {
color: rgba(255, 255, 255, 0.6); }
.amely-mailchimp.color-scheme--light .mailchimp-email:-moz-placeholder {
color: rgba(255, 255, 255, 0.6); }
.amely-mailchimp.color-scheme--light .mailchimp-button {
color: #ffffff; }
.amely-product-categories.categories-layout-carousel {
opacity: 0; }
.amely-product-categories.categories-space-25 .category-grid-item {
margin-bottom: 25px;
padding: 0 12.5px; }
.amely-product-categories.categories-space-20 .category-grid-item {
margin-bottom: 20px;
padding: 0 10px; }
.amely-product-categories.categories-space-15 .category-grid-item {
margin-bottom: 15px;
padding: 0 7.5px; }
.amely-product-categories.categories-space-10 .category-grid-item {
margin-bottom: 10px;
padding: 0 5px; }
.amely-product-categories.categories-space-5 .category-grid-item {
margin-bottom: 5px;
padding: 0 2.5px; }
.amely-product-categories.categories-space-0 .category-grid-item {
margin-bottom: 0;
padding: 0; }
.amely-product-categories.categories-item-black-overlay .category-grid-item {
position: relative; }
.amely-product-categories.categories-item-black-overlay .category-grid-item:hover .product-category-thumbnail:after {
opacity: 1; }
.amely-product-categories.categories-item-black-overlay .category-grid-item:hover .product-category-content {
opacity: 1; }
.amely-product-categories.categories-item-black-overlay .category-grid-item:hover h2:after {
width: 100%; }
.amely-product-categories.categories-item-black-overlay .category-grid-item .product-category-thumbnail:after {
content: '';
opacity: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: 1;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.amely-product-categories.categories-item-black-overlay .category-grid-item .product-category-content {
opacity: 0;
position: absolute;
top: 50%;
width: 100%;
z-index: 1;
border-bottom: none;
transform: translateY(-50%); }
.amely-product-categories.categories-item-black-overlay .category-grid-item h2 {
display: inline-block;
position: relative;
color: #ffffff; }
.amely-product-categories.categories-item-black-overlay .category-grid-item h2:after {
content: '';
display: block;
width: 0;
height: 2px;
margin: 0 auto;
background-color: #ffffff;
transition-delay: .2s; }
.amely-product-categories.categories-item-black-overlay .category-grid-item mark.count {
color: #ffffff; }
.amely-product-categories.categories-item-black-overlay .category-grid-item .category-link:after {
display: none; }
.amely-product-categories.categories-item-black-overlay .category-grid-item .category-link a {
font-size: 0;
z-index: 2;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.amely-product-categories.categories-layout-masonry .category-grid-item {
position: relative; }
.amely-product-categories.categories-layout-masonry .category-grid-item .product-category-thumbnail {
position: relative; }
.amely-product-categories.categories-layout-masonry .category-grid-item .product-category-content {
position: absolute;
top: 30px;
left: 30px;
padding: 0;
border-bottom: none; }
.amely-product-categories.categories-layout-masonry .category-grid-item h2 {
text-align: left;
line-height: 1;
padding: 0; }
.amely-product-categories.categories-layout-masonry .category-grid-item mark.count {
display: block;
color: #666666;
margin-top: 5px; }
.amely-product-categories.categories-layout-masonry .category-grid-item .category-link:after {
display: none; }
.amely-product-categories.categories-layout-masonry .category-grid-item .category-link a {
font-size: 0;
z-index: 2;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.amely-product-category-banner {
position: relative;
overflow: hidden;
margin-bottom: 10px; }
.amely-product-category-banner.hover-zoom-in:hover img {
transform: scale(1.1); }
.amely-product-category-banner.hover-blur:hover img {
filter: blur(2px); }
.amely-product-category-banner.hover-grayscale:hover img {
filter: grayscale(100%); }
.amely-product-category-banner.hover-white-overlay:before, .amely-product-category-banner.hover-black-overlay:before {
content: '';
opacity: 0;
z-index: 1; }
.amely-product-category-banner.hover-white-overlay:before {
background-color: #ffffff; }
.amely-product-category-banner.hover-white-overlay:hover:before {
opacity: .6; }
.amely-product-category-banner.hover-black-overlay:before {
background-color: #000000; }
.amely-product-category-banner.hover-black-overlay:hover:before {
opacity: .6; }
.amely-product-category-banner.category-title-arrow .category-name:after {
font-size: .75em;
opacity: 0;
transition: margin .5s ease, opacity .5s ease;
transition-delay: .2s;
content: ""; }
.amely-product-category-banner.category-title-arrow:hover .category-name:after {
opacity: 1;
margin-left: 10px; }
.amely-product-category-banner.product-count-visible-hover .category-name {
transform: translateY(20px); }
.amely-product-category-banner.product-count-visible-hover .product-count {
opacity: 0;
transform: translateY(10px);
transition-delay: .2s; }
.amely-product-category-banner.product-count-visible-hover:hover .category-name {
transform: translateY(0); }
.amely-product-category-banner.product-count-visible-hover:hover .product-count {
opacity: 1;
transform: translateY(0); }
.amely-product-category-banner img {
display: block;
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: all .8s ease;
margin: 0 auto; }
.amely-product-category-banner .banner-content {
position: absolute;
left: 0;
bottom: 0;
z-index: 2;
padding: 20px; }
.amely-product-category-banner .category-name {
font-weight: 400;
margin: 0; }
.amely-product-category-banner .product-count {
font-size: 14px;
font-weight: 400;
margin-top: 5px; }
.amely-product-category-banner .banner-link {
font-size: 0;
z-index: 2;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; } .vc_tta-panel-body .amely-product-grid .animated.product, .vc_tta-panel-body
.amely-product-carousel .animated.product {
animation-duration: .4s; }
.amely-product-carousel .products {
opacity: 0; }
.amely-product-carousel .products .slick-track.filtering {
transform: translate3d(0, 0, 0) !important; }
.amely-product-carousel .products .slick-track.filtering .product {
width: auto !important; }
.amely-product-carousel .product {
animation: zoomIn .25s; }
.amely-product-tabs.tabs-align-left .product-filter {
text-align: left; }
.amely-product-tabs.tabs-align-left .product-filter li:first-of-type > a {
margin-left: 0; }
.amely-product-tabs.tabs-align-right .product-filter {
text-align: right; }
.amely-product-tabs.tabs-align-right .product-filter li:last-of-type > a {
margin-right: 0; }
.amely-product-tabs.tabs-align-center {
text-align: center; }
.amely-product-tabs .product-filter {
list-style: none;
margin: 0 0 60px;
padding: 0; }
.amely-product-tabs .product-filter li {
display: inline-block;
margin-left: -4px; }
.amely-product-tabs .product-filter li:first-of-type {
margin-left: 0; }
.amely-product-tabs .product-filter li a:hover:after,
.amely-product-tabs .product-filter li a.active:after {
width: 100%; }
.amely-product-tabs .product-filter li > a {
position: relative;
font-size: 24px;
font-weight: 600;
line-height: 1.5;
color: #cccccc;
margin: 0 20px; }
.amely-product-tabs .product-filter li > a.active, .amely-product-tabs .product-filter li > a:hover {
color: #333333; }
.amely-product-tabs .product-filter li > a.active:after, .amely-product-tabs .product-filter li > a:hover:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.amely-product-tabs .product-filter li > a:after {
content: '';
position: absolute;
left: 0;
bottom: 1px;
width: 100%;
height: 2px;
background-color: #333333;
transition: transform .5s;
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1); }
.amely-product-tabs .products.loading:before {
content: '';
background-color: #ffffff;
z-index: 10;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
.amely-product-tabs .products.loading:after {
position: absolute;
top: 20px;
left: 50%;
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
z-index: 10;
transform: translateX(-50%) scale(1.5); }
.amely-product-widget {
margin-bottom: 30px; }
.amely-product-widget .title {
font-size: 20px;
margin-bottom: 35px;
position: relative;
font-weight: 600;
color: #333333; }
.amely-product-widget .slick-dots {
float: right;
width: auto;
margin-top: 15px !important; }
.amely-product-widget .slick-arrow.slick-prev {
left: -30px; }
.amely-product-widget .slick-arrow.slick-next {
right: -30px; }
.amely-product-widget .slick-arrow.small {
width: 30px;
height: 30px;
opacity: 1;
visibility: visible;
color: #999999;
border: none;
background-color: transparent; }
.amely-product-widget .slick-arrow.small:before {
width: 28px;
height: 28px;
line-height: 28px;
font-size: 12px; }
.amely-product-widget .slick-arrow.small.slick-prev {
left: auto;
right: 30px; }
.amely-product-widget .slick-arrow.small.slick-next {
right: 0; }
.amely-product-widget .slick-arrows-bottom {
position: relative;
text-align: right;
float: left;
margin-top: -18px; }
.amely-product-widget .slick-arrows-bottom .slick-arrow {
position: relative;
left: auto !important;
right: auto !important;
top: auto !important;
transform: translateY(0); }
.amely-product-widget .product {
margin-bottom: 20px;
padding-bottom: 20px; }
.amely-product-widget .product-buttons {
font-size: 0;
position: absolute;
bottom: 0;
left: 20px; }
.amely-product-widget .product-buttons > div {
display: inline-block;
vertical-align: top;
width: 38px;
height: 38px;
text-align: center;
margin-right: 5px; }
.amely-product-widget .product-buttons > div a {
display: block;
height: 38px;
width: 38px;
line-height: 38px;
color: #999999;
background-color: #ededed;
border: none;
border-radius: 0;
padding: 0; }
.amely-product-widget .product-buttons > div a:before {
font-size: 15px;
line-height: 38px !important; }
.amely-product-widget .product-buttons > div a:focus {
outline: none; }
.amely-product-widget .product-buttons > div a:hover {
color: #ffffff !important;
background-color: #333333; }
.amely-product-widget .yith-wcwl-add-to-wishlist {
display: inline-block;
margin-top: 0; }
.amely-product-widget .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important; }
.amely-product-widget .yith-wcwl-add-to-wishlist a {
display: block;
color: #999999; }
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist:before {
display: inline-block;
content: '\f387'; }
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.add_to_wishlist.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
vertical-align: -10px; }
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: '\f388'; }
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback,
.amely-product-widget .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .feedback {
display: none; }
.amely-product-widget .add-to-cart-btn a.loading {
font-size: 0; }
.amely-product-widget .add-to-cart-btn a.loading:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
top: 5px;
left: 8px;
line-height: 0;
width: 0; }
.amely-product-widget .add-to-cart-btn a:not(.loading):before {
content: '\e60d'; }
.amely-product-widget .add-to-cart-btn a:not(.loading).add_to_cart_button:before {
content: '\e60d'; }
.amely-product-widget .add-to-cart-btn a:not(.loading).product_type_variable:before {
content: '\e64d'; }
.amely-product-widget .add-to-cart-btn a:not(.loading).product_type_variable.isw-ready:not(.loading):not(.added):before {
content: '\e60d'; }
.amely-product-widget .add-to-cart-btn a:not(.loading).product_type_variable.isw-readmore:not(.loading):not(.added):before {
content: '\e60d'; }
.amely-product-widget .add-to-cart-btn a:not(.loading).product_type_external:before {
content: '\e62d'; }
.amely-product-widget .add-to-cart-btn a.added:before {
content: '\f375' !important; }
.amely-product-widget .add-to-cart-btn a.added:hover:before {
color: #ffffff !important; }
.amely-product-widget .add-to-cart-btn a.added_to_cart {
display: none; }
.amely-product-widget .compare-btn.loading a:before {
content: url(//hanayama-toys.com/wp-content/themes/hanayama/assets/images/loading.svg);
position: absolute;
top: 5px;
left: 8px;
line-height: 0;
height: 0; }
.amely-product-widget .compare-btn a:before {
content: '\f4a8'; }
.amely-product-widget .compare-btn .blockUI,
.amely-product-widget .compare-btn .blocOverlay {
display: none !important; }
.amely-product-widget.enable-carousel .product_list_widget {
opacity: 0; }
.amely-product-widget.enable-carousel .product_list_widget.slick-initialized {
opacity: 1; }
.amely-product {
position: relative;
text-align: center; }
.amely-product:hover .background-overlay {
opacity: 1;
visibility: visible; }
.amely-product:hover .button {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%); }
.amely-product .product-top-text {
position: absolute;
top: 60px;
left: 50%;
font-size: 34px;
letter-spacing: 0.1em;
color: #333333;
font-weight: 700;
transform: translateX(-50%); }
.amely-product .background-overlay {
display: block;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
z-index: 1; }
.amely-product .product-image {
background: no-repeat center center;
background-size: 100%; }
.amely-product .product-image img {
opacity: 0; }
.amely-product .product-title,
.amely-product .product-price {
font-size: 24px; }
.amely-product .product-title {
margin-bottom: 20px; }
.amely-product .product-price {
font-weight: 700;
color: #333333; }
.amely-product .product-info {
position: absolute;
bottom: 60px;
left: 50%;
width: 100%;
transform: translateX(-50%); }
.amely-product .button {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
max-width: 220px;
width: 100%;
z-index: 2;
background-color: transparent;
border: 1px solid #ffffff;
opacity: 0;
visibility: hidden;
padding: 20px 0;
transform: translate(-50%, -30%); }
.amely-product .button:hover {
background-color: #ffffff;
color: #333333;
border-color: #ffffff; }
.amely-product.display_info .product-info {
top: 50%;
z-index: 2; }
.amely-product.display_info .button {
display: none; }
.amely-product.display_info .product-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100; }
.amely-product.display_info .product-title,
.amely-product.display_info .product-price {
font-size: 15px;
line-height: 28px;
color: #fff;
font-weight: 400;
opacity: 0;
visibility: hidden; }
.amely-product.display_info .product-title {
margin-bottom: 10px;
transform: translateY(-10px); }
.amely-product.display_info .product-price {
transform: translateY(10px); }
.amely-product.display_info:hover .background-overlay {
opacity: 0.9; }
.amely-product.display_info:hover .product-title,
.amely-product.display_info:hover .product-price {
opacity: 1;
visibility: visible;
transform: none; }
.progress-bar .vc_single_bar {
border: 1px solid #cfcfcf !important;
height: 50px;
margin-bottom: 25px !important;
border-radius: 0 !important; }
.progress-bar .vc_label {
line-height: 1em !important;
padding: 15px !important;
margin-bottom: 30px;
height: 48px !important; }
.progress-bar .vc_label .vc_label_units {
position: absolute;
top: 15px;
right: 0;
text-align: right;
padding-right: 10px; }
.progress-bar small {
font-size: 18px !important;
font-weight: 600 !important;
text-shadow: none !important;
letter-spacing: .05em; }
.progress-bar .vc_bar {
position: absolute;
border-radius: 0 !important; }
.progress-bar .vc_bar:before {
position: absolute;
display: block;
top: -.5px;
left: -.5px;
content: '';
width: 100%;
height: 100%;
border: 1px solid #c61932; }
.vc_progress_bar .vc_single_bar {
background: #ffffff !important; }
.showcase-product .single-product {
position: relative; }
.showcase-product .products {
margin-top: 50px;
padding: 0 15px; }
.showcase-product .products .product-info {
text-align: center; }
.showcase-product .products .wrap-price {
display: block; }
.showcase-product .title {
position: absolute;
top: 50%;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 10px; }
.showcase-product.image-align-left .title {
transform: rotate(90deg) translateY(-80px);
left: auto;
right: 0; }
.showcase-product.image-align-right .title {
transform: rotate(-90deg) translateY(-80px);
left: 0;
right: auto; }
.showcase-product .product-image {
position: relative;
min-height: 600px; }
.showcase-product .product-image .number-squence {
position: absolute;
top: 50%;
left: -5%;
font-size: 48px;
line-height: 36px;
font-weight: 300;
color: #333333; }
.showcase-product .product-image.align-right .number-squence {
left: -10%;
right: auto; }
.showcase-product .product-image.align-right .number-squence:after {
display: inline-block;
vertical-align: middle;
content: '';
width: 80px;
height: 2px;
background-color: #333333;
margin-left: 20px; }
.showcase-product .product-image.align-left .number-squence {
right: -10%;
left: auto; }
.showcase-product .product-image.align-left .number-squence:before {
display: inline-block;
vertical-align: middle;
content: '';
width: 80px;
height: 2px;
background-color: #333333;
margin-right: 20px; }
body.onepage-scroll .vc_row {
height: 100%; }
.onepage-scroll .onepage .wpb_column,
.onepage-scroll .onepage .vc_column-inner,
.onepage-scroll .onepage .wpb_wrapper,
.onepage-scroll .onepage .amely-showcase-product,
.onepage-scroll .onepage .showcase-product {
height: 100% !important; }
.amely-social.shape-circle .social-links li i {
border-radius: 100%;
border: 1px solid #cccccc; }
.amely-social.shape-square .social-links li i,
.amely-social.shape-circle .social-links li i {
height: 2.5em;
width: 2.5em;
line-height: 2.5; }
.amely-social .social-links li {
display: inline-block;
margin: 0 5px; }
.amely-social .social-links li:last-child {
margin-right: 0; }
.amely-social .social-links li i {
position: relative;
z-index: 2; }
.amely-team-members {
margin-bottom: 30px; }
.amely-team-members .name {
font-size: 18px;
line-height: 1.8;
margin: 0 0 10px 0; }
.amely-team-members .role {
display: block;
overflow: hidden;
letter-spacing: .03em;
margin-bottom: 10px; }
.amely-team-members .subtext {
text-transform: uppercase;
font-size: 13px;
color: #ababab;
letter-spacing: .1em;
text-indent: .1em;
line-height: 24px;
height: 28px;
overflow: hidden;
margin: 0; }
.amely-team-members .biography {
font-size: 15px;
letter-spacing: .03em;
line-height: 1.6;
margin-top: 15px; }
.amely-team-members .member-image {
position: relative;
overflow: hidden; }
.amely-team-members img {
display: block;
margin: 0 auto;
width: 100%;
transition: all 0.5s ease; }
.amely-team-members:hover img {
transform: scale(1.1); }
.amely-team-members:hover .social-inside,
.amely-team-members:hover .social-below {
opacity: 1;
visibility: visible;
transition: all 0.5s ease; }
.amely-team-members .social-inside {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
margin: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.7);
color: rgba(0, 0, 0, 0.7);
opacity: 0;
visibility: hidden; }
.amely-team-members .social-inside .social-list__item {
color: #ffffff; }
.amely-team-members .social-list__item {
margin: 0 15px;
font-size: 20px; }
.amely-team-members .memeber-caption {
position: relative;
background-color: #ffffff;
text-align: center;
padding: 25px 10px; }
.amely-team-members .social-list {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); }
.amely-testimonial-carousel {
opacity: 0;
text-align: center;
margin-bottom: 0 !important; }
.amely-testimonial-carousel img {
margin: 0 auto 30px;
border-radius: 100%; }
.image-above-center .amely-testimonial-carousel img {
width: 120px; }
.amely-testimonial-carousel p {
font-size: 18px; }
.amely-testimonial-carousel .amely-testimonial-carousel__text {
position: relative;
font-size: 18px;
line-height: 32px;
text-align: center;
margin-bottom: 30px;
letter-spacing: 0.1em; }
.gray-box .amely-testimonial-carousel .amely-testimonial-carousel__text {
padding: 0 50px; }
.amely-testimonial-carousel .box-cite {
margin: 0 auto; }
.amely-testimonial-carousel .amely-testimonial-carousel__cite,
.amely-testimonial-carousel .amely-testimonial-carousel__sub-cite {
display: inline-block;
margin: 0 auto;
line-height: 1.6em; }
.amely-testimonial-carousel .amely-testimonial-carousel__cite {
font-size: 18px;
font-weight: 600;
color: #333333; }
.amely-testimonial-carousel .amely-testimonial-carousel__sub-cite {
bottom: -10px;
margin: 0 auto; }
.amely-testimonial-carousel .amely-testimonial-carousel__sub-cite:before {
content: '/';
padding: 0 10px; }
.amely-testimonial-carousel .slick-list {
padding-bottom: 30px; }
.gray-box .amely-testimonial-carousel {
padding-left: 150px; }
.image-below {
position: relative;
z-index: 10;
padding-top: 30px; }
.image-below .amely-testimonial-carousel__text {
padding: 0 200px; }
.image-below:before {
display: block;
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABCCAMAAAAon9sQAAAAM1BMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u6Q4Jt8AAAAEHRSTlMAECAwQFBgcICQoLDA0ODwVOCoyAAAAWlJREFUeAHt19Gq5CAQhOEycUzHdLTf/2n3cteZ1So4A4eB+W8DnyghaeExr+PfLBZlAEsrkmwd1MqydVLrkC2n1ilbnVouW5GY1XQrMyt0q1Brly2jVpati1omW/5Gq1PLZSveae3M6rqVmRW6Vai1yZZRK/+KdVHrkC2nlv2K1al1ylZQyz/f2t5oZTwXYzemuWCNfa2v9SFW+4GVY8x1a/+BRU/DFhPrWKJWXQw6Yw+6gxZjj6l1vv4fx/bFDEBWNbbFPqUy+6xu8dQlvxGRMHYtLzHjyZOPeQn1uFKPp4xR94y6yapHhLjF/V6vuvniLjqULF4rfx+XK/5TxWu59umMbGbXzYdVAMWs+nLk02YvctNsIFZLspWZtUO1ThCrQLVuEKtCte5ErApiDdTSOqBanrC0eoZqGbC0aoJo3RlLy3dAs1oBFlavG6BZ1wOYW60OjxdWv0qa/X2bV8sJALW6u5XJKfwBmBPAfVq03noAAAAASUVORK5CYII=);
position: absolute;
top: 0;
left: 50%;
margin-top: 10px;
transform: translate(-50%); }
.image-above-left {
text-align: left;
background-color: #ffffff;
padding: 50px 40px; }
.image-above-left .amely-testimonial-carousel__img,
.image-above-left .box-cite {
display: inline-block;
vertical-align: middle;
width: 100px; }
.image-above-left .amely-testimonial-carousel__img img,
.image-above-left .box-cite img {
margin: 0 0 30px 0; }
.image-above-left .box-cite {
width: calc(100% - 110px) !important;
padding-top: 10px;
margin-bottom: 30px; }
.image-above-left .amely-testimonial-carousel__text {
letter-spacing: 0;
text-align: justify; }
.image-above-center img {
width: 120px; }
.image-above-center .amely-testimonial-carousel__text {
padding: 0 !important;
letter-spacing: 0;
font-size: 14px;
line-height: 24px; }
.amely-testimonial-carousel__item {
margin: 0 15px; }
.vc_custom_heading.style-amely {
font-weight: 500;
letter-spacing: 0; }
.vc_custom_heading.style-amely > span {
display: inline-block; }
.vc_custom_heading.align-center > span:after {
margin-left: auto;
margin-right: auto; }
.vc_custom_heading.align-right > span:after {
margin-left: auto;
margin-right: 0; }
.vc_row.row:before,
.vc_row.row:after {
display: none; }
.vc_row.amely-stick-row {
-ms-flex-align: start;
align-items: start; }
.vc_tta-panel-body {
box-sizing: border-box !important; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel-body {
border-width: 0; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tabs-list {
margin-bottom: 30px; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab {
color: #888888;
padding-bottom: 7px; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a {
position: relative;
font-size: 24px;
line-height: 1.5;
font-weight: 600;
border: none;
margin: 0 20px;
padding: 0 0 10px; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a > span {
cursor: pointer; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a {
display: inline-block;
color: #888888;
border: none;
padding: 0; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel-title {
line-height: 1.5;
padding-bottom: 30px; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel-heading {
border: none; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a:after,
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a:after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
height: 2px !important;
width: 100% !important;
display: block !important;
border: none !important;
background-color: #333333 !important;
transition: transform .5s;
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1); }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab > a:hover:after,
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-tab.vc_active > a:after,
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-title > a:hover:after,
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel.vc_active .vc_tta-panel-title > a:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely.vc_tta-controls-align-left .vc_tta-tab:first-child > a {
margin-left: 0; }
.wpb-js-composer .vc_tta-tabs.vc_tta-style-amely.vc_tta-style-amely.vc_tta-controls-align-right .vc_tta-tab:last-child > a {
margin-right: 0; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel .vc_tta-panel-heading {
border-top-width: 0;
border-right-width: 0;
border-left-width: 0;
border-bottom: 1px solid #eeeeee; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel:first-child .vc_tta-panel-heading {
border-top: 1px solid #eeeeee; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel.vc_active {
border-bottom: 1px solid #eeeeee; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel.vc_active .vc_tta-panel-heading {
background-color: #eeeeee; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel-title {
font-size: 18px;
line-height: 1.5;
color: #333333; }
.wpb-js-composer .vc_tta-accordion.vc_tta-style-amely.vc_tta-style-amely .vc_tta-panel-body {
border: none !important;
padding: 30px 0 !important; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely {
margin-bottom: 20px; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely .vc_toggle_title h4 {
font-size: 18px;
line-height: 1.5;
color: #333333;
display: block;
border-top: 1px solid #eeeeee;
border-bottom: 1px solid #eeeeee;
margin: 0;
padding: 14px 20px; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely.vc_toggle_active .vc_toggle_title {
background-color: #eeeeee; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely.vc_toggle_active .vc_toggle_content {
border-bottom: 1px solid #eeeeee; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely + .vc_toggle.vc_toggle_amely.vc_toggle_amely {
margin-top: -20px; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely + .vc_toggle.vc_toggle_amely.vc_toggle_amely .vc_toggle_title h4 {
border-top-width: 0; }
.wpb-js-composer .vc_toggle.vc_toggle_amely.vc_toggle_amely .vc_toggle_content {
margin: 0;
padding: 30px 0; }  .screen-reader-text {
position: absolute !important;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
width: 1px;
height: 1px; }
.screen-reader-text:focus {
top: 5px;
left: 5px;
z-index: 100000;
display: block;
clip: auto !important;
padding: 15px 23px 14px;
width: auto;
height: auto;
border-radius: 3px;
background-color: #f1f1f1;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
color: #21759b;
text-decoration: none;
font-weight: bold;
font-size: 14px;
line-height: normal; } #content[tabindex="-1"]:focus {
outline: 0; }
.alignleft {
display: inline;
float: left;
margin: 5px 20px 20px 0; }
.alignright {
display: inline;
float: right;
margin-left: 1.5em; }
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto; }   _::-webkit-full-page-media, _:future, :root #woo-quick-view .summary table.product-share td {
padding-bottom: 40px; }   #wp-admin-bar-amely-coming-soon a:before {
content: '\f135';
font-family: FontAwesome !important; }
#wp-admin-bar-amely-coming-soon.coming-soon-success a {
color: #20b862 !important; }
#wp-admin-bar-amely-coming-soon.coming-soon-warning a {
color: #f0ad4e !important; }
#wp-admin-bar-amely-coming-soon.coming-soon-warning a:before {
color: #f0ad4e !important; }
.hot-line {
width: 165px; }
.hot-line .hot-line-text,
.hot-line i {
display: inline-block;
vertical-align: middle; }
.hot-line .hot-line-text {
text-align: right;
padding-right: 20px; }
.hot-line h4 {
text-transform: uppercase;
font-size: 14px;
line-height: 1.7;
letter-spacing: .05em;
color: #ababab;
margin-top: 0;
margin-bottom: 0; }
.hot-line a {
font-size: 16px;
line-height: 1.5;
font-weight: 600;
color: #333333; }
.hot-line i {
font-size: 34px;
color: #ababab; }
.ls-4-p {
letter-spacing: 4px; }
.ls-15-p {
letter-spacing: 15px; }
.ls-30 {
letter-spacing: .03em; }
.ls-50 {
letter-spacing: .05em; }
.ls-100 {
letter-spacing: .1em; }
.ls-200 {
letter-spacing: .2em; }
.ls-300 {
letter-spacing: .2em; }
.ls-400 {
letter-spacing: .4em; }
.ls-500 {
letter-spacing: .5em; }
.tp-caption.rs-hover-ready.hover-line {
position: relative;
padding-bottom: 5px; }
.tp-caption.rs-hover-ready.hover-line:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 1px;
transition: transform .5s;
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1); }
.tp-caption.rs-hover-ready.hover-line:hover:after {
transform: scale3d(1, 1, 1);
transform-origin: 0% 50%; }
.vc_row.coming-soon-row h4:before {
margin-right: 15px;
content: ""; }
.vc_row.coming-soon-row h2 {
font-weight: 700 !important;
margin-bottom: 80px; }
.vc_row.coming-soon-row .amely-mailchimp {
max-width: 570px; }
.vc_row.newsletter-icon-rotate .amely-icon-box {
position: relative;
padding: 50px 0; }
.vc_row.newsletter-icon-rotate .amely-icon-box .tm-icon-box__content .title {
font-weight: 600;
letter-spacing: 0; }
.vc_row.newsletter-icon-rotate .tm-icon-box__icon {
position: absolute;
top: 0;
left: 50%;
transform: rotate(-30deg) translateX(-50%); }
.wpb_text_column.rotate-vertical {
margin: 0;
position: absolute;
top: 50%;
left: -140px;
transform: rotate(-90deg) translateY(-50%); }
.wpb_text_column.rotate-vertical br {
display: none; }
.wpb_text_column.rotate-vertical a {
padding-right: 50px; }
.wpb_text_column.rotate-vertical a:last-child {
padding: 0; }
.vc_row.contact-form-white .wpcf7 .wpcf7-text, .vc_row.contact-form-white .wpcf7 textarea {
background-color: #ffffff; }
.vc_row.lookbook-video {
text-align: right; }
.vc_row.product-tabs {
position: relative; }
.vc_row.product-tabs .tm-shortcode.amely-button {
position: absolute;
right: 15px; }
.vc_row.footer-vc ul.menu {
list-style: none;
padding: 0; }
.vc_row.footer-vc ul.menu > li {
font-size: 14px;
line-height: 35px; }
.vc_row.footer-vc ul.menu > li > a:hover {
color: #333333; }
.vc_row.footer-vc ul.menu i {
padding-right: 30px;
max-width: 35px;
width: 100%; }
.vc_row.footer-vc-new {
text-align: center; }
.vc_row.footer-vc-new .social-vc li {
display: inline-block;
padding: 0 10px; }
.vc_row.footer-vc-new .social-vc a {
font-size: 14px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.vc_row.row-overflow-visible {
overflow: visible !important; }
.vc_row.row-overflow-visible.row-slider .text-slider {
position: absolute;
top: 50%;
left: 10%; }
.amely-banner3.banner-collection .banner-content .banner-text h3 {
font-size: 40px; }
.megamenu-home h6 {
letter-spacing: .01em;
margin-top: 15px;
margin-bottom: 15px; }
.megamenu-home .wpb_single_image {
overflow: hidden;
margin-right: 30px;
max-height: 140px;
box-shadow: 0 15px 40px 0 rgba(51, 51, 51, 0.2); }
.megamenu-home .wpb_single_image {
max-width: 222px; }
.megamenu-home .wpb_column:hover .wpb_single_image {
box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.3); }
a.lp-button {
padding: 0;
border: none;
background-color: transparent !important;
color: #333333 !important; }
a.lp-button:before {
display: inline-block;
content: '';
width: 30px;
height: 1px;
background-color: #333333;
vertical-align: middle;
margin-right: 10px; }
.vc_row.lp-homepage img {
box-shadow: 0 0 40px 0 rgba(51, 51, 51, 0.2);
border-radius: 10px; }
.vc_row.lp-homepage img:hover {
box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.3); }
.vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey {
position: relative; }
.vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
opacity: 0;
visibility: hidden;
transition: 0.5s;
z-index: 1; }
.vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:before {
display: inline-block;
content: 'View Demo';
width: 160px;
height: 60px;
line-height: 60px;
font-size: 14px;
font-weight: 600;
color: #23232d;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
background-color: #ffffff;
opacity: 0;
visibility: hidden;
transform: translate(-50%, -30%);
z-index: 2; }
.vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:hover:after, .vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:hover:before {
opacity: 1;
visibility: visible; }
.vc_row.lp-homepage .vc_single_image-wrapper.vc_box_border_grey:hover:before {
transform: translate(-50%, -50%); }
.show-case .vc_single_image-wrapper {
overflow: hidden; }
#button-video .wpb_single_image,
.show-case .wpb_single_image {
margin-bottom: 30px; }
#button-video img:hover,
.show-case img:hover {
transform: scale(1.1); }
.text-underline {
text-decoration: underline; } .slick-slider.slick-initialized {
opacity: 1;
visibility: visible; }
.slick-slide a {
margin: 0; }
button.slick-arrow, .slick-arrow.amely-button {
font-size: 0;
text-align: center;
position: absolute;
top: 50%;
height: 40px;
width: 40px;
color: #333333;
background-color: transparent;
border: none;
z-index: 1;
transform: translateY(-50%);
padding: 0 !important; }
button.slick-arrow:hover, .slick-arrow.amely-button:hover, button.slick-arrow:focus, .slick-arrow.amely-button:focus {
background-color: transparent; }
button.slick-arrow:before, .slick-arrow.amely-button:before {
font-size: 30px;
line-height: 40px;
display: inline-block; }
button.slick-arrow.slick-prev, .slick-arrow.slick-prev.amely-button {
left: 0; }
button.slick-arrow.slick-prev:before, .slick-arrow.slick-prev.amely-button:before {
content: '\e64a'; }
button.slick-arrow.slick-next, .slick-arrow.slick-next.amely-button {
right: 0; }
button.slick-arrow.slick-next:before, .slick-arrow.slick-next.amely-button:before {
content: '\e649'; }
button.slick-arrow.slick-disabled, .slick-arrow.slick-disabled.amely-button {
opacity: 0 !important;
visibility: hidden !important; }
button.slick-arrow.slick-disabled:before, .slick-arrow.slick-disabled.amely-button:before {
opacity: 1; }
.vc_row[data-vc-stretch-content="true"] button.slick-arrow.slick-prev, .vc_row[data-vc-stretch-content="true"] .slick-arrow.slick-prev.amely-button {
left: 15px; }
.vc_row[data-vc-stretch-content="true"] button.slick-arrow.slick-next, .vc_row[data-vc-stretch-content="true"] .slick-arrow.slick-next.amely-button {
right: 15px; }
.slick-dots {
list-style: none;
display: block;
text-align: center;
margin-top: 35px !important;
padding: 0;
width: 100%; }
.slick-dots li {
position: relative;
display: inline-block;
vertical-align: middle;
height: 10px;
width: 10px;
margin-right: 5px;
margin-left: 0;
line-height: 1.5;
height: initial;
width: initial;
padding: 0;
cursor: pointer;
background: none; }
.slick-dots li:last-child {
margin: 0; }
.slick-dots li button, .slick-dots li .amely-button {
font-size: 0;
display: block;
cursor: pointer;
outline: 0;
line-height: 0;
border: 0;
width: 6px;
height: 6px;
color: transparent;
background-color: #1f1f1f !important;
opacity: .2;
padding: 0;
-webkit-backface-visibility: hidden;
border-radius: 50%;
margin: 0 4px;
padding: 0; }
.slick-dots li button:focus, .slick-dots li .amely-button:focus {
outline: 0; }
.slick-dots li button:hover, .slick-dots li .amely-button:hover {
opacity: .75; }
.slick-dots li.slick-active button, .slick-dots li.slick-active .amely-button {
background-color: #999999 !important;
opacity: 1;
width: 14px;
height: 14px;
margin: 0; }
.slick-track {
position: relative;
display: block;
left: 0;
top: 0;
min-width: 100%; }
.slick-arrow:hover {
opacity: 1 !important; } [class*="hint--"]:after {
font-family: inherit !important;
text-shadow: none !important;
letter-spacing: 0;
-webkit-backface-visibility: none; } .pswp__caption {
display: none; }
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
background-color: transparent !important; }
.pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
background-color: transparent !important; }
.pswp__button.pswp__button--arrow--left,
.pswp__button.pswp__button--arrow--right {
background-color: transparent !important;
background-image: none !important; } .admin-bar #growls.tr {
top: 42px; }
.growl {
overflow: hidden;
opacity: 1;
border-radius: 0;
padding: 0 !important;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.2); }
.growl .growl-close {
padding: 8px; }
.growl .growl-message {
display: table; }
.growl .growl-message a {
color: #ffffff;
text-decoration: underline; }
.growl .growl-thumb {
display: table-cell;
vertical-align: middle;
width: 100%;
max-width: 180px; }
.growl .growl-content {
display: table-cell;
vertical-align: middle;
padding: 10px 15px; }
.growl .growl-thumb + .growl-content {
padding-left: 15px; }
.growl ul.error {
list-style-type: none;
padding: 20px;
margin: 0; }
.growl ul.error li {
font-size: 15px;
line-height: 1.5;
padding-left: 10px; } .ps {
position: relative; }
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
height: 6px; }
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
width: 6px; }
.ps > .ps__scrollbar-x-rail {
height: 6px; }
.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
background-color: #9f9f9f;
border-radius: 3px;
bottom: 0;
height: 3px; }
.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
height: 6px; }
.ps > .ps__scrollbar-y-rail {
width: 6px; }
.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
background-color: #9f9f9f;
border-radius: 3px;
right: 0;
width: 3px; }
.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
width: 6px; }
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
height: 6px; }
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
width: 6px; }
.ps:active > .ps__scrollbar-x-rail,
.ps:active > .ps__scrollbar-y-rail {
opacity: .6; }
.ps:hover > .ps__scrollbar-x-rail:hover {
background-color: #e6e6e6;
opacity: 1; }
.ps:hover > .ps__scrollbar-y-rail:hover {
background-color: #e6e6e6;
opacity: 1; } .tp-bullets.custom {
width: auto !important;
top: 98% !important; }
.tp-bullets.custom .tp-bullet {
position: relative;
top: auto !important;
left: auto !important;
display: inline-block;
width: 20px;
height: 5px;
opacity: .2;
background-color: #000000;
margin-right: 5px; }
.tp-bullets.custom .tp-bullet:hover,
.tp-bullets.custom .tp-bullet.selected {
opacity: 1; } .mfp-bg {
opacity: .7; }
button.mfp-close, .mfp-close.amely-button {
background-color: transparent !important; }
@media (min-width: 544px){
.flex-sm-first{
-ms-flex-order: -1;
order: -1; }
.flex-sm-last{
-ms-flex-order: 1;
order: 1; }
.flex-sm-unordered{
-ms-flex-order: 0;
order: 0; }
.flex-items-sm-top{
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-sm-middle{
-ms-flex-align: center;
align-items: center; }
.flex-items-sm-bottom{
-ms-flex-align: end;
align-items: flex-end; }
.flex-sm-top{
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-sm-middle{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-sm-bottom{
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-sm-left{
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-sm-center{
-ms-flex-pack: center;
justify-content: center; }
.flex-items-sm-right{
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-sm-around{
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-sm-between{
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-sm-left{
float: left !important; }
.pull-sm-right{
float: right !important; }
.pull-sm-none{
float: none !important; }
.text-sm-left{
text-align: left !important; }
.text-sm-right{
text-align: right !important; }
.text-sm-center{
text-align: center !important; }
.hidden-sm-up{
display: none !important; }
.col-sm-is-5{
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-sm-pull-is-5{
right: 20%; }
.col-sm-push-is-5{
left: 20%; }
.col-sm-offset-is-5{
margin-left: 20%; }
.pt-sm--100{
padding-top: -100px; }
.pt-sm--100-i{
padding-top: -100px !important; }
.mt-sm--100{
margin-top: -100px; }
.mt-sm--100-i{
margin-top: -100px !important; }
.pt-sm--95{
padding-top: -95px; }
.pt-sm--95-i{
padding-top: -95px !important; }
.mt-sm--95{
margin-top: -95px; }
.mt-sm--95-i{
margin-top: -95px !important; }
.pt-sm--90{
padding-top: -90px; }
.pt-sm--90-i{
padding-top: -90px !important; }
.mt-sm--90{
margin-top: -90px; }
.mt-sm--90-i{
margin-top: -90px !important; }
.pt-sm--85{
padding-top: -85px; }
.pt-sm--85-i{
padding-top: -85px !important; }
.mt-sm--85{
margin-top: -85px; }
.mt-sm--85-i{
margin-top: -85px !important; }
.pt-sm--80{
padding-top: -80px; }
.pt-sm--80-i{
padding-top: -80px !important; }
.mt-sm--80{
margin-top: -80px; }
.mt-sm--80-i{
margin-top: -80px !important; }
.pt-sm--75{
padding-top: -75px; }
.pt-sm--75-i{
padding-top: -75px !important; }
.mt-sm--75{
margin-top: -75px; }
.mt-sm--75-i{
margin-top: -75px !important; }
.pt-sm--70{
padding-top: -70px; }
.pt-sm--70-i{
padding-top: -70px !important; }
.mt-sm--70{
margin-top: -70px; }
.mt-sm--70-i{
margin-top: -70px !important; }
.pt-sm--65{
padding-top: -65px; }
.pt-sm--65-i{
padding-top: -65px !important; }
.mt-sm--65{
margin-top: -65px; }
.mt-sm--65-i{
margin-top: -65px !important; }
.pt-sm--60{
padding-top: -60px; }
.pt-sm--60-i{
padding-top: -60px !important; }
.mt-sm--60{
margin-top: -60px; }
.mt-sm--60-i{
margin-top: -60px !important; }
.pt-sm--55{
padding-top: -55px; }
.pt-sm--55-i{
padding-top: -55px !important; }
.mt-sm--55{
margin-top: -55px; }
.mt-sm--55-i{
margin-top: -55px !important; }
.pt-sm--50{
padding-top: -50px; }
.pt-sm--50-i{
padding-top: -50px !important; }
.mt-sm--50{
margin-top: -50px; }
.mt-sm--50-i{
margin-top: -50px !important; }
.pt-sm--45{
padding-top: -45px; }
.pt-sm--45-i{
padding-top: -45px !important; }
.mt-sm--45{
margin-top: -45px; }
.mt-sm--45-i{
margin-top: -45px !important; }
.pt-sm--40{
padding-top: -40px; }
.pt-sm--40-i{
padding-top: -40px !important; }
.mt-sm--40{
margin-top: -40px; }
.mt-sm--40-i{
margin-top: -40px !important; }
.pt-sm--35{
padding-top: -35px; }
.pt-sm--35-i{
padding-top: -35px !important; }
.mt-sm--35{
margin-top: -35px; }
.mt-sm--35-i{
margin-top: -35px !important; }
.pt-sm--30{
padding-top: -30px; }
.pt-sm--30-i{
padding-top: -30px !important; }
.mt-sm--30{
margin-top: -30px; }
.mt-sm--30-i{
margin-top: -30px !important; }
.pt-sm--25{
padding-top: -25px; }
.pt-sm--25-i{
padding-top: -25px !important; }
.mt-sm--25{
margin-top: -25px; }
.mt-sm--25-i{
margin-top: -25px !important; }
.pt-sm--20{
padding-top: -20px; }
.pt-sm--20-i{
padding-top: -20px !important; }
.mt-sm--20{
margin-top: -20px; }
.mt-sm--20-i{
margin-top: -20px !important; }
.pt-sm--15{
padding-top: -15px; }
.pt-sm--15-i{
padding-top: -15px !important; }
.mt-sm--15{
margin-top: -15px; }
.mt-sm--15-i{
margin-top: -15px !important; }
.pt-sm--10{
padding-top: -10px; }
.pt-sm--10-i{
padding-top: -10px !important; }
.mt-sm--10{
margin-top: -10px; }
.mt-sm--10-i{
margin-top: -10px !important; }
.pt-sm--5{
padding-top: -5px; }
.pt-sm--5-i{
padding-top: -5px !important; }
.mt-sm--5{
margin-top: -5px; }
.mt-sm--5-i{
margin-top: -5px !important; }
.pt-sm-0{
padding-top: 0px; }
.pt-sm-0-i{
padding-top: 0px !important; }
.mt-sm-0{
margin-top: 0px; }
.mt-sm-0-i{
margin-top: 0px !important; }
.pt-sm-5{
padding-top: 5px; }
.pt-sm-5-i{
padding-top: 5px !important; }
.mt-sm-5{
margin-top: 5px; }
.mt-sm-5-i{
margin-top: 5px !important; }
.pt-sm-10{
padding-top: 10px; }
.pt-sm-10-i{
padding-top: 10px !important; }
.mt-sm-10{
margin-top: 10px; }
.mt-sm-10-i{
margin-top: 10px !important; }
.pt-sm-15{
padding-top: 15px; }
.pt-sm-15-i{
padding-top: 15px !important; }
.mt-sm-15{
margin-top: 15px; }
.mt-sm-15-i{
margin-top: 15px !important; }
.pt-sm-20{
padding-top: 20px; }
.pt-sm-20-i{
padding-top: 20px !important; }
.mt-sm-20{
margin-top: 20px; }
.mt-sm-20-i{
margin-top: 20px !important; }
.pt-sm-25{
padding-top: 25px; }
.pt-sm-25-i{
padding-top: 25px !important; }
.mt-sm-25{
margin-top: 25px; }
.mt-sm-25-i{
margin-top: 25px !important; }
.pt-sm-30{
padding-top: 30px; }
.pt-sm-30-i{
padding-top: 30px !important; }
.mt-sm-30{
margin-top: 30px; }
.mt-sm-30-i{
margin-top: 30px !important; }
.pt-sm-35{
padding-top: 35px; }
.pt-sm-35-i{
padding-top: 35px !important; }
.mt-sm-35{
margin-top: 35px; }
.mt-sm-35-i{
margin-top: 35px !important; }
.pt-sm-40{
padding-top: 40px; }
.pt-sm-40-i{
padding-top: 40px !important; }
.mt-sm-40{
margin-top: 40px; }
.mt-sm-40-i{
margin-top: 40px !important; }
.pt-sm-45{
padding-top: 45px; }
.pt-sm-45-i{
padding-top: 45px !important; }
.mt-sm-45{
margin-top: 45px; }
.mt-sm-45-i{
margin-top: 45px !important; }
.pt-sm-50{
padding-top: 50px; }
.pt-sm-50-i{
padding-top: 50px !important; }
.mt-sm-50{
margin-top: 50px; }
.mt-sm-50-i{
margin-top: 50px !important; }
.pt-sm-55{
padding-top: 55px; }
.pt-sm-55-i{
padding-top: 55px !important; }
.mt-sm-55{
margin-top: 55px; }
.mt-sm-55-i{
margin-top: 55px !important; }
.pt-sm-60{
padding-top: 60px; }
.pt-sm-60-i{
padding-top: 60px !important; }
.mt-sm-60{
margin-top: 60px; }
.mt-sm-60-i{
margin-top: 60px !important; }
.pt-sm-65{
padding-top: 65px; }
.pt-sm-65-i{
padding-top: 65px !important; }
.mt-sm-65{
margin-top: 65px; }
.mt-sm-65-i{
margin-top: 65px !important; }
.pt-sm-70{
padding-top: 70px; }
.pt-sm-70-i{
padding-top: 70px !important; }
.mt-sm-70{
margin-top: 70px; }
.mt-sm-70-i{
margin-top: 70px !important; }
.pt-sm-75{
padding-top: 75px; }
.pt-sm-75-i{
padding-top: 75px !important; }
.mt-sm-75{
margin-top: 75px; }
.mt-sm-75-i{
margin-top: 75px !important; }
.pt-sm-80{
padding-top: 80px; }
.pt-sm-80-i{
padding-top: 80px !important; }
.mt-sm-80{
margin-top: 80px; }
.mt-sm-80-i{
margin-top: 80px !important; }
.pt-sm-85{
padding-top: 85px; }
.pt-sm-85-i{
padding-top: 85px !important; }
.mt-sm-85{
margin-top: 85px; }
.mt-sm-85-i{
margin-top: 85px !important; }
.pt-sm-90{
padding-top: 90px; }
.pt-sm-90-i{
padding-top: 90px !important; }
.mt-sm-90{
margin-top: 90px; }
.mt-sm-90-i{
margin-top: 90px !important; }
.pt-sm-95{
padding-top: 95px; }
.pt-sm-95-i{
padding-top: 95px !important; }
.mt-sm-95{
margin-top: 95px; }
.mt-sm-95-i{
margin-top: 95px !important; }
.pt-sm-100{
padding-top: 100px; }
.pt-sm-100-i{
padding-top: 100px !important; }
.mt-sm-100{
margin-top: 100px; }
.mt-sm-100-i{
margin-top: 100px !important; }
.pr-sm--100{
padding-right: -100px; }
.pr-sm--100-i{
padding-right: -100px !important; }
.mr-sm--100{
margin-right: -100px; }
.mr-sm--100-i{
margin-right: -100px !important; }
.pr-sm--95{
padding-right: -95px; }
.pr-sm--95-i{
padding-right: -95px !important; }
.mr-sm--95{
margin-right: -95px; }
.mr-sm--95-i{
margin-right: -95px !important; }
.pr-sm--90{
padding-right: -90px; }
.pr-sm--90-i{
padding-right: -90px !important; }
.mr-sm--90{
margin-right: -90px; }
.mr-sm--90-i{
margin-right: -90px !important; }
.pr-sm--85{
padding-right: -85px; }
.pr-sm--85-i{
padding-right: -85px !important; }
.mr-sm--85{
margin-right: -85px; }
.mr-sm--85-i{
margin-right: -85px !important; }
.pr-sm--80{
padding-right: -80px; }
.pr-sm--80-i{
padding-right: -80px !important; }
.mr-sm--80{
margin-right: -80px; }
.mr-sm--80-i{
margin-right: -80px !important; }
.pr-sm--75{
padding-right: -75px; }
.pr-sm--75-i{
padding-right: -75px !important; }
.mr-sm--75{
margin-right: -75px; }
.mr-sm--75-i{
margin-right: -75px !important; }
.pr-sm--70{
padding-right: -70px; }
.pr-sm--70-i{
padding-right: -70px !important; }
.mr-sm--70{
margin-right: -70px; }
.mr-sm--70-i{
margin-right: -70px !important; }
.pr-sm--65{
padding-right: -65px; }
.pr-sm--65-i{
padding-right: -65px !important; }
.mr-sm--65{
margin-right: -65px; }
.mr-sm--65-i{
margin-right: -65px !important; }
.pr-sm--60{
padding-right: -60px; }
.pr-sm--60-i{
padding-right: -60px !important; }
.mr-sm--60{
margin-right: -60px; }
.mr-sm--60-i{
margin-right: -60px !important; }
.pr-sm--55{
padding-right: -55px; }
.pr-sm--55-i{
padding-right: -55px !important; }
.mr-sm--55{
margin-right: -55px; }
.mr-sm--55-i{
margin-right: -55px !important; }
.pr-sm--50{
padding-right: -50px; }
.pr-sm--50-i{
padding-right: -50px !important; }
.mr-sm--50{
margin-right: -50px; }
.mr-sm--50-i{
margin-right: -50px !important; }
.pr-sm--45{
padding-right: -45px; }
.pr-sm--45-i{
padding-right: -45px !important; }
.mr-sm--45{
margin-right: -45px; }
.mr-sm--45-i{
margin-right: -45px !important; }
.pr-sm--40{
padding-right: -40px; }
.pr-sm--40-i{
padding-right: -40px !important; }
.mr-sm--40{
margin-right: -40px; }
.mr-sm--40-i{
margin-right: -40px !important; }
.pr-sm--35{
padding-right: -35px; }
.pr-sm--35-i{
padding-right: -35px !important; }
.mr-sm--35{
margin-right: -35px; }
.mr-sm--35-i{
margin-right: -35px !important; }
.pr-sm--30{
padding-right: -30px; }
.pr-sm--30-i{
padding-right: -30px !important; }
.mr-sm--30{
margin-right: -30px; }
.mr-sm--30-i{
margin-right: -30px !important; }
.pr-sm--25{
padding-right: -25px; }
.pr-sm--25-i{
padding-right: -25px !important; }
.mr-sm--25{
margin-right: -25px; }
.mr-sm--25-i{
margin-right: -25px !important; }
.pr-sm--20{
padding-right: -20px; }
.pr-sm--20-i{
padding-right: -20px !important; }
.mr-sm--20{
margin-right: -20px; }
.mr-sm--20-i{
margin-right: -20px !important; }
.pr-sm--15{
padding-right: -15px; }
.pr-sm--15-i{
padding-right: -15px !important; }
.mr-sm--15{
margin-right: -15px; }
.mr-sm--15-i{
margin-right: -15px !important; }
.pr-sm--10{
padding-right: -10px; }
.pr-sm--10-i{
padding-right: -10px !important; }
.mr-sm--10{
margin-right: -10px; }
.mr-sm--10-i{
margin-right: -10px !important; }
.pr-sm--5{
padding-right: -5px; }
.pr-sm--5-i{
padding-right: -5px !important; }
.mr-sm--5{
margin-right: -5px; }
.mr-sm--5-i{
margin-right: -5px !important; }
.pr-sm-0{
padding-right: 0px; }
.pr-sm-0-i{
padding-right: 0px !important; }
.mr-sm-0{
margin-right: 0px; }
.mr-sm-0-i{
margin-right: 0px !important; }
.pr-sm-5{
padding-right: 5px; }
.pr-sm-5-i{
padding-right: 5px !important; }
.mr-sm-5{
margin-right: 5px; }
.mr-sm-5-i{
margin-right: 5px !important; }
.pr-sm-10{
padding-right: 10px; }
.pr-sm-10-i{
padding-right: 10px !important; }
.mr-sm-10{
margin-right: 10px; }
.mr-sm-10-i{
margin-right: 10px !important; }
.pr-sm-15{
padding-right: 15px; }
.pr-sm-15-i{
padding-right: 15px !important; }
.mr-sm-15{
margin-right: 15px; }
.mr-sm-15-i{
margin-right: 15px !important; }
.pr-sm-20{
padding-right: 20px; }
.pr-sm-20-i{
padding-right: 20px !important; }
.mr-sm-20{
margin-right: 20px; }
.mr-sm-20-i{
margin-right: 20px !important; }
.pr-sm-25{
padding-right: 25px; }
.pr-sm-25-i{
padding-right: 25px !important; }
.mr-sm-25{
margin-right: 25px; }
.mr-sm-25-i{
margin-right: 25px !important; }
.pr-sm-30{
padding-right: 30px; }
.pr-sm-30-i{
padding-right: 30px !important; }
.mr-sm-30{
margin-right: 30px; }
.mr-sm-30-i{
margin-right: 30px !important; }
.pr-sm-35{
padding-right: 35px; }
.pr-sm-35-i{
padding-right: 35px !important; }
.mr-sm-35{
margin-right: 35px; }
.mr-sm-35-i{
margin-right: 35px !important; }
.pr-sm-40{
padding-right: 40px; }
.pr-sm-40-i{
padding-right: 40px !important; }
.mr-sm-40{
margin-right: 40px; }
.mr-sm-40-i{
margin-right: 40px !important; }
.pr-sm-45{
padding-right: 45px; }
.pr-sm-45-i{
padding-right: 45px !important; }
.mr-sm-45{
margin-right: 45px; }
.mr-sm-45-i{
margin-right: 45px !important; }
.pr-sm-50{
padding-right: 50px; }
.pr-sm-50-i{
padding-right: 50px !important; }
.mr-sm-50{
margin-right: 50px; }
.mr-sm-50-i{
margin-right: 50px !important; }
.pr-sm-55{
padding-right: 55px; }
.pr-sm-55-i{
padding-right: 55px !important; }
.mr-sm-55{
margin-right: 55px; }
.mr-sm-55-i{
margin-right: 55px !important; }
.pr-sm-60{
padding-right: 60px; }
.pr-sm-60-i{
padding-right: 60px !important; }
.mr-sm-60{
margin-right: 60px; }
.mr-sm-60-i{
margin-right: 60px !important; }
.pr-sm-65{
padding-right: 65px; }
.pr-sm-65-i{
padding-right: 65px !important; }
.mr-sm-65{
margin-right: 65px; }
.mr-sm-65-i{
margin-right: 65px !important; }
.pr-sm-70{
padding-right: 70px; }
.pr-sm-70-i{
padding-right: 70px !important; }
.mr-sm-70{
margin-right: 70px; }
.mr-sm-70-i{
margin-right: 70px !important; }
.pr-sm-75{
padding-right: 75px; }
.pr-sm-75-i{
padding-right: 75px !important; }
.mr-sm-75{
margin-right: 75px; }
.mr-sm-75-i{
margin-right: 75px !important; }
.pr-sm-80{
padding-right: 80px; }
.pr-sm-80-i{
padding-right: 80px !important; }
.mr-sm-80{
margin-right: 80px; }
.mr-sm-80-i{
margin-right: 80px !important; }
.pr-sm-85{
padding-right: 85px; }
.pr-sm-85-i{
padding-right: 85px !important; }
.mr-sm-85{
margin-right: 85px; }
.mr-sm-85-i{
margin-right: 85px !important; }
.pr-sm-90{
padding-right: 90px; }
.pr-sm-90-i{
padding-right: 90px !important; }
.mr-sm-90{
margin-right: 90px; }
.mr-sm-90-i{
margin-right: 90px !important; }
.pr-sm-95{
padding-right: 95px; }
.pr-sm-95-i{
padding-right: 95px !important; }
.mr-sm-95{
margin-right: 95px; }
.mr-sm-95-i{
margin-right: 95px !important; }
.pr-sm-100{
padding-right: 100px; }
.pr-sm-100-i{
padding-right: 100px !important; }
.mr-sm-100{
margin-right: 100px; }
.mr-sm-100-i{
margin-right: 100px !important; }
.pb-sm--100{
padding-bottom: -100px; }
.pb-sm--100-i{
padding-bottom: -100px !important; }
.mb-sm--100{
margin-bottom: -100px; }
.mb-sm--100-i{
margin-bottom: -100px !important; }
.pb-sm--95{
padding-bottom: -95px; }
.pb-sm--95-i{
padding-bottom: -95px !important; }
.mb-sm--95{
margin-bottom: -95px; }
.mb-sm--95-i{
margin-bottom: -95px !important; }
.pb-sm--90{
padding-bottom: -90px; }
.pb-sm--90-i{
padding-bottom: -90px !important; }
.mb-sm--90{
margin-bottom: -90px; }
.mb-sm--90-i{
margin-bottom: -90px !important; }
.pb-sm--85{
padding-bottom: -85px; }
.pb-sm--85-i{
padding-bottom: -85px !important; }
.mb-sm--85{
margin-bottom: -85px; }
.mb-sm--85-i{
margin-bottom: -85px !important; }
.pb-sm--80{
padding-bottom: -80px; }
.pb-sm--80-i{
padding-bottom: -80px !important; }
.mb-sm--80{
margin-bottom: -80px; }
.mb-sm--80-i{
margin-bottom: -80px !important; }
.pb-sm--75{
padding-bottom: -75px; }
.pb-sm--75-i{
padding-bottom: -75px !important; }
.mb-sm--75{
margin-bottom: -75px; }
.mb-sm--75-i{
margin-bottom: -75px !important; }
.pb-sm--70{
padding-bottom: -70px; }
.pb-sm--70-i{
padding-bottom: -70px !important; }
.mb-sm--70{
margin-bottom: -70px; }
.mb-sm--70-i{
margin-bottom: -70px !important; }
.pb-sm--65{
padding-bottom: -65px; }
.pb-sm--65-i{
padding-bottom: -65px !important; }
.mb-sm--65{
margin-bottom: -65px; }
.mb-sm--65-i{
margin-bottom: -65px !important; }
.pb-sm--60{
padding-bottom: -60px; }
.pb-sm--60-i{
padding-bottom: -60px !important; }
.mb-sm--60{
margin-bottom: -60px; }
.mb-sm--60-i{
margin-bottom: -60px !important; }
.pb-sm--55{
padding-bottom: -55px; }
.pb-sm--55-i{
padding-bottom: -55px !important; }
.mb-sm--55{
margin-bottom: -55px; }
.mb-sm--55-i{
margin-bottom: -55px !important; }
.pb-sm--50{
padding-bottom: -50px; }
.pb-sm--50-i{
padding-bottom: -50px !important; }
.mb-sm--50{
margin-bottom: -50px; }
.mb-sm--50-i{
margin-bottom: -50px !important; }
.pb-sm--45{
padding-bottom: -45px; }
.pb-sm--45-i{
padding-bottom: -45px !important; }
.mb-sm--45{
margin-bottom: -45px; }
.mb-sm--45-i{
margin-bottom: -45px !important; }
.pb-sm--40{
padding-bottom: -40px; }
.pb-sm--40-i{
padding-bottom: -40px !important; }
.mb-sm--40{
margin-bottom: -40px; }
.mb-sm--40-i{
margin-bottom: -40px !important; }
.pb-sm--35{
padding-bottom: -35px; }
.pb-sm--35-i{
padding-bottom: -35px !important; }
.mb-sm--35{
margin-bottom: -35px; }
.mb-sm--35-i{
margin-bottom: -35px !important; }
.pb-sm--30{
padding-bottom: -30px; }
.pb-sm--30-i{
padding-bottom: -30px !important; }
.mb-sm--30{
margin-bottom: -30px; }
.mb-sm--30-i{
margin-bottom: -30px !important; }
.pb-sm--25{
padding-bottom: -25px; }
.pb-sm--25-i{
padding-bottom: -25px !important; }
.mb-sm--25{
margin-bottom: -25px; }
.mb-sm--25-i{
margin-bottom: -25px !important; }
.pb-sm--20{
padding-bottom: -20px; }
.pb-sm--20-i{
padding-bottom: -20px !important; }
.mb-sm--20{
margin-bottom: -20px; }
.mb-sm--20-i{
margin-bottom: -20px !important; }
.pb-sm--15{
padding-bottom: -15px; }
.pb-sm--15-i{
padding-bottom: -15px !important; }
.mb-sm--15{
margin-bottom: -15px; }
.mb-sm--15-i{
margin-bottom: -15px !important; }
.pb-sm--10{
padding-bottom: -10px; }
.pb-sm--10-i{
padding-bottom: -10px !important; }
.mb-sm--10{
margin-bottom: -10px; }
.mb-sm--10-i{
margin-bottom: -10px !important; }
.pb-sm--5{
padding-bottom: -5px; }
.pb-sm--5-i{
padding-bottom: -5px !important; }
.mb-sm--5{
margin-bottom: -5px; }
.mb-sm--5-i{
margin-bottom: -5px !important; }
.pb-sm-0{
padding-bottom: 0px; }
.pb-sm-0-i{
padding-bottom: 0px !important; }
.mb-sm-0{
margin-bottom: 0px; }
.mb-sm-0-i{
margin-bottom: 0px !important; }
.pb-sm-5{
padding-bottom: 5px; }
.pb-sm-5-i{
padding-bottom: 5px !important; }
.mb-sm-5{
margin-bottom: 5px; }
.mb-sm-5-i{
margin-bottom: 5px !important; }
.pb-sm-10{
padding-bottom: 10px; }
.pb-sm-10-i{
padding-bottom: 10px !important; }
.mb-sm-10{
margin-bottom: 10px; }
.mb-sm-10-i{
margin-bottom: 10px !important; }
.pb-sm-15{
padding-bottom: 15px; }
.pb-sm-15-i{
padding-bottom: 15px !important; }
.mb-sm-15{
margin-bottom: 15px; }
.mb-sm-15-i{
margin-bottom: 15px !important; }
.pb-sm-20{
padding-bottom: 20px; }
.pb-sm-20-i{
padding-bottom: 20px !important; }
.mb-sm-20{
margin-bottom: 20px; }
.mb-sm-20-i{
margin-bottom: 20px !important; }
.pb-sm-25{
padding-bottom: 25px; }
.pb-sm-25-i{
padding-bottom: 25px !important; }
.mb-sm-25{
margin-bottom: 25px; }
.mb-sm-25-i{
margin-bottom: 25px !important; }
.pb-sm-30{
padding-bottom: 30px; }
.pb-sm-30-i{
padding-bottom: 30px !important; }
.mb-sm-30{
margin-bottom: 30px; }
.mb-sm-30-i{
margin-bottom: 30px !important; }
.pb-sm-35{
padding-bottom: 35px; }
.pb-sm-35-i{
padding-bottom: 35px !important; }
.mb-sm-35{
margin-bottom: 35px; }
.mb-sm-35-i{
margin-bottom: 35px !important; }
.pb-sm-40{
padding-bottom: 40px; }
.pb-sm-40-i{
padding-bottom: 40px !important; }
.mb-sm-40{
margin-bottom: 40px; }
.mb-sm-40-i{
margin-bottom: 40px !important; }
.pb-sm-45{
padding-bottom: 45px; }
.pb-sm-45-i{
padding-bottom: 45px !important; }
.mb-sm-45{
margin-bottom: 45px; }
.mb-sm-45-i{
margin-bottom: 45px !important; }
.pb-sm-50{
padding-bottom: 50px; }
.pb-sm-50-i{
padding-bottom: 50px !important; }
.mb-sm-50{
margin-bottom: 50px; }
.mb-sm-50-i{
margin-bottom: 50px !important; }
.pb-sm-55{
padding-bottom: 55px; }
.pb-sm-55-i{
padding-bottom: 55px !important; }
.mb-sm-55{
margin-bottom: 55px; }
.mb-sm-55-i{
margin-bottom: 55px !important; }
.pb-sm-60{
padding-bottom: 60px; }
.pb-sm-60-i{
padding-bottom: 60px !important; }
.mb-sm-60{
margin-bottom: 60px; }
.mb-sm-60-i{
margin-bottom: 60px !important; }
.pb-sm-65{
padding-bottom: 65px; }
.pb-sm-65-i{
padding-bottom: 65px !important; }
.mb-sm-65{
margin-bottom: 65px; }
.mb-sm-65-i{
margin-bottom: 65px !important; }
.pb-sm-70{
padding-bottom: 70px; }
.pb-sm-70-i{
padding-bottom: 70px !important; }
.mb-sm-70{
margin-bottom: 70px; }
.mb-sm-70-i{
margin-bottom: 70px !important; }
.pb-sm-75{
padding-bottom: 75px; }
.pb-sm-75-i{
padding-bottom: 75px !important; }
.mb-sm-75{
margin-bottom: 75px; }
.mb-sm-75-i{
margin-bottom: 75px !important; }
.pb-sm-80{
padding-bottom: 80px; }
.pb-sm-80-i{
padding-bottom: 80px !important; }
.mb-sm-80{
margin-bottom: 80px; }
.mb-sm-80-i{
margin-bottom: 80px !important; }
.pb-sm-85{
padding-bottom: 85px; }
.pb-sm-85-i{
padding-bottom: 85px !important; }
.mb-sm-85{
margin-bottom: 85px; }
.mb-sm-85-i{
margin-bottom: 85px !important; }
.pb-sm-90{
padding-bottom: 90px; }
.pb-sm-90-i{
padding-bottom: 90px !important; }
.mb-sm-90{
margin-bottom: 90px; }
.mb-sm-90-i{
margin-bottom: 90px !important; }
.pb-sm-95{
padding-bottom: 95px; }
.pb-sm-95-i{
padding-bottom: 95px !important; }
.mb-sm-95{
margin-bottom: 95px; }
.mb-sm-95-i{
margin-bottom: 95px !important; }
.pb-sm-100{
padding-bottom: 100px; }
.pb-sm-100-i{
padding-bottom: 100px !important; }
.mb-sm-100{
margin-bottom: 100px; }
.mb-sm-100-i{
margin-bottom: 100px !important; }
.pl-sm--100{
padding-left: -100px; }
.pl-sm--100-i{
padding-left: -100px !important; }
.ml-sm--100{
margin-left: -100px; }
.ml-sm--100-i{
margin-left: -100px !important; }
.pl-sm--95{
padding-left: -95px; }
.pl-sm--95-i{
padding-left: -95px !important; }
.ml-sm--95{
margin-left: -95px; }
.ml-sm--95-i{
margin-left: -95px !important; }
.pl-sm--90{
padding-left: -90px; }
.pl-sm--90-i{
padding-left: -90px !important; }
.ml-sm--90{
margin-left: -90px; }
.ml-sm--90-i{
margin-left: -90px !important; }
.pl-sm--85{
padding-left: -85px; }
.pl-sm--85-i{
padding-left: -85px !important; }
.ml-sm--85{
margin-left: -85px; }
.ml-sm--85-i{
margin-left: -85px !important; }
.pl-sm--80{
padding-left: -80px; }
.pl-sm--80-i{
padding-left: -80px !important; }
.ml-sm--80{
margin-left: -80px; }
.ml-sm--80-i{
margin-left: -80px !important; }
.pl-sm--75{
padding-left: -75px; }
.pl-sm--75-i{
padding-left: -75px !important; }
.ml-sm--75{
margin-left: -75px; }
.ml-sm--75-i{
margin-left: -75px !important; }
.pl-sm--70{
padding-left: -70px; }
.pl-sm--70-i{
padding-left: -70px !important; }
.ml-sm--70{
margin-left: -70px; }
.ml-sm--70-i{
margin-left: -70px !important; }
.pl-sm--65{
padding-left: -65px; }
.pl-sm--65-i{
padding-left: -65px !important; }
.ml-sm--65{
margin-left: -65px; }
.ml-sm--65-i{
margin-left: -65px !important; }
.pl-sm--60{
padding-left: -60px; }
.pl-sm--60-i{
padding-left: -60px !important; }
.ml-sm--60{
margin-left: -60px; }
.ml-sm--60-i{
margin-left: -60px !important; }
.pl-sm--55{
padding-left: -55px; }
.pl-sm--55-i{
padding-left: -55px !important; }
.ml-sm--55{
margin-left: -55px; }
.ml-sm--55-i{
margin-left: -55px !important; }
.pl-sm--50{
padding-left: -50px; }
.pl-sm--50-i{
padding-left: -50px !important; }
.ml-sm--50{
margin-left: -50px; }
.ml-sm--50-i{
margin-left: -50px !important; }
.pl-sm--45{
padding-left: -45px; }
.pl-sm--45-i{
padding-left: -45px !important; }
.ml-sm--45{
margin-left: -45px; }
.ml-sm--45-i{
margin-left: -45px !important; }
.pl-sm--40{
padding-left: -40px; }
.pl-sm--40-i{
padding-left: -40px !important; }
.ml-sm--40{
margin-left: -40px; }
.ml-sm--40-i{
margin-left: -40px !important; }
.pl-sm--35{
padding-left: -35px; }
.pl-sm--35-i{
padding-left: -35px !important; }
.ml-sm--35{
margin-left: -35px; }
.ml-sm--35-i{
margin-left: -35px !important; }
.pl-sm--30{
padding-left: -30px; }
.pl-sm--30-i{
padding-left: -30px !important; }
.ml-sm--30{
margin-left: -30px; }
.ml-sm--30-i{
margin-left: -30px !important; }
.pl-sm--25{
padding-left: -25px; }
.pl-sm--25-i{
padding-left: -25px !important; }
.ml-sm--25{
margin-left: -25px; }
.ml-sm--25-i{
margin-left: -25px !important; }
.pl-sm--20{
padding-left: -20px; }
.pl-sm--20-i{
padding-left: -20px !important; }
.ml-sm--20{
margin-left: -20px; }
.ml-sm--20-i{
margin-left: -20px !important; }
.pl-sm--15{
padding-left: -15px; }
.pl-sm--15-i{
padding-left: -15px !important; }
.ml-sm--15{
margin-left: -15px; }
.ml-sm--15-i{
margin-left: -15px !important; }
.pl-sm--10{
padding-left: -10px; }
.pl-sm--10-i{
padding-left: -10px !important; }
.ml-sm--10{
margin-left: -10px; }
.ml-sm--10-i{
margin-left: -10px !important; }
.pl-sm--5{
padding-left: -5px; }
.pl-sm--5-i{
padding-left: -5px !important; }
.ml-sm--5{
margin-left: -5px; }
.ml-sm--5-i{
margin-left: -5px !important; }
.pl-sm-0{
padding-left: 0px; }
.pl-sm-0-i{
padding-left: 0px !important; }
.ml-sm-0{
margin-left: 0px; }
.ml-sm-0-i{
margin-left: 0px !important; }
.pl-sm-5{
padding-left: 5px; }
.pl-sm-5-i{
padding-left: 5px !important; }
.ml-sm-5{
margin-left: 5px; }
.ml-sm-5-i{
margin-left: 5px !important; }
.pl-sm-10{
padding-left: 10px; }
.pl-sm-10-i{
padding-left: 10px !important; }
.ml-sm-10{
margin-left: 10px; }
.ml-sm-10-i{
margin-left: 10px !important; }
.pl-sm-15{
padding-left: 15px; }
.pl-sm-15-i{
padding-left: 15px !important; }
.ml-sm-15{
margin-left: 15px; }
.ml-sm-15-i{
margin-left: 15px !important; }
.pl-sm-20{
padding-left: 20px; }
.pl-sm-20-i{
padding-left: 20px !important; }
.ml-sm-20{
margin-left: 20px; }
.ml-sm-20-i{
margin-left: 20px !important; }
.pl-sm-25{
padding-left: 25px; }
.pl-sm-25-i{
padding-left: 25px !important; }
.ml-sm-25{
margin-left: 25px; }
.ml-sm-25-i{
margin-left: 25px !important; }
.pl-sm-30{
padding-left: 30px; }
.pl-sm-30-i{
padding-left: 30px !important; }
.ml-sm-30{
margin-left: 30px; }
.ml-sm-30-i{
margin-left: 30px !important; }
.pl-sm-35{
padding-left: 35px; }
.pl-sm-35-i{
padding-left: 35px !important; }
.ml-sm-35{
margin-left: 35px; }
.ml-sm-35-i{
margin-left: 35px !important; }
.pl-sm-40{
padding-left: 40px; }
.pl-sm-40-i{
padding-left: 40px !important; }
.ml-sm-40{
margin-left: 40px; }
.ml-sm-40-i{
margin-left: 40px !important; }
.pl-sm-45{
padding-left: 45px; }
.pl-sm-45-i{
padding-left: 45px !important; }
.ml-sm-45{
margin-left: 45px; }
.ml-sm-45-i{
margin-left: 45px !important; }
.pl-sm-50{
padding-left: 50px; }
.pl-sm-50-i{
padding-left: 50px !important; }
.ml-sm-50{
margin-left: 50px; }
.ml-sm-50-i{
margin-left: 50px !important; }
.pl-sm-55{
padding-left: 55px; }
.pl-sm-55-i{
padding-left: 55px !important; }
.ml-sm-55{
margin-left: 55px; }
.ml-sm-55-i{
margin-left: 55px !important; }
.pl-sm-60{
padding-left: 60px; }
.pl-sm-60-i{
padding-left: 60px !important; }
.ml-sm-60{
margin-left: 60px; }
.ml-sm-60-i{
margin-left: 60px !important; }
.pl-sm-65{
padding-left: 65px; }
.pl-sm-65-i{
padding-left: 65px !important; }
.ml-sm-65{
margin-left: 65px; }
.ml-sm-65-i{
margin-left: 65px !important; }
.pl-sm-70{
padding-left: 70px; }
.pl-sm-70-i{
padding-left: 70px !important; }
.ml-sm-70{
margin-left: 70px; }
.ml-sm-70-i{
margin-left: 70px !important; }
.pl-sm-75{
padding-left: 75px; }
.pl-sm-75-i{
padding-left: 75px !important; }
.ml-sm-75{
margin-left: 75px; }
.ml-sm-75-i{
margin-left: 75px !important; }
.pl-sm-80{
padding-left: 80px; }
.pl-sm-80-i{
padding-left: 80px !important; }
.ml-sm-80{
margin-left: 80px; }
.ml-sm-80-i{
margin-left: 80px !important; }
.pl-sm-85{
padding-left: 85px; }
.pl-sm-85-i{
padding-left: 85px !important; }
.ml-sm-85{
margin-left: 85px; }
.ml-sm-85-i{
margin-left: 85px !important; }
.pl-sm-90{
padding-left: 90px; }
.pl-sm-90-i{
padding-left: 90px !important; }
.ml-sm-90{
margin-left: 90px; }
.ml-sm-90-i{
margin-left: 90px !important; }
.pl-sm-95{
padding-left: 95px; }
.pl-sm-95-i{
padding-left: 95px !important; }
.ml-sm-95{
margin-left: 95px; }
.ml-sm-95-i{
margin-left: 95px !important; }
.pl-sm-100{
padding-left: 100px; }
.pl-sm-100-i{
padding-left: 100px !important; }
.ml-sm-100{
margin-left: 100px; }
.ml-sm-100-i{
margin-left: 100px !important; }
.pa-sm--100{
padding: -100px; }
.ma-sm--100{
margin: -100px; }
.pv-sm--100{
padding-top: -100px;
padding-bottom: -100px; }
.mv-sm--100{
margin-top: -100px;
margin-bottom: -100px; }
.ph-sm--100{
padding-left: -100px;
padding-right: -100px; }
.mh-sm--100{
margin-left: -100px;
padding-right: -100px; }
.pa-sm--95{
padding: -95px; }
.ma-sm--95{
margin: -95px; }
.pv-sm--95{
padding-top: -95px;
padding-bottom: -95px; }
.mv-sm--95{
margin-top: -95px;
margin-bottom: -95px; }
.ph-sm--95{
padding-left: -95px;
padding-right: -95px; }
.mh-sm--95{
margin-left: -95px;
padding-right: -95px; }
.pa-sm--90{
padding: -90px; }
.ma-sm--90{
margin: -90px; }
.pv-sm--90{
padding-top: -90px;
padding-bottom: -90px; }
.mv-sm--90{
margin-top: -90px;
margin-bottom: -90px; }
.ph-sm--90{
padding-left: -90px;
padding-right: -90px; }
.mh-sm--90{
margin-left: -90px;
padding-right: -90px; }
.pa-sm--85{
padding: -85px; }
.ma-sm--85{
margin: -85px; }
.pv-sm--85{
padding-top: -85px;
padding-bottom: -85px; }
.mv-sm--85{
margin-top: -85px;
margin-bottom: -85px; }
.ph-sm--85{
padding-left: -85px;
padding-right: -85px; }
.mh-sm--85{
margin-left: -85px;
padding-right: -85px; }
.pa-sm--80{
padding: -80px; }
.ma-sm--80{
margin: -80px; }
.pv-sm--80{
padding-top: -80px;
padding-bottom: -80px; }
.mv-sm--80{
margin-top: -80px;
margin-bottom: -80px; }
.ph-sm--80{
padding-left: -80px;
padding-right: -80px; }
.mh-sm--80{
margin-left: -80px;
padding-right: -80px; }
.pa-sm--75{
padding: -75px; }
.ma-sm--75{
margin: -75px; }
.pv-sm--75{
padding-top: -75px;
padding-bottom: -75px; }
.mv-sm--75{
margin-top: -75px;
margin-bottom: -75px; }
.ph-sm--75{
padding-left: -75px;
padding-right: -75px; }
.mh-sm--75{
margin-left: -75px;
padding-right: -75px; }
.pa-sm--70{
padding: -70px; }
.ma-sm--70{
margin: -70px; }
.pv-sm--70{
padding-top: -70px;
padding-bottom: -70px; }
.mv-sm--70{
margin-top: -70px;
margin-bottom: -70px; }
.ph-sm--70{
padding-left: -70px;
padding-right: -70px; }
.mh-sm--70{
margin-left: -70px;
padding-right: -70px; }
.pa-sm--65{
padding: -65px; }
.ma-sm--65{
margin: -65px; }
.pv-sm--65{
padding-top: -65px;
padding-bottom: -65px; }
.mv-sm--65{
margin-top: -65px;
margin-bottom: -65px; }
.ph-sm--65{
padding-left: -65px;
padding-right: -65px; }
.mh-sm--65{
margin-left: -65px;
padding-right: -65px; }
.pa-sm--60{
padding: -60px; }
.ma-sm--60{
margin: -60px; }
.pv-sm--60{
padding-top: -60px;
padding-bottom: -60px; }
.mv-sm--60{
margin-top: -60px;
margin-bottom: -60px; }
.ph-sm--60{
padding-left: -60px;
padding-right: -60px; }
.mh-sm--60{
margin-left: -60px;
padding-right: -60px; }
.pa-sm--55{
padding: -55px; }
.ma-sm--55{
margin: -55px; }
.pv-sm--55{
padding-top: -55px;
padding-bottom: -55px; }
.mv-sm--55{
margin-top: -55px;
margin-bottom: -55px; }
.ph-sm--55{
padding-left: -55px;
padding-right: -55px; }
.mh-sm--55{
margin-left: -55px;
padding-right: -55px; }
.pa-sm--50{
padding: -50px; }
.ma-sm--50{
margin: -50px; }
.pv-sm--50{
padding-top: -50px;
padding-bottom: -50px; }
.mv-sm--50{
margin-top: -50px;
margin-bottom: -50px; }
.ph-sm--50{
padding-left: -50px;
padding-right: -50px; }
.mh-sm--50{
margin-left: -50px;
padding-right: -50px; }
.pa-sm--45{
padding: -45px; }
.ma-sm--45{
margin: -45px; }
.pv-sm--45{
padding-top: -45px;
padding-bottom: -45px; }
.mv-sm--45{
margin-top: -45px;
margin-bottom: -45px; }
.ph-sm--45{
padding-left: -45px;
padding-right: -45px; }
.mh-sm--45{
margin-left: -45px;
padding-right: -45px; }
.pa-sm--40{
padding: -40px; }
.ma-sm--40{
margin: -40px; }
.pv-sm--40{
padding-top: -40px;
padding-bottom: -40px; }
.mv-sm--40{
margin-top: -40px;
margin-bottom: -40px; }
.ph-sm--40{
padding-left: -40px;
padding-right: -40px; }
.mh-sm--40{
margin-left: -40px;
padding-right: -40px; }
.pa-sm--35{
padding: -35px; }
.ma-sm--35{
margin: -35px; }
.pv-sm--35{
padding-top: -35px;
padding-bottom: -35px; }
.mv-sm--35{
margin-top: -35px;
margin-bottom: -35px; }
.ph-sm--35{
padding-left: -35px;
padding-right: -35px; }
.mh-sm--35{
margin-left: -35px;
padding-right: -35px; }
.pa-sm--30{
padding: -30px; }
.ma-sm--30{
margin: -30px; }
.pv-sm--30{
padding-top: -30px;
padding-bottom: -30px; }
.mv-sm--30{
margin-top: -30px;
margin-bottom: -30px; }
.ph-sm--30{
padding-left: -30px;
padding-right: -30px; }
.mh-sm--30{
margin-left: -30px;
padding-right: -30px; }
.pa-sm--25{
padding: -25px; }
.ma-sm--25{
margin: -25px; }
.pv-sm--25{
padding-top: -25px;
padding-bottom: -25px; }
.mv-sm--25{
margin-top: -25px;
margin-bottom: -25px; }
.ph-sm--25{
padding-left: -25px;
padding-right: -25px; }
.mh-sm--25{
margin-left: -25px;
padding-right: -25px; }
.pa-sm--20{
padding: -20px; }
.ma-sm--20{
margin: -20px; }
.pv-sm--20{
padding-top: -20px;
padding-bottom: -20px; }
.mv-sm--20{
margin-top: -20px;
margin-bottom: -20px; }
.ph-sm--20{
padding-left: -20px;
padding-right: -20px; }
.mh-sm--20{
margin-left: -20px;
padding-right: -20px; }
.pa-sm--15{
padding: -15px; }
.ma-sm--15{
margin: -15px; }
.pv-sm--15{
padding-top: -15px;
padding-bottom: -15px; }
.mv-sm--15{
margin-top: -15px;
margin-bottom: -15px; }
.ph-sm--15{
padding-left: -15px;
padding-right: -15px; }
.mh-sm--15{
margin-left: -15px;
padding-right: -15px; }
.pa-sm--10{
padding: -10px; }
.ma-sm--10{
margin: -10px; }
.pv-sm--10{
padding-top: -10px;
padding-bottom: -10px; }
.mv-sm--10{
margin-top: -10px;
margin-bottom: -10px; }
.ph-sm--10{
padding-left: -10px;
padding-right: -10px; }
.mh-sm--10{
margin-left: -10px;
padding-right: -10px; }
.pa-sm--5{
padding: -5px; }
.ma-sm--5{
margin: -5px; }
.pv-sm--5{
padding-top: -5px;
padding-bottom: -5px; }
.mv-sm--5{
margin-top: -5px;
margin-bottom: -5px; }
.ph-sm--5{
padding-left: -5px;
padding-right: -5px; }
.mh-sm--5{
margin-left: -5px;
padding-right: -5px; }
.pa-sm-0{
padding: 0px; }
.ma-sm-0{
margin: 0px; }
.pv-sm-0{
padding-top: 0px;
padding-bottom: 0px; }
.mv-sm-0{
margin-top: 0px;
margin-bottom: 0px; }
.ph-sm-0{
padding-left: 0px;
padding-right: 0px; }
.mh-sm-0{
margin-left: 0px;
padding-right: 0px; }
.pa-sm-5{
padding: 5px; }
.ma-sm-5{
margin: 5px; }
.pv-sm-5{
padding-top: 5px;
padding-bottom: 5px; }
.mv-sm-5{
margin-top: 5px;
margin-bottom: 5px; }
.ph-sm-5{
padding-left: 5px;
padding-right: 5px; }
.mh-sm-5{
margin-left: 5px;
padding-right: 5px; }
.pa-sm-10{
padding: 10px; }
.ma-sm-10{
margin: 10px; }
.pv-sm-10{
padding-top: 10px;
padding-bottom: 10px; }
.mv-sm-10{
margin-top: 10px;
margin-bottom: 10px; }
.ph-sm-10{
padding-left: 10px;
padding-right: 10px; }
.mh-sm-10{
margin-left: 10px;
padding-right: 10px; }
.pa-sm-15{
padding: 15px; }
.ma-sm-15{
margin: 15px; }
.pv-sm-15{
padding-top: 15px;
padding-bottom: 15px; }
.mv-sm-15{
margin-top: 15px;
margin-bottom: 15px; }
.ph-sm-15{
padding-left: 15px;
padding-right: 15px; }
.mh-sm-15{
margin-left: 15px;
padding-right: 15px; }
.pa-sm-20{
padding: 20px; }
.ma-sm-20{
margin: 20px; }
.pv-sm-20{
padding-top: 20px;
padding-bottom: 20px; }
.mv-sm-20{
margin-top: 20px;
margin-bottom: 20px; }
.ph-sm-20{
padding-left: 20px;
padding-right: 20px; }
.mh-sm-20{
margin-left: 20px;
padding-right: 20px; }
.pa-sm-25{
padding: 25px; }
.ma-sm-25{
margin: 25px; }
.pv-sm-25{
padding-top: 25px;
padding-bottom: 25px; }
.mv-sm-25{
margin-top: 25px;
margin-bottom: 25px; }
.ph-sm-25{
padding-left: 25px;
padding-right: 25px; }
.mh-sm-25{
margin-left: 25px;
padding-right: 25px; }
.pa-sm-30{
padding: 30px; }
.ma-sm-30{
margin: 30px; }
.pv-sm-30{
padding-top: 30px;
padding-bottom: 30px; }
.mv-sm-30{
margin-top: 30px;
margin-bottom: 30px; }
.ph-sm-30{
padding-left: 30px;
padding-right: 30px; }
.mh-sm-30{
margin-left: 30px;
padding-right: 30px; }
.pa-sm-35{
padding: 35px; }
.ma-sm-35{
margin: 35px; }
.pv-sm-35{
padding-top: 35px;
padding-bottom: 35px; }
.mv-sm-35{
margin-top: 35px;
margin-bottom: 35px; }
.ph-sm-35{
padding-left: 35px;
padding-right: 35px; }
.mh-sm-35{
margin-left: 35px;
padding-right: 35px; }
.pa-sm-40{
padding: 40px; }
.ma-sm-40{
margin: 40px; }
.pv-sm-40{
padding-top: 40px;
padding-bottom: 40px; }
.mv-sm-40{
margin-top: 40px;
margin-bottom: 40px; }
.ph-sm-40{
padding-left: 40px;
padding-right: 40px; }
.mh-sm-40{
margin-left: 40px;
padding-right: 40px; }
.pa-sm-45{
padding: 45px; }
.ma-sm-45{
margin: 45px; }
.pv-sm-45{
padding-top: 45px;
padding-bottom: 45px; }
.mv-sm-45{
margin-top: 45px;
margin-bottom: 45px; }
.ph-sm-45{
padding-left: 45px;
padding-right: 45px; }
.mh-sm-45{
margin-left: 45px;
padding-right: 45px; }
.pa-sm-50{
padding: 50px; }
.ma-sm-50{
margin: 50px; }
.pv-sm-50{
padding-top: 50px;
padding-bottom: 50px; }
.mv-sm-50{
margin-top: 50px;
margin-bottom: 50px; }
.ph-sm-50{
padding-left: 50px;
padding-right: 50px; }
.mh-sm-50{
margin-left: 50px;
padding-right: 50px; }
.pa-sm-55{
padding: 55px; }
.ma-sm-55{
margin: 55px; }
.pv-sm-55{
padding-top: 55px;
padding-bottom: 55px; }
.mv-sm-55{
margin-top: 55px;
margin-bottom: 55px; }
.ph-sm-55{
padding-left: 55px;
padding-right: 55px; }
.mh-sm-55{
margin-left: 55px;
padding-right: 55px; }
.pa-sm-60{
padding: 60px; }
.ma-sm-60{
margin: 60px; }
.pv-sm-60{
padding-top: 60px;
padding-bottom: 60px; }
.mv-sm-60{
margin-top: 60px;
margin-bottom: 60px; }
.ph-sm-60{
padding-left: 60px;
padding-right: 60px; }
.mh-sm-60{
margin-left: 60px;
padding-right: 60px; }
.pa-sm-65{
padding: 65px; }
.ma-sm-65{
margin: 65px; }
.pv-sm-65{
padding-top: 65px;
padding-bottom: 65px; }
.mv-sm-65{
margin-top: 65px;
margin-bottom: 65px; }
.ph-sm-65{
padding-left: 65px;
padding-right: 65px; }
.mh-sm-65{
margin-left: 65px;
padding-right: 65px; }
.pa-sm-70{
padding: 70px; }
.ma-sm-70{
margin: 70px; }
.pv-sm-70{
padding-top: 70px;
padding-bottom: 70px; }
.mv-sm-70{
margin-top: 70px;
margin-bottom: 70px; }
.ph-sm-70{
padding-left: 70px;
padding-right: 70px; }
.mh-sm-70{
margin-left: 70px;
padding-right: 70px; }
.pa-sm-75{
padding: 75px; }
.ma-sm-75{
margin: 75px; }
.pv-sm-75{
padding-top: 75px;
padding-bottom: 75px; }
.mv-sm-75{
margin-top: 75px;
margin-bottom: 75px; }
.ph-sm-75{
padding-left: 75px;
padding-right: 75px; }
.mh-sm-75{
margin-left: 75px;
padding-right: 75px; }
.pa-sm-80{
padding: 80px; }
.ma-sm-80{
margin: 80px; }
.pv-sm-80{
padding-top: 80px;
padding-bottom: 80px; }
.mv-sm-80{
margin-top: 80px;
margin-bottom: 80px; }
.ph-sm-80{
padding-left: 80px;
padding-right: 80px; }
.mh-sm-80{
margin-left: 80px;
padding-right: 80px; }
.pa-sm-85{
padding: 85px; }
.ma-sm-85{
margin: 85px; }
.pv-sm-85{
padding-top: 85px;
padding-bottom: 85px; }
.mv-sm-85{
margin-top: 85px;
margin-bottom: 85px; }
.ph-sm-85{
padding-left: 85px;
padding-right: 85px; }
.mh-sm-85{
margin-left: 85px;
padding-right: 85px; }
.pa-sm-90{
padding: 90px; }
.ma-sm-90{
margin: 90px; }
.pv-sm-90{
padding-top: 90px;
padding-bottom: 90px; }
.mv-sm-90{
margin-top: 90px;
margin-bottom: 90px; }
.ph-sm-90{
padding-left: 90px;
padding-right: 90px; }
.mh-sm-90{
margin-left: 90px;
padding-right: 90px; }
.pa-sm-95{
padding: 95px; }
.ma-sm-95{
margin: 95px; }
.pv-sm-95{
padding-top: 95px;
padding-bottom: 95px; }
.mv-sm-95{
margin-top: 95px;
margin-bottom: 95px; }
.ph-sm-95{
padding-left: 95px;
padding-right: 95px; }
.mh-sm-95{
margin-left: 95px;
padding-right: 95px; }
.pa-sm-100{
padding: 100px; }
.ma-sm-100{
margin: 100px; }
.pv-sm-100{
padding-top: 100px;
padding-bottom: 100px; }
.mv-sm-100{
margin-top: 100px;
margin-bottom: 100px; }
.ph-sm-100{
padding-left: 100px;
padding-right: 100px; }
.mh-sm-100{
margin-left: 100px;
padding-right: 100px; }
.container{
max-width: 576px; }
.col-sm{
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-sm-1{
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-sm-2{
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-sm-3{
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-sm-4{
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-sm-5{
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-sm-6{
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-sm-7{
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-sm-8{
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-sm-9{
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-sm-10{
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-sm-11{
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-sm-12{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-sm-0{
right: auto; }
.pull-sm-1{
right: 8.33333%; }
.pull-sm-2{
right: 16.66667%; }
.pull-sm-3{
right: 25%; }
.pull-sm-4{
right: 33.33333%; }
.pull-sm-5{
right: 41.66667%; }
.pull-sm-6{
right: 50%; }
.pull-sm-7{
right: 58.33333%; }
.pull-sm-8{
right: 66.66667%; }
.pull-sm-9{
right: 75%; }
.pull-sm-10{
right: 83.33333%; }
.pull-sm-11{
right: 91.66667%; }
.pull-sm-12{
right: 100%; }
.push-sm-0{
left: auto; }
.push-sm-1{
left: 8.33333%; }
.push-sm-2{
left: 16.66667%; }
.push-sm-3{
left: 25%; }
.push-sm-4{
left: 33.33333%; }
.push-sm-5{
left: 41.66667%; }
.push-sm-6{
left: 50%; }
.push-sm-7{
left: 58.33333%; }
.push-sm-8{
left: 66.66667%; }
.push-sm-9{
left: 75%; }
.push-sm-10{
left: 83.33333%; }
.push-sm-11{
left: 91.66667%; }
.push-sm-12{
left: 100%; }
.offset-sm-0{
margin-left: 0%; }
.offset-sm-1{
margin-left: 8.33333%; }
.offset-sm-2{
margin-left: 16.66667%; }
.offset-sm-3{
margin-left: 25%; }
.offset-sm-4{
margin-left: 33.33333%; }
.offset-sm-5{
margin-left: 41.66667%; }
.offset-sm-6{
margin-left: 50%; }
.offset-sm-7{
margin-left: 58.33333%; }
.offset-sm-8{
margin-left: 66.66667%; }
.offset-sm-9{
margin-left: 75%; }
.offset-sm-10{
margin-left: 83.33333%; }
.offset-sm-11{
margin-left: 91.66667%; }
.page-title > .container > .row{
min-height: 250px; }
.single-nav__prev-item .item-wrapper,
.single-nav__next-item .item-wrapper{
display: table; }
.products.list .product-loop .product-thumb{
-ms-flex: 0 0 30%;
flex: 0 0 30%;
max-width: 30%; }
.amely-banner3.banner-collection .banner-content .banner-text h3{
font-size: 50px; } }
@media (min-width: 544px) and (max-width: 1199px){
.showcase-product .product{
margin-left: 8% !important; } }
@media (min-width: 544px) and (max-width: 767px){
.amely-blog .slick-arrow.post-carousel-arrow{
opacity: 0;
visibility: hidden; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-next{
right: -30px; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-prev{
left: -30px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow{
opacity: .6;
visibility: visible; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-next{
right: 10px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-prev{
left: 10px; } }
@media (max-width: 991px) and (min-width: 544px){
.products:not(.slick-slider){
margin-left: -10px;
margin-right: -10px; }
.product-loop:not(.slick-slide){
padding-left: 10px;
padding-right: 10px; }
.product-loop:not(.slick-slide) .product-badges span{
left: 10px; } }
@media (min-width: 601px) and (max-width: 782px){
.admin-bar .sticky-header.is-sticky{
top: 46px; } }
@media (min-width: 768px) and (max-width: 1199px){
.site-mobile-menu{
width: 400px; }
.header-wishlist .product_list_widget{
max-height: 500px; } }
@media (min-width: 768px) and (max-width: 991px){
.category-grid-item .woocommerce-loop-category__title{
font-size: 16px; }
.amely-blog .slick-arrow.post-carousel-arrow{
opacity: 0;
visibility: hidden; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-next{
right: -30px; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-prev{
left: -30px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow{
opacity: .6;
visibility: visible; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-next{
right: -20px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-prev{
left: -20px; } }
@media (min-width: 768px){
.flex-md-first{
-ms-flex-order: -1;
order: -1; }
.flex-md-last{
-ms-flex-order: 1;
order: 1; }
.flex-md-unordered{
-ms-flex-order: 0;
order: 0; }
.flex-items-md-top{
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-md-middle{
-ms-flex-align: center;
align-items: center; }
.flex-items-md-bottom{
-ms-flex-align: end;
align-items: flex-end; }
.flex-md-top{
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-md-middle{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-md-bottom{
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-md-left{
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-md-center{
-ms-flex-pack: center;
justify-content: center; }
.flex-items-md-right{
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-md-around{
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-md-between{
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-md-left{
float: left !important; }
.pull-md-right{
float: right !important; }
.pull-md-none{
float: none !important; }
.text-md-left{
text-align: left !important; }
.text-md-right{
text-align: right !important; }
.text-md-center{
text-align: center !important; }
.hidden-md-up{
display: none !important; }
.col-md-is-5{
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-md-pull-is-5{
right: 20%; }
.col-md-push-is-5{
left: 20%; }
.col-md-offset-is-5{
margin-left: 20%; }
.pt-md--100{
padding-top: -100px; }
.pt-md--100-i{
padding-top: -100px !important; }
.mt-md--100{
margin-top: -100px; }
.mt-md--100-i{
margin-top: -100px !important; }
.pt-md--95{
padding-top: -95px; }
.pt-md--95-i{
padding-top: -95px !important; }
.mt-md--95{
margin-top: -95px; }
.mt-md--95-i{
margin-top: -95px !important; }
.pt-md--90{
padding-top: -90px; }
.pt-md--90-i{
padding-top: -90px !important; }
.mt-md--90{
margin-top: -90px; }
.mt-md--90-i{
margin-top: -90px !important; }
.pt-md--85{
padding-top: -85px; }
.pt-md--85-i{
padding-top: -85px !important; }
.mt-md--85{
margin-top: -85px; }
.mt-md--85-i{
margin-top: -85px !important; }
.pt-md--80{
padding-top: -80px; }
.pt-md--80-i{
padding-top: -80px !important; }
.mt-md--80{
margin-top: -80px; }
.mt-md--80-i{
margin-top: -80px !important; }
.pt-md--75{
padding-top: -75px; }
.pt-md--75-i{
padding-top: -75px !important; }
.mt-md--75{
margin-top: -75px; }
.mt-md--75-i{
margin-top: -75px !important; }
.pt-md--70{
padding-top: -70px; }
.pt-md--70-i{
padding-top: -70px !important; }
.mt-md--70{
margin-top: -70px; }
.mt-md--70-i{
margin-top: -70px !important; }
.pt-md--65{
padding-top: -65px; }
.pt-md--65-i{
padding-top: -65px !important; }
.mt-md--65{
margin-top: -65px; }
.mt-md--65-i{
margin-top: -65px !important; }
.pt-md--60{
padding-top: -60px; }
.pt-md--60-i{
padding-top: -60px !important; }
.mt-md--60{
margin-top: -60px; }
.mt-md--60-i{
margin-top: -60px !important; }
.pt-md--55{
padding-top: -55px; }
.pt-md--55-i{
padding-top: -55px !important; }
.mt-md--55{
margin-top: -55px; }
.mt-md--55-i{
margin-top: -55px !important; }
.pt-md--50{
padding-top: -50px; }
.pt-md--50-i{
padding-top: -50px !important; }
.mt-md--50{
margin-top: -50px; }
.mt-md--50-i{
margin-top: -50px !important; }
.pt-md--45{
padding-top: -45px; }
.pt-md--45-i{
padding-top: -45px !important; }
.mt-md--45{
margin-top: -45px; }
.mt-md--45-i{
margin-top: -45px !important; }
.pt-md--40{
padding-top: -40px; }
.pt-md--40-i{
padding-top: -40px !important; }
.mt-md--40{
margin-top: -40px; }
.mt-md--40-i{
margin-top: -40px !important; }
.pt-md--35{
padding-top: -35px; }
.pt-md--35-i{
padding-top: -35px !important; }
.mt-md--35{
margin-top: -35px; }
.mt-md--35-i{
margin-top: -35px !important; }
.pt-md--30{
padding-top: -30px; }
.pt-md--30-i{
padding-top: -30px !important; }
.mt-md--30{
margin-top: -30px; }
.mt-md--30-i{
margin-top: -30px !important; }
.pt-md--25{
padding-top: -25px; }
.pt-md--25-i{
padding-top: -25px !important; }
.mt-md--25{
margin-top: -25px; }
.mt-md--25-i{
margin-top: -25px !important; }
.pt-md--20{
padding-top: -20px; }
.pt-md--20-i{
padding-top: -20px !important; }
.mt-md--20{
margin-top: -20px; }
.mt-md--20-i{
margin-top: -20px !important; }
.pt-md--15{
padding-top: -15px; }
.pt-md--15-i{
padding-top: -15px !important; }
.mt-md--15{
margin-top: -15px; }
.mt-md--15-i{
margin-top: -15px !important; }
.pt-md--10{
padding-top: -10px; }
.pt-md--10-i{
padding-top: -10px !important; }
.mt-md--10{
margin-top: -10px; }
.mt-md--10-i{
margin-top: -10px !important; }
.pt-md--5{
padding-top: -5px; }
.pt-md--5-i{
padding-top: -5px !important; }
.mt-md--5{
margin-top: -5px; }
.mt-md--5-i{
margin-top: -5px !important; }
.pt-md-0{
padding-top: 0px; }
.pt-md-0-i{
padding-top: 0px !important; }
.mt-md-0{
margin-top: 0px; }
.mt-md-0-i{
margin-top: 0px !important; }
.pt-md-5{
padding-top: 5px; }
.pt-md-5-i{
padding-top: 5px !important; }
.mt-md-5{
margin-top: 5px; }
.mt-md-5-i{
margin-top: 5px !important; }
.pt-md-10{
padding-top: 10px; }
.pt-md-10-i{
padding-top: 10px !important; }
.mt-md-10{
margin-top: 10px; }
.mt-md-10-i{
margin-top: 10px !important; }
.pt-md-15{
padding-top: 15px; }
.pt-md-15-i{
padding-top: 15px !important; }
.mt-md-15{
margin-top: 15px; }
.mt-md-15-i{
margin-top: 15px !important; }
.pt-md-20{
padding-top: 20px; }
.pt-md-20-i{
padding-top: 20px !important; }
.mt-md-20{
margin-top: 20px; }
.mt-md-20-i{
margin-top: 20px !important; }
.pt-md-25{
padding-top: 25px; }
.pt-md-25-i{
padding-top: 25px !important; }
.mt-md-25{
margin-top: 25px; }
.mt-md-25-i{
margin-top: 25px !important; }
.pt-md-30{
padding-top: 30px; }
.pt-md-30-i{
padding-top: 30px !important; }
.mt-md-30{
margin-top: 30px; }
.mt-md-30-i{
margin-top: 30px !important; }
.pt-md-35{
padding-top: 35px; }
.pt-md-35-i{
padding-top: 35px !important; }
.mt-md-35{
margin-top: 35px; }
.mt-md-35-i{
margin-top: 35px !important; }
.pt-md-40{
padding-top: 40px; }
.pt-md-40-i{
padding-top: 40px !important; }
.mt-md-40{
margin-top: 40px; }
.mt-md-40-i{
margin-top: 40px !important; }
.pt-md-45{
padding-top: 45px; }
.pt-md-45-i{
padding-top: 45px !important; }
.mt-md-45{
margin-top: 45px; }
.mt-md-45-i{
margin-top: 45px !important; }
.pt-md-50{
padding-top: 50px; }
.pt-md-50-i{
padding-top: 50px !important; }
.mt-md-50{
margin-top: 50px; }
.mt-md-50-i{
margin-top: 50px !important; }
.pt-md-55{
padding-top: 55px; }
.pt-md-55-i{
padding-top: 55px !important; }
.mt-md-55{
margin-top: 55px; }
.mt-md-55-i{
margin-top: 55px !important; }
.pt-md-60{
padding-top: 60px; }
.pt-md-60-i{
padding-top: 60px !important; }
.mt-md-60{
margin-top: 60px; }
.mt-md-60-i{
margin-top: 60px !important; }
.pt-md-65{
padding-top: 65px; }
.pt-md-65-i{
padding-top: 65px !important; }
.mt-md-65{
margin-top: 65px; }
.mt-md-65-i{
margin-top: 65px !important; }
.pt-md-70{
padding-top: 70px; }
.pt-md-70-i{
padding-top: 70px !important; }
.mt-md-70{
margin-top: 70px; }
.mt-md-70-i{
margin-top: 70px !important; }
.pt-md-75{
padding-top: 75px; }
.pt-md-75-i{
padding-top: 75px !important; }
.mt-md-75{
margin-top: 75px; }
.mt-md-75-i{
margin-top: 75px !important; }
.pt-md-80{
padding-top: 80px; }
.pt-md-80-i{
padding-top: 80px !important; }
.mt-md-80{
margin-top: 80px; }
.mt-md-80-i{
margin-top: 80px !important; }
.pt-md-85{
padding-top: 85px; }
.pt-md-85-i{
padding-top: 85px !important; }
.mt-md-85{
margin-top: 85px; }
.mt-md-85-i{
margin-top: 85px !important; }
.pt-md-90{
padding-top: 90px; }
.pt-md-90-i{
padding-top: 90px !important; }
.mt-md-90{
margin-top: 90px; }
.mt-md-90-i{
margin-top: 90px !important; }
.pt-md-95{
padding-top: 95px; }
.pt-md-95-i{
padding-top: 95px !important; }
.mt-md-95{
margin-top: 95px; }
.mt-md-95-i{
margin-top: 95px !important; }
.pt-md-100{
padding-top: 100px; }
.pt-md-100-i{
padding-top: 100px !important; }
.mt-md-100{
margin-top: 100px; }
.mt-md-100-i{
margin-top: 100px !important; }
.pr-md--100{
padding-right: -100px; }
.pr-md--100-i{
padding-right: -100px !important; }
.mr-md--100{
margin-right: -100px; }
.mr-md--100-i{
margin-right: -100px !important; }
.pr-md--95{
padding-right: -95px; }
.pr-md--95-i{
padding-right: -95px !important; }
.mr-md--95{
margin-right: -95px; }
.mr-md--95-i{
margin-right: -95px !important; }
.pr-md--90{
padding-right: -90px; }
.pr-md--90-i{
padding-right: -90px !important; }
.mr-md--90{
margin-right: -90px; }
.mr-md--90-i{
margin-right: -90px !important; }
.pr-md--85{
padding-right: -85px; }
.pr-md--85-i{
padding-right: -85px !important; }
.mr-md--85{
margin-right: -85px; }
.mr-md--85-i{
margin-right: -85px !important; }
.pr-md--80{
padding-right: -80px; }
.pr-md--80-i{
padding-right: -80px !important; }
.mr-md--80{
margin-right: -80px; }
.mr-md--80-i{
margin-right: -80px !important; }
.pr-md--75{
padding-right: -75px; }
.pr-md--75-i{
padding-right: -75px !important; }
.mr-md--75{
margin-right: -75px; }
.mr-md--75-i{
margin-right: -75px !important; }
.pr-md--70{
padding-right: -70px; }
.pr-md--70-i{
padding-right: -70px !important; }
.mr-md--70{
margin-right: -70px; }
.mr-md--70-i{
margin-right: -70px !important; }
.pr-md--65{
padding-right: -65px; }
.pr-md--65-i{
padding-right: -65px !important; }
.mr-md--65{
margin-right: -65px; }
.mr-md--65-i{
margin-right: -65px !important; }
.pr-md--60{
padding-right: -60px; }
.pr-md--60-i{
padding-right: -60px !important; }
.mr-md--60{
margin-right: -60px; }
.mr-md--60-i{
margin-right: -60px !important; }
.pr-md--55{
padding-right: -55px; }
.pr-md--55-i{
padding-right: -55px !important; }
.mr-md--55{
margin-right: -55px; }
.mr-md--55-i{
margin-right: -55px !important; }
.pr-md--50{
padding-right: -50px; }
.pr-md--50-i{
padding-right: -50px !important; }
.mr-md--50{
margin-right: -50px; }
.mr-md--50-i{
margin-right: -50px !important; }
.pr-md--45{
padding-right: -45px; }
.pr-md--45-i{
padding-right: -45px !important; }
.mr-md--45{
margin-right: -45px; }
.mr-md--45-i{
margin-right: -45px !important; }
.pr-md--40{
padding-right: -40px; }
.pr-md--40-i{
padding-right: -40px !important; }
.mr-md--40{
margin-right: -40px; }
.mr-md--40-i{
margin-right: -40px !important; }
.pr-md--35{
padding-right: -35px; }
.pr-md--35-i{
padding-right: -35px !important; }
.mr-md--35{
margin-right: -35px; }
.mr-md--35-i{
margin-right: -35px !important; }
.pr-md--30{
padding-right: -30px; }
.pr-md--30-i{
padding-right: -30px !important; }
.mr-md--30{
margin-right: -30px; }
.mr-md--30-i{
margin-right: -30px !important; }
.pr-md--25{
padding-right: -25px; }
.pr-md--25-i{
padding-right: -25px !important; }
.mr-md--25{
margin-right: -25px; }
.mr-md--25-i{
margin-right: -25px !important; }
.pr-md--20{
padding-right: -20px; }
.pr-md--20-i{
padding-right: -20px !important; }
.mr-md--20{
margin-right: -20px; }
.mr-md--20-i{
margin-right: -20px !important; }
.pr-md--15{
padding-right: -15px; }
.pr-md--15-i{
padding-right: -15px !important; }
.mr-md--15{
margin-right: -15px; }
.mr-md--15-i{
margin-right: -15px !important; }
.pr-md--10{
padding-right: -10px; }
.pr-md--10-i{
padding-right: -10px !important; }
.mr-md--10{
margin-right: -10px; }
.mr-md--10-i{
margin-right: -10px !important; }
.pr-md--5{
padding-right: -5px; }
.pr-md--5-i{
padding-right: -5px !important; }
.mr-md--5{
margin-right: -5px; }
.mr-md--5-i{
margin-right: -5px !important; }
.pr-md-0{
padding-right: 0px; }
.pr-md-0-i{
padding-right: 0px !important; }
.mr-md-0{
margin-right: 0px; }
.mr-md-0-i{
margin-right: 0px !important; }
.pr-md-5{
padding-right: 5px; }
.pr-md-5-i{
padding-right: 5px !important; }
.mr-md-5{
margin-right: 5px; }
.mr-md-5-i{
margin-right: 5px !important; }
.pr-md-10{
padding-right: 10px; }
.pr-md-10-i{
padding-right: 10px !important; }
.mr-md-10{
margin-right: 10px; }
.mr-md-10-i{
margin-right: 10px !important; }
.pr-md-15{
padding-right: 15px; }
.pr-md-15-i{
padding-right: 15px !important; }
.mr-md-15{
margin-right: 15px; }
.mr-md-15-i{
margin-right: 15px !important; }
.pr-md-20{
padding-right: 20px; }
.pr-md-20-i{
padding-right: 20px !important; }
.mr-md-20{
margin-right: 20px; }
.mr-md-20-i{
margin-right: 20px !important; }
.pr-md-25{
padding-right: 25px; }
.pr-md-25-i{
padding-right: 25px !important; }
.mr-md-25{
margin-right: 25px; }
.mr-md-25-i{
margin-right: 25px !important; }
.pr-md-30{
padding-right: 30px; }
.pr-md-30-i{
padding-right: 30px !important; }
.mr-md-30{
margin-right: 30px; }
.mr-md-30-i{
margin-right: 30px !important; }
.pr-md-35{
padding-right: 35px; }
.pr-md-35-i{
padding-right: 35px !important; }
.mr-md-35{
margin-right: 35px; }
.mr-md-35-i{
margin-right: 35px !important; }
.pr-md-40{
padding-right: 40px; }
.pr-md-40-i{
padding-right: 40px !important; }
.mr-md-40{
margin-right: 40px; }
.mr-md-40-i{
margin-right: 40px !important; }
.pr-md-45{
padding-right: 45px; }
.pr-md-45-i{
padding-right: 45px !important; }
.mr-md-45{
margin-right: 45px; }
.mr-md-45-i{
margin-right: 45px !important; }
.pr-md-50{
padding-right: 50px; }
.pr-md-50-i{
padding-right: 50px !important; }
.mr-md-50{
margin-right: 50px; }
.mr-md-50-i{
margin-right: 50px !important; }
.pr-md-55{
padding-right: 55px; }
.pr-md-55-i{
padding-right: 55px !important; }
.mr-md-55{
margin-right: 55px; }
.mr-md-55-i{
margin-right: 55px !important; }
.pr-md-60{
padding-right: 60px; }
.pr-md-60-i{
padding-right: 60px !important; }
.mr-md-60{
margin-right: 60px; }
.mr-md-60-i{
margin-right: 60px !important; }
.pr-md-65{
padding-right: 65px; }
.pr-md-65-i{
padding-right: 65px !important; }
.mr-md-65{
margin-right: 65px; }
.mr-md-65-i{
margin-right: 65px !important; }
.pr-md-70{
padding-right: 70px; }
.pr-md-70-i{
padding-right: 70px !important; }
.mr-md-70{
margin-right: 70px; }
.mr-md-70-i{
margin-right: 70px !important; }
.pr-md-75{
padding-right: 75px; }
.pr-md-75-i{
padding-right: 75px !important; }
.mr-md-75{
margin-right: 75px; }
.mr-md-75-i{
margin-right: 75px !important; }
.pr-md-80{
padding-right: 80px; }
.pr-md-80-i{
padding-right: 80px !important; }
.mr-md-80{
margin-right: 80px; }
.mr-md-80-i{
margin-right: 80px !important; }
.pr-md-85{
padding-right: 85px; }
.pr-md-85-i{
padding-right: 85px !important; }
.mr-md-85{
margin-right: 85px; }
.mr-md-85-i{
margin-right: 85px !important; }
.pr-md-90{
padding-right: 90px; }
.pr-md-90-i{
padding-right: 90px !important; }
.mr-md-90{
margin-right: 90px; }
.mr-md-90-i{
margin-right: 90px !important; }
.pr-md-95{
padding-right: 95px; }
.pr-md-95-i{
padding-right: 95px !important; }
.mr-md-95{
margin-right: 95px; }
.mr-md-95-i{
margin-right: 95px !important; }
.pr-md-100{
padding-right: 100px; }
.pr-md-100-i{
padding-right: 100px !important; }
.mr-md-100{
margin-right: 100px; }
.mr-md-100-i{
margin-right: 100px !important; }
.pb-md--100{
padding-bottom: -100px; }
.pb-md--100-i{
padding-bottom: -100px !important; }
.mb-md--100{
margin-bottom: -100px; }
.mb-md--100-i{
margin-bottom: -100px !important; }
.pb-md--95{
padding-bottom: -95px; }
.pb-md--95-i{
padding-bottom: -95px !important; }
.mb-md--95{
margin-bottom: -95px; }
.mb-md--95-i{
margin-bottom: -95px !important; }
.pb-md--90{
padding-bottom: -90px; }
.pb-md--90-i{
padding-bottom: -90px !important; }
.mb-md--90{
margin-bottom: -90px; }
.mb-md--90-i{
margin-bottom: -90px !important; }
.pb-md--85{
padding-bottom: -85px; }
.pb-md--85-i{
padding-bottom: -85px !important; }
.mb-md--85{
margin-bottom: -85px; }
.mb-md--85-i{
margin-bottom: -85px !important; }
.pb-md--80{
padding-bottom: -80px; }
.pb-md--80-i{
padding-bottom: -80px !important; }
.mb-md--80{
margin-bottom: -80px; }
.mb-md--80-i{
margin-bottom: -80px !important; }
.pb-md--75{
padding-bottom: -75px; }
.pb-md--75-i{
padding-bottom: -75px !important; }
.mb-md--75{
margin-bottom: -75px; }
.mb-md--75-i{
margin-bottom: -75px !important; }
.pb-md--70{
padding-bottom: -70px; }
.pb-md--70-i{
padding-bottom: -70px !important; }
.mb-md--70{
margin-bottom: -70px; }
.mb-md--70-i{
margin-bottom: -70px !important; }
.pb-md--65{
padding-bottom: -65px; }
.pb-md--65-i{
padding-bottom: -65px !important; }
.mb-md--65{
margin-bottom: -65px; }
.mb-md--65-i{
margin-bottom: -65px !important; }
.pb-md--60{
padding-bottom: -60px; }
.pb-md--60-i{
padding-bottom: -60px !important; }
.mb-md--60{
margin-bottom: -60px; }
.mb-md--60-i{
margin-bottom: -60px !important; }
.pb-md--55{
padding-bottom: -55px; }
.pb-md--55-i{
padding-bottom: -55px !important; }
.mb-md--55{
margin-bottom: -55px; }
.mb-md--55-i{
margin-bottom: -55px !important; }
.pb-md--50{
padding-bottom: -50px; }
.pb-md--50-i{
padding-bottom: -50px !important; }
.mb-md--50{
margin-bottom: -50px; }
.mb-md--50-i{
margin-bottom: -50px !important; }
.pb-md--45{
padding-bottom: -45px; }
.pb-md--45-i{
padding-bottom: -45px !important; }
.mb-md--45{
margin-bottom: -45px; }
.mb-md--45-i{
margin-bottom: -45px !important; }
.pb-md--40{
padding-bottom: -40px; }
.pb-md--40-i{
padding-bottom: -40px !important; }
.mb-md--40{
margin-bottom: -40px; }
.mb-md--40-i{
margin-bottom: -40px !important; }
.pb-md--35{
padding-bottom: -35px; }
.pb-md--35-i{
padding-bottom: -35px !important; }
.mb-md--35{
margin-bottom: -35px; }
.mb-md--35-i{
margin-bottom: -35px !important; }
.pb-md--30{
padding-bottom: -30px; }
.pb-md--30-i{
padding-bottom: -30px !important; }
.mb-md--30{
margin-bottom: -30px; }
.mb-md--30-i{
margin-bottom: -30px !important; }
.pb-md--25{
padding-bottom: -25px; }
.pb-md--25-i{
padding-bottom: -25px !important; }
.mb-md--25{
margin-bottom: -25px; }
.mb-md--25-i{
margin-bottom: -25px !important; }
.pb-md--20{
padding-bottom: -20px; }
.pb-md--20-i{
padding-bottom: -20px !important; }
.mb-md--20{
margin-bottom: -20px; }
.mb-md--20-i{
margin-bottom: -20px !important; }
.pb-md--15{
padding-bottom: -15px; }
.pb-md--15-i{
padding-bottom: -15px !important; }
.mb-md--15{
margin-bottom: -15px; }
.mb-md--15-i{
margin-bottom: -15px !important; }
.pb-md--10{
padding-bottom: -10px; }
.pb-md--10-i{
padding-bottom: -10px !important; }
.mb-md--10{
margin-bottom: -10px; }
.mb-md--10-i{
margin-bottom: -10px !important; }
.pb-md--5{
padding-bottom: -5px; }
.pb-md--5-i{
padding-bottom: -5px !important; }
.mb-md--5{
margin-bottom: -5px; }
.mb-md--5-i{
margin-bottom: -5px !important; }
.pb-md-0{
padding-bottom: 0px; }
.pb-md-0-i{
padding-bottom: 0px !important; }
.mb-md-0{
margin-bottom: 0px; }
.mb-md-0-i{
margin-bottom: 0px !important; }
.pb-md-5{
padding-bottom: 5px; }
.pb-md-5-i{
padding-bottom: 5px !important; }
.mb-md-5{
margin-bottom: 5px; }
.mb-md-5-i{
margin-bottom: 5px !important; }
.pb-md-10{
padding-bottom: 10px; }
.pb-md-10-i{
padding-bottom: 10px !important; }
.mb-md-10{
margin-bottom: 10px; }
.mb-md-10-i{
margin-bottom: 10px !important; }
.pb-md-15{
padding-bottom: 15px; }
.pb-md-15-i{
padding-bottom: 15px !important; }
.mb-md-15{
margin-bottom: 15px; }
.mb-md-15-i{
margin-bottom: 15px !important; }
.pb-md-20{
padding-bottom: 20px; }
.pb-md-20-i{
padding-bottom: 20px !important; }
.mb-md-20{
margin-bottom: 20px; }
.mb-md-20-i{
margin-bottom: 20px !important; }
.pb-md-25{
padding-bottom: 25px; }
.pb-md-25-i{
padding-bottom: 25px !important; }
.mb-md-25{
margin-bottom: 25px; }
.mb-md-25-i{
margin-bottom: 25px !important; }
.pb-md-30{
padding-bottom: 30px; }
.pb-md-30-i{
padding-bottom: 30px !important; }
.mb-md-30{
margin-bottom: 30px; }
.mb-md-30-i{
margin-bottom: 30px !important; }
.pb-md-35{
padding-bottom: 35px; }
.pb-md-35-i{
padding-bottom: 35px !important; }
.mb-md-35{
margin-bottom: 35px; }
.mb-md-35-i{
margin-bottom: 35px !important; }
.pb-md-40{
padding-bottom: 40px; }
.pb-md-40-i{
padding-bottom: 40px !important; }
.mb-md-40{
margin-bottom: 40px; }
.mb-md-40-i{
margin-bottom: 40px !important; }
.pb-md-45{
padding-bottom: 45px; }
.pb-md-45-i{
padding-bottom: 45px !important; }
.mb-md-45{
margin-bottom: 45px; }
.mb-md-45-i{
margin-bottom: 45px !important; }
.pb-md-50{
padding-bottom: 50px; }
.pb-md-50-i{
padding-bottom: 50px !important; }
.mb-md-50{
margin-bottom: 50px; }
.mb-md-50-i{
margin-bottom: 50px !important; }
.pb-md-55{
padding-bottom: 55px; }
.pb-md-55-i{
padding-bottom: 55px !important; }
.mb-md-55{
margin-bottom: 55px; }
.mb-md-55-i{
margin-bottom: 55px !important; }
.pb-md-60{
padding-bottom: 60px; }
.pb-md-60-i{
padding-bottom: 60px !important; }
.mb-md-60{
margin-bottom: 60px; }
.mb-md-60-i{
margin-bottom: 60px !important; }
.pb-md-65{
padding-bottom: 65px; }
.pb-md-65-i{
padding-bottom: 65px !important; }
.mb-md-65{
margin-bottom: 65px; }
.mb-md-65-i{
margin-bottom: 65px !important; }
.pb-md-70{
padding-bottom: 70px; }
.pb-md-70-i{
padding-bottom: 70px !important; }
.mb-md-70{
margin-bottom: 70px; }
.mb-md-70-i{
margin-bottom: 70px !important; }
.pb-md-75{
padding-bottom: 75px; }
.pb-md-75-i{
padding-bottom: 75px !important; }
.mb-md-75{
margin-bottom: 75px; }
.mb-md-75-i{
margin-bottom: 75px !important; }
.pb-md-80{
padding-bottom: 80px; }
.pb-md-80-i{
padding-bottom: 80px !important; }
.mb-md-80{
margin-bottom: 80px; }
.mb-md-80-i{
margin-bottom: 80px !important; }
.pb-md-85{
padding-bottom: 85px; }
.pb-md-85-i{
padding-bottom: 85px !important; }
.mb-md-85{
margin-bottom: 85px; }
.mb-md-85-i{
margin-bottom: 85px !important; }
.pb-md-90{
padding-bottom: 90px; }
.pb-md-90-i{
padding-bottom: 90px !important; }
.mb-md-90{
margin-bottom: 90px; }
.mb-md-90-i{
margin-bottom: 90px !important; }
.pb-md-95{
padding-bottom: 95px; }
.pb-md-95-i{
padding-bottom: 95px !important; }
.mb-md-95{
margin-bottom: 95px; }
.mb-md-95-i{
margin-bottom: 95px !important; }
.pb-md-100{
padding-bottom: 100px; }
.pb-md-100-i{
padding-bottom: 100px !important; }
.mb-md-100{
margin-bottom: 100px; }
.mb-md-100-i{
margin-bottom: 100px !important; }
.pl-md--100{
padding-left: -100px; }
.pl-md--100-i{
padding-left: -100px !important; }
.ml-md--100{
margin-left: -100px; }
.ml-md--100-i{
margin-left: -100px !important; }
.pl-md--95{
padding-left: -95px; }
.pl-md--95-i{
padding-left: -95px !important; }
.ml-md--95{
margin-left: -95px; }
.ml-md--95-i{
margin-left: -95px !important; }
.pl-md--90{
padding-left: -90px; }
.pl-md--90-i{
padding-left: -90px !important; }
.ml-md--90{
margin-left: -90px; }
.ml-md--90-i{
margin-left: -90px !important; }
.pl-md--85{
padding-left: -85px; }
.pl-md--85-i{
padding-left: -85px !important; }
.ml-md--85{
margin-left: -85px; }
.ml-md--85-i{
margin-left: -85px !important; }
.pl-md--80{
padding-left: -80px; }
.pl-md--80-i{
padding-left: -80px !important; }
.ml-md--80{
margin-left: -80px; }
.ml-md--80-i{
margin-left: -80px !important; }
.pl-md--75{
padding-left: -75px; }
.pl-md--75-i{
padding-left: -75px !important; }
.ml-md--75{
margin-left: -75px; }
.ml-md--75-i{
margin-left: -75px !important; }
.pl-md--70{
padding-left: -70px; }
.pl-md--70-i{
padding-left: -70px !important; }
.ml-md--70{
margin-left: -70px; }
.ml-md--70-i{
margin-left: -70px !important; }
.pl-md--65{
padding-left: -65px; }
.pl-md--65-i{
padding-left: -65px !important; }
.ml-md--65{
margin-left: -65px; }
.ml-md--65-i{
margin-left: -65px !important; }
.pl-md--60{
padding-left: -60px; }
.pl-md--60-i{
padding-left: -60px !important; }
.ml-md--60{
margin-left: -60px; }
.ml-md--60-i{
margin-left: -60px !important; }
.pl-md--55{
padding-left: -55px; }
.pl-md--55-i{
padding-left: -55px !important; }
.ml-md--55{
margin-left: -55px; }
.ml-md--55-i{
margin-left: -55px !important; }
.pl-md--50{
padding-left: -50px; }
.pl-md--50-i{
padding-left: -50px !important; }
.ml-md--50{
margin-left: -50px; }
.ml-md--50-i{
margin-left: -50px !important; }
.pl-md--45{
padding-left: -45px; }
.pl-md--45-i{
padding-left: -45px !important; }
.ml-md--45{
margin-left: -45px; }
.ml-md--45-i{
margin-left: -45px !important; }
.pl-md--40{
padding-left: -40px; }
.pl-md--40-i{
padding-left: -40px !important; }
.ml-md--40{
margin-left: -40px; }
.ml-md--40-i{
margin-left: -40px !important; }
.pl-md--35{
padding-left: -35px; }
.pl-md--35-i{
padding-left: -35px !important; }
.ml-md--35{
margin-left: -35px; }
.ml-md--35-i{
margin-left: -35px !important; }
.pl-md--30{
padding-left: -30px; }
.pl-md--30-i{
padding-left: -30px !important; }
.ml-md--30{
margin-left: -30px; }
.ml-md--30-i{
margin-left: -30px !important; }
.pl-md--25{
padding-left: -25px; }
.pl-md--25-i{
padding-left: -25px !important; }
.ml-md--25{
margin-left: -25px; }
.ml-md--25-i{
margin-left: -25px !important; }
.pl-md--20{
padding-left: -20px; }
.pl-md--20-i{
padding-left: -20px !important; }
.ml-md--20{
margin-left: -20px; }
.ml-md--20-i{
margin-left: -20px !important; }
.pl-md--15{
padding-left: -15px; }
.pl-md--15-i{
padding-left: -15px !important; }
.ml-md--15{
margin-left: -15px; }
.ml-md--15-i{
margin-left: -15px !important; }
.pl-md--10{
padding-left: -10px; }
.pl-md--10-i{
padding-left: -10px !important; }
.ml-md--10{
margin-left: -10px; }
.ml-md--10-i{
margin-left: -10px !important; }
.pl-md--5{
padding-left: -5px; }
.pl-md--5-i{
padding-left: -5px !important; }
.ml-md--5{
margin-left: -5px; }
.ml-md--5-i{
margin-left: -5px !important; }
.pl-md-0{
padding-left: 0px; }
.pl-md-0-i{
padding-left: 0px !important; }
.ml-md-0{
margin-left: 0px; }
.ml-md-0-i{
margin-left: 0px !important; }
.pl-md-5{
padding-left: 5px; }
.pl-md-5-i{
padding-left: 5px !important; }
.ml-md-5{
margin-left: 5px; }
.ml-md-5-i{
margin-left: 5px !important; }
.pl-md-10{
padding-left: 10px; }
.pl-md-10-i{
padding-left: 10px !important; }
.ml-md-10{
margin-left: 10px; }
.ml-md-10-i{
margin-left: 10px !important; }
.pl-md-15{
padding-left: 15px; }
.pl-md-15-i{
padding-left: 15px !important; }
.ml-md-15{
margin-left: 15px; }
.ml-md-15-i{
margin-left: 15px !important; }
.pl-md-20{
padding-left: 20px; }
.pl-md-20-i{
padding-left: 20px !important; }
.ml-md-20{
margin-left: 20px; }
.ml-md-20-i{
margin-left: 20px !important; }
.pl-md-25{
padding-left: 25px; }
.pl-md-25-i{
padding-left: 25px !important; }
.ml-md-25{
margin-left: 25px; }
.ml-md-25-i{
margin-left: 25px !important; }
.pl-md-30{
padding-left: 30px; }
.pl-md-30-i{
padding-left: 30px !important; }
.ml-md-30{
margin-left: 30px; }
.ml-md-30-i{
margin-left: 30px !important; }
.pl-md-35{
padding-left: 35px; }
.pl-md-35-i{
padding-left: 35px !important; }
.ml-md-35{
margin-left: 35px; }
.ml-md-35-i{
margin-left: 35px !important; }
.pl-md-40{
padding-left: 40px; }
.pl-md-40-i{
padding-left: 40px !important; }
.ml-md-40{
margin-left: 40px; }
.ml-md-40-i{
margin-left: 40px !important; }
.pl-md-45{
padding-left: 45px; }
.pl-md-45-i{
padding-left: 45px !important; }
.ml-md-45{
margin-left: 45px; }
.ml-md-45-i{
margin-left: 45px !important; }
.pl-md-50{
padding-left: 50px; }
.pl-md-50-i{
padding-left: 50px !important; }
.ml-md-50{
margin-left: 50px; }
.ml-md-50-i{
margin-left: 50px !important; }
.pl-md-55{
padding-left: 55px; }
.pl-md-55-i{
padding-left: 55px !important; }
.ml-md-55{
margin-left: 55px; }
.ml-md-55-i{
margin-left: 55px !important; }
.pl-md-60{
padding-left: 60px; }
.pl-md-60-i{
padding-left: 60px !important; }
.ml-md-60{
margin-left: 60px; }
.ml-md-60-i{
margin-left: 60px !important; }
.pl-md-65{
padding-left: 65px; }
.pl-md-65-i{
padding-left: 65px !important; }
.ml-md-65{
margin-left: 65px; }
.ml-md-65-i{
margin-left: 65px !important; }
.pl-md-70{
padding-left: 70px; }
.pl-md-70-i{
padding-left: 70px !important; }
.ml-md-70{
margin-left: 70px; }
.ml-md-70-i{
margin-left: 70px !important; }
.pl-md-75{
padding-left: 75px; }
.pl-md-75-i{
padding-left: 75px !important; }
.ml-md-75{
margin-left: 75px; }
.ml-md-75-i{
margin-left: 75px !important; }
.pl-md-80{
padding-left: 80px; }
.pl-md-80-i{
padding-left: 80px !important; }
.ml-md-80{
margin-left: 80px; }
.ml-md-80-i{
margin-left: 80px !important; }
.pl-md-85{
padding-left: 85px; }
.pl-md-85-i{
padding-left: 85px !important; }
.ml-md-85{
margin-left: 85px; }
.ml-md-85-i{
margin-left: 85px !important; }
.pl-md-90{
padding-left: 90px; }
.pl-md-90-i{
padding-left: 90px !important; }
.ml-md-90{
margin-left: 90px; }
.ml-md-90-i{
margin-left: 90px !important; }
.pl-md-95{
padding-left: 95px; }
.pl-md-95-i{
padding-left: 95px !important; }
.ml-md-95{
margin-left: 95px; }
.ml-md-95-i{
margin-left: 95px !important; }
.pl-md-100{
padding-left: 100px; }
.pl-md-100-i{
padding-left: 100px !important; }
.ml-md-100{
margin-left: 100px; }
.ml-md-100-i{
margin-left: 100px !important; }
.pa-md--100{
padding: -100px; }
.ma-md--100{
margin: -100px; }
.pv-md--100{
padding-top: -100px;
padding-bottom: -100px; }
.mv-md--100{
margin-top: -100px;
margin-bottom: -100px; }
.ph-md--100{
padding-left: -100px;
padding-right: -100px; }
.mh-md--100{
margin-left: -100px;
padding-right: -100px; }
.pa-md--95{
padding: -95px; }
.ma-md--95{
margin: -95px; }
.pv-md--95{
padding-top: -95px;
padding-bottom: -95px; }
.mv-md--95{
margin-top: -95px;
margin-bottom: -95px; }
.ph-md--95{
padding-left: -95px;
padding-right: -95px; }
.mh-md--95{
margin-left: -95px;
padding-right: -95px; }
.pa-md--90{
padding: -90px; }
.ma-md--90{
margin: -90px; }
.pv-md--90{
padding-top: -90px;
padding-bottom: -90px; }
.mv-md--90{
margin-top: -90px;
margin-bottom: -90px; }
.ph-md--90{
padding-left: -90px;
padding-right: -90px; }
.mh-md--90{
margin-left: -90px;
padding-right: -90px; }
.pa-md--85{
padding: -85px; }
.ma-md--85{
margin: -85px; }
.pv-md--85{
padding-top: -85px;
padding-bottom: -85px; }
.mv-md--85{
margin-top: -85px;
margin-bottom: -85px; }
.ph-md--85{
padding-left: -85px;
padding-right: -85px; }
.mh-md--85{
margin-left: -85px;
padding-right: -85px; }
.pa-md--80{
padding: -80px; }
.ma-md--80{
margin: -80px; }
.pv-md--80{
padding-top: -80px;
padding-bottom: -80px; }
.mv-md--80{
margin-top: -80px;
margin-bottom: -80px; }
.ph-md--80{
padding-left: -80px;
padding-right: -80px; }
.mh-md--80{
margin-left: -80px;
padding-right: -80px; }
.pa-md--75{
padding: -75px; }
.ma-md--75{
margin: -75px; }
.pv-md--75{
padding-top: -75px;
padding-bottom: -75px; }
.mv-md--75{
margin-top: -75px;
margin-bottom: -75px; }
.ph-md--75{
padding-left: -75px;
padding-right: -75px; }
.mh-md--75{
margin-left: -75px;
padding-right: -75px; }
.pa-md--70{
padding: -70px; }
.ma-md--70{
margin: -70px; }
.pv-md--70{
padding-top: -70px;
padding-bottom: -70px; }
.mv-md--70{
margin-top: -70px;
margin-bottom: -70px; }
.ph-md--70{
padding-left: -70px;
padding-right: -70px; }
.mh-md--70{
margin-left: -70px;
padding-right: -70px; }
.pa-md--65{
padding: -65px; }
.ma-md--65{
margin: -65px; }
.pv-md--65{
padding-top: -65px;
padding-bottom: -65px; }
.mv-md--65{
margin-top: -65px;
margin-bottom: -65px; }
.ph-md--65{
padding-left: -65px;
padding-right: -65px; }
.mh-md--65{
margin-left: -65px;
padding-right: -65px; }
.pa-md--60{
padding: -60px; }
.ma-md--60{
margin: -60px; }
.pv-md--60{
padding-top: -60px;
padding-bottom: -60px; }
.mv-md--60{
margin-top: -60px;
margin-bottom: -60px; }
.ph-md--60{
padding-left: -60px;
padding-right: -60px; }
.mh-md--60{
margin-left: -60px;
padding-right: -60px; }
.pa-md--55{
padding: -55px; }
.ma-md--55{
margin: -55px; }
.pv-md--55{
padding-top: -55px;
padding-bottom: -55px; }
.mv-md--55{
margin-top: -55px;
margin-bottom: -55px; }
.ph-md--55{
padding-left: -55px;
padding-right: -55px; }
.mh-md--55{
margin-left: -55px;
padding-right: -55px; }
.pa-md--50{
padding: -50px; }
.ma-md--50{
margin: -50px; }
.pv-md--50{
padding-top: -50px;
padding-bottom: -50px; }
.mv-md--50{
margin-top: -50px;
margin-bottom: -50px; }
.ph-md--50{
padding-left: -50px;
padding-right: -50px; }
.mh-md--50{
margin-left: -50px;
padding-right: -50px; }
.pa-md--45{
padding: -45px; }
.ma-md--45{
margin: -45px; }
.pv-md--45{
padding-top: -45px;
padding-bottom: -45px; }
.mv-md--45{
margin-top: -45px;
margin-bottom: -45px; }
.ph-md--45{
padding-left: -45px;
padding-right: -45px; }
.mh-md--45{
margin-left: -45px;
padding-right: -45px; }
.pa-md--40{
padding: -40px; }
.ma-md--40{
margin: -40px; }
.pv-md--40{
padding-top: -40px;
padding-bottom: -40px; }
.mv-md--40{
margin-top: -40px;
margin-bottom: -40px; }
.ph-md--40{
padding-left: -40px;
padding-right: -40px; }
.mh-md--40{
margin-left: -40px;
padding-right: -40px; }
.pa-md--35{
padding: -35px; }
.ma-md--35{
margin: -35px; }
.pv-md--35{
padding-top: -35px;
padding-bottom: -35px; }
.mv-md--35{
margin-top: -35px;
margin-bottom: -35px; }
.ph-md--35{
padding-left: -35px;
padding-right: -35px; }
.mh-md--35{
margin-left: -35px;
padding-right: -35px; }
.pa-md--30{
padding: -30px; }
.ma-md--30{
margin: -30px; }
.pv-md--30{
padding-top: -30px;
padding-bottom: -30px; }
.mv-md--30{
margin-top: -30px;
margin-bottom: -30px; }
.ph-md--30{
padding-left: -30px;
padding-right: -30px; }
.mh-md--30{
margin-left: -30px;
padding-right: -30px; }
.pa-md--25{
padding: -25px; }
.ma-md--25{
margin: -25px; }
.pv-md--25{
padding-top: -25px;
padding-bottom: -25px; }
.mv-md--25{
margin-top: -25px;
margin-bottom: -25px; }
.ph-md--25{
padding-left: -25px;
padding-right: -25px; }
.mh-md--25{
margin-left: -25px;
padding-right: -25px; }
.pa-md--20{
padding: -20px; }
.ma-md--20{
margin: -20px; }
.pv-md--20{
padding-top: -20px;
padding-bottom: -20px; }
.mv-md--20{
margin-top: -20px;
margin-bottom: -20px; }
.ph-md--20{
padding-left: -20px;
padding-right: -20px; }
.mh-md--20{
margin-left: -20px;
padding-right: -20px; }
.pa-md--15{
padding: -15px; }
.ma-md--15{
margin: -15px; }
.pv-md--15{
padding-top: -15px;
padding-bottom: -15px; }
.mv-md--15{
margin-top: -15px;
margin-bottom: -15px; }
.ph-md--15{
padding-left: -15px;
padding-right: -15px; }
.mh-md--15{
margin-left: -15px;
padding-right: -15px; }
.pa-md--10{
padding: -10px; }
.ma-md--10{
margin: -10px; }
.pv-md--10{
padding-top: -10px;
padding-bottom: -10px; }
.mv-md--10{
margin-top: -10px;
margin-bottom: -10px; }
.ph-md--10{
padding-left: -10px;
padding-right: -10px; }
.mh-md--10{
margin-left: -10px;
padding-right: -10px; }
.pa-md--5{
padding: -5px; }
.ma-md--5{
margin: -5px; }
.pv-md--5{
padding-top: -5px;
padding-bottom: -5px; }
.mv-md--5{
margin-top: -5px;
margin-bottom: -5px; }
.ph-md--5{
padding-left: -5px;
padding-right: -5px; }
.mh-md--5{
margin-left: -5px;
padding-right: -5px; }
.pa-md-0{
padding: 0px; }
.ma-md-0{
margin: 0px; }
.pv-md-0{
padding-top: 0px;
padding-bottom: 0px; }
.mv-md-0{
margin-top: 0px;
margin-bottom: 0px; }
.ph-md-0{
padding-left: 0px;
padding-right: 0px; }
.mh-md-0{
margin-left: 0px;
padding-right: 0px; }
.pa-md-5{
padding: 5px; }
.ma-md-5{
margin: 5px; }
.pv-md-5{
padding-top: 5px;
padding-bottom: 5px; }
.mv-md-5{
margin-top: 5px;
margin-bottom: 5px; }
.ph-md-5{
padding-left: 5px;
padding-right: 5px; }
.mh-md-5{
margin-left: 5px;
padding-right: 5px; }
.pa-md-10{
padding: 10px; }
.ma-md-10{
margin: 10px; }
.pv-md-10{
padding-top: 10px;
padding-bottom: 10px; }
.mv-md-10{
margin-top: 10px;
margin-bottom: 10px; }
.ph-md-10{
padding-left: 10px;
padding-right: 10px; }
.mh-md-10{
margin-left: 10px;
padding-right: 10px; }
.pa-md-15{
padding: 15px; }
.ma-md-15{
margin: 15px; }
.pv-md-15{
padding-top: 15px;
padding-bottom: 15px; }
.mv-md-15{
margin-top: 15px;
margin-bottom: 15px; }
.ph-md-15{
padding-left: 15px;
padding-right: 15px; }
.mh-md-15{
margin-left: 15px;
padding-right: 15px; }
.pa-md-20{
padding: 20px; }
.ma-md-20{
margin: 20px; }
.pv-md-20{
padding-top: 20px;
padding-bottom: 20px; }
.mv-md-20{
margin-top: 20px;
margin-bottom: 20px; }
.ph-md-20{
padding-left: 20px;
padding-right: 20px; }
.mh-md-20{
margin-left: 20px;
padding-right: 20px; }
.pa-md-25{
padding: 25px; }
.ma-md-25{
margin: 25px; }
.pv-md-25{
padding-top: 25px;
padding-bottom: 25px; }
.mv-md-25{
margin-top: 25px;
margin-bottom: 25px; }
.ph-md-25{
padding-left: 25px;
padding-right: 25px; }
.mh-md-25{
margin-left: 25px;
padding-right: 25px; }
.pa-md-30{
padding: 30px; }
.ma-md-30{
margin: 30px; }
.pv-md-30{
padding-top: 30px;
padding-bottom: 30px; }
.mv-md-30{
margin-top: 30px;
margin-bottom: 30px; }
.ph-md-30{
padding-left: 30px;
padding-right: 30px; }
.mh-md-30{
margin-left: 30px;
padding-right: 30px; }
.pa-md-35{
padding: 35px; }
.ma-md-35{
margin: 35px; }
.pv-md-35{
padding-top: 35px;
padding-bottom: 35px; }
.mv-md-35{
margin-top: 35px;
margin-bottom: 35px; }
.ph-md-35{
padding-left: 35px;
padding-right: 35px; }
.mh-md-35{
margin-left: 35px;
padding-right: 35px; }
.pa-md-40{
padding: 40px; }
.ma-md-40{
margin: 40px; }
.pv-md-40{
padding-top: 40px;
padding-bottom: 40px; }
.mv-md-40{
margin-top: 40px;
margin-bottom: 40px; }
.ph-md-40{
padding-left: 40px;
padding-right: 40px; }
.mh-md-40{
margin-left: 40px;
padding-right: 40px; }
.pa-md-45{
padding: 45px; }
.ma-md-45{
margin: 45px; }
.pv-md-45{
padding-top: 45px;
padding-bottom: 45px; }
.mv-md-45{
margin-top: 45px;
margin-bottom: 45px; }
.ph-md-45{
padding-left: 45px;
padding-right: 45px; }
.mh-md-45{
margin-left: 45px;
padding-right: 45px; }
.pa-md-50{
padding: 50px; }
.ma-md-50{
margin: 50px; }
.pv-md-50{
padding-top: 50px;
padding-bottom: 50px; }
.mv-md-50{
margin-top: 50px;
margin-bottom: 50px; }
.ph-md-50{
padding-left: 50px;
padding-right: 50px; }
.mh-md-50{
margin-left: 50px;
padding-right: 50px; }
.pa-md-55{
padding: 55px; }
.ma-md-55{
margin: 55px; }
.pv-md-55{
padding-top: 55px;
padding-bottom: 55px; }
.mv-md-55{
margin-top: 55px;
margin-bottom: 55px; }
.ph-md-55{
padding-left: 55px;
padding-right: 55px; }
.mh-md-55{
margin-left: 55px;
padding-right: 55px; }
.pa-md-60{
padding: 60px; }
.ma-md-60{
margin: 60px; }
.pv-md-60{
padding-top: 60px;
padding-bottom: 60px; }
.mv-md-60{
margin-top: 60px;
margin-bottom: 60px; }
.ph-md-60{
padding-left: 60px;
padding-right: 60px; }
.mh-md-60{
margin-left: 60px;
padding-right: 60px; }
.pa-md-65{
padding: 65px; }
.ma-md-65{
margin: 65px; }
.pv-md-65{
padding-top: 65px;
padding-bottom: 65px; }
.mv-md-65{
margin-top: 65px;
margin-bottom: 65px; }
.ph-md-65{
padding-left: 65px;
padding-right: 65px; }
.mh-md-65{
margin-left: 65px;
padding-right: 65px; }
.pa-md-70{
padding: 70px; }
.ma-md-70{
margin: 70px; }
.pv-md-70{
padding-top: 70px;
padding-bottom: 70px; }
.mv-md-70{
margin-top: 70px;
margin-bottom: 70px; }
.ph-md-70{
padding-left: 70px;
padding-right: 70px; }
.mh-md-70{
margin-left: 70px;
padding-right: 70px; }
.pa-md-75{
padding: 75px; }
.ma-md-75{
margin: 75px; }
.pv-md-75{
padding-top: 75px;
padding-bottom: 75px; }
.mv-md-75{
margin-top: 75px;
margin-bottom: 75px; }
.ph-md-75{
padding-left: 75px;
padding-right: 75px; }
.mh-md-75{
margin-left: 75px;
padding-right: 75px; }
.pa-md-80{
padding: 80px; }
.ma-md-80{
margin: 80px; }
.pv-md-80{
padding-top: 80px;
padding-bottom: 80px; }
.mv-md-80{
margin-top: 80px;
margin-bottom: 80px; }
.ph-md-80{
padding-left: 80px;
padding-right: 80px; }
.mh-md-80{
margin-left: 80px;
padding-right: 80px; }
.pa-md-85{
padding: 85px; }
.ma-md-85{
margin: 85px; }
.pv-md-85{
padding-top: 85px;
padding-bottom: 85px; }
.mv-md-85{
margin-top: 85px;
margin-bottom: 85px; }
.ph-md-85{
padding-left: 85px;
padding-right: 85px; }
.mh-md-85{
margin-left: 85px;
padding-right: 85px; }
.pa-md-90{
padding: 90px; }
.ma-md-90{
margin: 90px; }
.pv-md-90{
padding-top: 90px;
padding-bottom: 90px; }
.mv-md-90{
margin-top: 90px;
margin-bottom: 90px; }
.ph-md-90{
padding-left: 90px;
padding-right: 90px; }
.mh-md-90{
margin-left: 90px;
padding-right: 90px; }
.pa-md-95{
padding: 95px; }
.ma-md-95{
margin: 95px; }
.pv-md-95{
padding-top: 95px;
padding-bottom: 95px; }
.mv-md-95{
margin-top: 95px;
margin-bottom: 95px; }
.ph-md-95{
padding-left: 95px;
padding-right: 95px; }
.mh-md-95{
margin-left: 95px;
padding-right: 95px; }
.pa-md-100{
padding: 100px; }
.ma-md-100{
margin: 100px; }
.pv-md-100{
padding-top: 100px;
padding-bottom: 100px; }
.mv-md-100{
margin-top: 100px;
margin-bottom: 100px; }
.ph-md-100{
padding-left: 100px;
padding-right: 100px; }
.mh-md-100{
margin-left: 100px;
padding-right: 100px; }
.container{
max-width: 720px; }
.col-md{
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-md-1{
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-md-2{
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-md-3{
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-md-4{
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-md-5{
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-md-6{
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-md-7{
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-md-8{
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-md-9{
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-md-10{
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-md-11{
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-md-12{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-md-0{
right: auto; }
.pull-md-1{
right: 8.33333%; }
.pull-md-2{
right: 16.66667%; }
.pull-md-3{
right: 25%; }
.pull-md-4{
right: 33.33333%; }
.pull-md-5{
right: 41.66667%; }
.pull-md-6{
right: 50%; }
.pull-md-7{
right: 58.33333%; }
.pull-md-8{
right: 66.66667%; }
.pull-md-9{
right: 75%; }
.pull-md-10{
right: 83.33333%; }
.pull-md-11{
right: 91.66667%; }
.pull-md-12{
right: 100%; }
.push-md-0{
left: auto; }
.push-md-1{
left: 8.33333%; }
.push-md-2{
left: 16.66667%; }
.push-md-3{
left: 25%; }
.push-md-4{
left: 33.33333%; }
.push-md-5{
left: 41.66667%; }
.push-md-6{
left: 50%; }
.push-md-7{
left: 58.33333%; }
.push-md-8{
left: 66.66667%; }
.push-md-9{
left: 75%; }
.push-md-10{
left: 83.33333%; }
.push-md-11{
left: 91.66667%; }
.push-md-12{
left: 100%; }
.offset-md-0{
margin-left: 0%; }
.offset-md-1{
margin-left: 8.33333%; }
.offset-md-2{
margin-left: 16.66667%; }
.offset-md-3{
margin-left: 25%; }
.offset-md-4{
margin-left: 33.33333%; }
.offset-md-5{
margin-left: 41.66667%; }
.offset-md-6{
margin-left: 50%; }
.offset-md-7{
margin-left: 58.33333%; }
.offset-md-8{
margin-left: 66.66667%; }
.offset-md-9{
margin-left: 75%; }
.offset-md-10{
margin-left: 83.33333%; }
.offset-md-11{
margin-left: 91.66667%; }
.author-avatar{
float: left; }
.author-description{
text-align: left;
margin-top: 0;
margin-left: 50px;
padding-left: 75px;
padding-right: 33px;
padding-top: 35px;
padding-bottom: 23px;
min-height: 170px;
overflow: visible; }
.comments-area .author-avatar{
padding-top: 30px; }
.comment-text{
margin-top: 0;
padding-top: 35px;
padding-left: 85px;
padding-right: 30px;
margin-bottom: 30px;
min-height: 150px; }
.thecomment .reply{
float: right;
line-height: 1;
margin-bottom: 0; }
#reply-title small{
position: absolute;
top: 5px;
right: 15px;
font-size: 16px;
margin-left: 10px; }
.cookie-wrapper{
right: 20px;
bottom: 20px;
max-width: 400px; }
.site-mobile-menu{
top: auto !important; }
.page-title > .container > .row{
min-height: 300px;
max-height: 500px; }
.page-title h1{
font-size: 40px; }
.post-related .post-quote > h2{
font-size: 15px;
line-height: 1.4; }
.post-share{
margin-bottom: 0; }
.share-list__item:not(:last-child){
margin-right: 20px; }
.amely-filter-buttons{
margin-left: 20px; }
.col-switcher{
display: inline-block; }
.col-switcher a[data-col="4"],
.col-switcher a[data-col="5"],
.col-switcher a[data-col="6"]{
display: none; }
.has-no-sidebars .col-switcher a[data-col="4"]{
display: inline-block; }
.wb-bx-wrapper.wb-carousel-amely:hover .wb-bx-prev,
.wb-bx-wrapper.wb-carousel-amely:hover .wb-bx-next{
opacity: .6; }
.wb-bx-wrapper.wb-carousel-amely:hover .wb-bx-prev{
left: -25px; }
.wb-bx-wrapper.wb-carousel-amely:hover .wb-bx-next{
right: -25px; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev,
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next{
opacity: 0; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-prev{
left: -40px; }
.wb-bx-wrapper.wb-carousel-amely .wb-bx-next{
right: -40px; }
.vc_row[data-vc-stretch-content="true"] .wb-bx-wrapper.wb-carousel-amely .wb-bx-prev{
left: -15px; }
.vc_row[data-vc-stretch-content="true"] .wb-bx-wrapper.wb-carousel-amely .wb-bx-next{
right: -15px; }
form.track_order{
max-width: 630px;
margin: 0 auto;
padding: 60px; }
.woocommerce.single-product .product .woocommerce-product-gallery.thumbnails-left > div.col-md-9{
padding-left: 0; }
.woocommerce.single-product .product .product-tabs-wrapper .woocommerce-Tabs-panel--description > p{
max-width: 70%;
margin: 0 auto; }
#reviews{
max-width: 70%;
margin: 0 auto; }
.woocommerce.single-product .product #comments .comment .avatar{
float: left;
margin-top: 30px; }
.woocommerce.single-product .product #comments{
padding-top: 40px; }
.woocommerce.single-product .product #comments .comment .children{
margin-left: 100px; }
.amely-banner-grid-6 .banners{
margin: 0; }
.amely-banner-grid-6 .banners.banners-column-2, .amely-banner-grid-6 .banners.banners-column-3{
width: 50%; }
.amely-banner-grid-6 .banners .tm-shortcode{
margin-left: 15px;
margin-right: 15px; }
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(2),
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(3),
.amely-banner-grid-6v2 .banners-column-2 .tm-shortcode:nth-child(4){
width: calc(50% - 30px); }
.amely-banner .banner-text{
font-size: 22px !important;
margin-bottom: 0; }
.amely-banner4 .banner-content h1,
.amely-banner4 .banner-content h2,
.amely-banner4 .banner-content h3,
.amely-banner4 .banner-content h4,
.amely-banner4 .banner-content h5,
.amely-banner4 .banner-content h6{
font-weight: 700; }
.amely-banner4 .banner-content h1{
font-size: 60px; }
.amely-banner4 .banner-content h2{
font-size: 50px; }
.amely-banner4 .banner-content h3{
font-size: 45px; }
.amely-banner4 .banner-content h4{
font-size: 40px; }
.amely-banner4 .banner-content h5{
font-size: 35px; }
.amely-banner4 .banner-content h6{
font-size: 30px; }
.amely-social .social-links li{
display: inline-block; }
.vc_row.our-team-small{
padding: 0 200px; }
button.slick-arrow:hover:before, .slick-arrow.amely-button:hover:before, button.slick-arrow:focus:before, .slick-arrow.amely-button:focus:before{
font-size: 40px; } }
@media (min-width: 992px) and (max-width: 1439px){
.header-minicart .product_list_widget{
max-height: 200px; } }
@media (min-width: 992px) and (max-width: 1199px){
.site-header .site-logo{
width: 30%; }
.site-header .header-tools{
width: 70%; }
.mobile-menu-btn svg{
width: 60px;
height: 60px; }
.admin-bar .site-mobile-menu{
top: 32px; }
#woo-quick-view .summary{
max-height: 530px; } }
@media (min-width: 992px){
.flex-lg-first{
-ms-flex-order: -1;
order: -1; }
.flex-lg-last{
-ms-flex-order: 1;
order: 1; }
.flex-lg-unordered{
-ms-flex-order: 0;
order: 0; }
.flex-items-lg-top{
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-lg-middle{
-ms-flex-align: center;
align-items: center; }
.flex-items-lg-bottom{
-ms-flex-align: end;
align-items: flex-end; }
.flex-lg-top{
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-lg-middle{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-lg-bottom{
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-lg-left{
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-lg-center{
-ms-flex-pack: center;
justify-content: center; }
.flex-items-lg-right{
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-lg-around{
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-lg-between{
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-lg-left{
float: left !important; }
.pull-lg-right{
float: right !important; }
.pull-lg-none{
float: none !important; }
.text-lg-left{
text-align: left !important; }
.text-lg-right{
text-align: right !important; }
.text-lg-center{
text-align: center !important; }
.hidden-lg-up{
display: none !important; }
.col-lg-is-5{
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-lg-pull-is-5{
right: 20%; }
.col-lg-push-is-5{
left: 20%; }
.col-lg-offset-is-5{
margin-left: 20%; }
.pt-lg--100{
padding-top: -100px; }
.pt-lg--100-i{
padding-top: -100px !important; }
.mt-lg--100{
margin-top: -100px; }
.mt-lg--100-i{
margin-top: -100px !important; }
.pt-lg--95{
padding-top: -95px; }
.pt-lg--95-i{
padding-top: -95px !important; }
.mt-lg--95{
margin-top: -95px; }
.mt-lg--95-i{
margin-top: -95px !important; }
.pt-lg--90{
padding-top: -90px; }
.pt-lg--90-i{
padding-top: -90px !important; }
.mt-lg--90{
margin-top: -90px; }
.mt-lg--90-i{
margin-top: -90px !important; }
.pt-lg--85{
padding-top: -85px; }
.pt-lg--85-i{
padding-top: -85px !important; }
.mt-lg--85{
margin-top: -85px; }
.mt-lg--85-i{
margin-top: -85px !important; }
.pt-lg--80{
padding-top: -80px; }
.pt-lg--80-i{
padding-top: -80px !important; }
.mt-lg--80{
margin-top: -80px; }
.mt-lg--80-i{
margin-top: -80px !important; }
.pt-lg--75{
padding-top: -75px; }
.pt-lg--75-i{
padding-top: -75px !important; }
.mt-lg--75{
margin-top: -75px; }
.mt-lg--75-i{
margin-top: -75px !important; }
.pt-lg--70{
padding-top: -70px; }
.pt-lg--70-i{
padding-top: -70px !important; }
.mt-lg--70{
margin-top: -70px; }
.mt-lg--70-i{
margin-top: -70px !important; }
.pt-lg--65{
padding-top: -65px; }
.pt-lg--65-i{
padding-top: -65px !important; }
.mt-lg--65{
margin-top: -65px; }
.mt-lg--65-i{
margin-top: -65px !important; }
.pt-lg--60{
padding-top: -60px; }
.pt-lg--60-i{
padding-top: -60px !important; }
.mt-lg--60{
margin-top: -60px; }
.mt-lg--60-i{
margin-top: -60px !important; }
.pt-lg--55{
padding-top: -55px; }
.pt-lg--55-i{
padding-top: -55px !important; }
.mt-lg--55{
margin-top: -55px; }
.mt-lg--55-i{
margin-top: -55px !important; }
.pt-lg--50{
padding-top: -50px; }
.pt-lg--50-i{
padding-top: -50px !important; }
.mt-lg--50{
margin-top: -50px; }
.mt-lg--50-i{
margin-top: -50px !important; }
.pt-lg--45{
padding-top: -45px; }
.pt-lg--45-i{
padding-top: -45px !important; }
.mt-lg--45{
margin-top: -45px; }
.mt-lg--45-i{
margin-top: -45px !important; }
.pt-lg--40{
padding-top: -40px; }
.pt-lg--40-i{
padding-top: -40px !important; }
.mt-lg--40{
margin-top: -40px; }
.mt-lg--40-i{
margin-top: -40px !important; }
.pt-lg--35{
padding-top: -35px; }
.pt-lg--35-i{
padding-top: -35px !important; }
.mt-lg--35{
margin-top: -35px; }
.mt-lg--35-i{
margin-top: -35px !important; }
.pt-lg--30{
padding-top: -30px; }
.pt-lg--30-i{
padding-top: -30px !important; }
.mt-lg--30{
margin-top: -30px; }
.mt-lg--30-i{
margin-top: -30px !important; }
.pt-lg--25{
padding-top: -25px; }
.pt-lg--25-i{
padding-top: -25px !important; }
.mt-lg--25{
margin-top: -25px; }
.mt-lg--25-i{
margin-top: -25px !important; }
.pt-lg--20{
padding-top: -20px; }
.pt-lg--20-i{
padding-top: -20px !important; }
.mt-lg--20{
margin-top: -20px; }
.mt-lg--20-i{
margin-top: -20px !important; }
.pt-lg--15{
padding-top: -15px; }
.pt-lg--15-i{
padding-top: -15px !important; }
.mt-lg--15{
margin-top: -15px; }
.mt-lg--15-i{
margin-top: -15px !important; }
.pt-lg--10{
padding-top: -10px; }
.pt-lg--10-i{
padding-top: -10px !important; }
.mt-lg--10{
margin-top: -10px; }
.mt-lg--10-i{
margin-top: -10px !important; }
.pt-lg--5{
padding-top: -5px; }
.pt-lg--5-i{
padding-top: -5px !important; }
.mt-lg--5{
margin-top: -5px; }
.mt-lg--5-i{
margin-top: -5px !important; }
.pt-lg-0{
padding-top: 0px; }
.pt-lg-0-i{
padding-top: 0px !important; }
.mt-lg-0{
margin-top: 0px; }
.mt-lg-0-i{
margin-top: 0px !important; }
.pt-lg-5{
padding-top: 5px; }
.pt-lg-5-i{
padding-top: 5px !important; }
.mt-lg-5{
margin-top: 5px; }
.mt-lg-5-i{
margin-top: 5px !important; }
.pt-lg-10{
padding-top: 10px; }
.pt-lg-10-i{
padding-top: 10px !important; }
.mt-lg-10{
margin-top: 10px; }
.mt-lg-10-i{
margin-top: 10px !important; }
.pt-lg-15{
padding-top: 15px; }
.pt-lg-15-i{
padding-top: 15px !important; }
.mt-lg-15{
margin-top: 15px; }
.mt-lg-15-i{
margin-top: 15px !important; }
.pt-lg-20{
padding-top: 20px; }
.pt-lg-20-i{
padding-top: 20px !important; }
.mt-lg-20{
margin-top: 20px; }
.mt-lg-20-i{
margin-top: 20px !important; }
.pt-lg-25{
padding-top: 25px; }
.pt-lg-25-i{
padding-top: 25px !important; }
.mt-lg-25{
margin-top: 25px; }
.mt-lg-25-i{
margin-top: 25px !important; }
.pt-lg-30{
padding-top: 30px; }
.pt-lg-30-i{
padding-top: 30px !important; }
.mt-lg-30{
margin-top: 30px; }
.mt-lg-30-i{
margin-top: 30px !important; }
.pt-lg-35{
padding-top: 35px; }
.pt-lg-35-i{
padding-top: 35px !important; }
.mt-lg-35{
margin-top: 35px; }
.mt-lg-35-i{
margin-top: 35px !important; }
.pt-lg-40{
padding-top: 40px; }
.pt-lg-40-i{
padding-top: 40px !important; }
.mt-lg-40{
margin-top: 40px; }
.mt-lg-40-i{
margin-top: 40px !important; }
.pt-lg-45{
padding-top: 45px; }
.pt-lg-45-i{
padding-top: 45px !important; }
.mt-lg-45{
margin-top: 45px; }
.mt-lg-45-i{
margin-top: 45px !important; }
.pt-lg-50{
padding-top: 50px; }
.pt-lg-50-i{
padding-top: 50px !important; }
.mt-lg-50{
margin-top: 50px; }
.mt-lg-50-i{
margin-top: 50px !important; }
.pt-lg-55{
padding-top: 55px; }
.pt-lg-55-i{
padding-top: 55px !important; }
.mt-lg-55{
margin-top: 55px; }
.mt-lg-55-i{
margin-top: 55px !important; }
.pt-lg-60{
padding-top: 60px; }
.pt-lg-60-i{
padding-top: 60px !important; }
.mt-lg-60{
margin-top: 60px; }
.mt-lg-60-i{
margin-top: 60px !important; }
.pt-lg-65{
padding-top: 65px; }
.pt-lg-65-i{
padding-top: 65px !important; }
.mt-lg-65{
margin-top: 65px; }
.mt-lg-65-i{
margin-top: 65px !important; }
.pt-lg-70{
padding-top: 70px; }
.pt-lg-70-i{
padding-top: 70px !important; }
.mt-lg-70{
margin-top: 70px; }
.mt-lg-70-i{
margin-top: 70px !important; }
.pt-lg-75{
padding-top: 75px; }
.pt-lg-75-i{
padding-top: 75px !important; }
.mt-lg-75{
margin-top: 75px; }
.mt-lg-75-i{
margin-top: 75px !important; }
.pt-lg-80{
padding-top: 80px; }
.pt-lg-80-i{
padding-top: 80px !important; }
.mt-lg-80{
margin-top: 80px; }
.mt-lg-80-i{
margin-top: 80px !important; }
.pt-lg-85{
padding-top: 85px; }
.pt-lg-85-i{
padding-top: 85px !important; }
.mt-lg-85{
margin-top: 85px; }
.mt-lg-85-i{
margin-top: 85px !important; }
.pt-lg-90{
padding-top: 90px; }
.pt-lg-90-i{
padding-top: 90px !important; }
.mt-lg-90{
margin-top: 90px; }
.mt-lg-90-i{
margin-top: 90px !important; }
.pt-lg-95{
padding-top: 95px; }
.pt-lg-95-i{
padding-top: 95px !important; }
.mt-lg-95{
margin-top: 95px; }
.mt-lg-95-i{
margin-top: 95px !important; }
.pt-lg-100{
padding-top: 100px; }
.pt-lg-100-i{
padding-top: 100px !important; }
.mt-lg-100{
margin-top: 100px; }
.mt-lg-100-i{
margin-top: 100px !important; }
.pr-lg--100{
padding-right: -100px; }
.pr-lg--100-i{
padding-right: -100px !important; }
.mr-lg--100{
margin-right: -100px; }
.mr-lg--100-i{
margin-right: -100px !important; }
.pr-lg--95{
padding-right: -95px; }
.pr-lg--95-i{
padding-right: -95px !important; }
.mr-lg--95{
margin-right: -95px; }
.mr-lg--95-i{
margin-right: -95px !important; }
.pr-lg--90{
padding-right: -90px; }
.pr-lg--90-i{
padding-right: -90px !important; }
.mr-lg--90{
margin-right: -90px; }
.mr-lg--90-i{
margin-right: -90px !important; }
.pr-lg--85{
padding-right: -85px; }
.pr-lg--85-i{
padding-right: -85px !important; }
.mr-lg--85{
margin-right: -85px; }
.mr-lg--85-i{
margin-right: -85px !important; }
.pr-lg--80{
padding-right: -80px; }
.pr-lg--80-i{
padding-right: -80px !important; }
.mr-lg--80{
margin-right: -80px; }
.mr-lg--80-i{
margin-right: -80px !important; }
.pr-lg--75{
padding-right: -75px; }
.pr-lg--75-i{
padding-right: -75px !important; }
.mr-lg--75{
margin-right: -75px; }
.mr-lg--75-i{
margin-right: -75px !important; }
.pr-lg--70{
padding-right: -70px; }
.pr-lg--70-i{
padding-right: -70px !important; }
.mr-lg--70{
margin-right: -70px; }
.mr-lg--70-i{
margin-right: -70px !important; }
.pr-lg--65{
padding-right: -65px; }
.pr-lg--65-i{
padding-right: -65px !important; }
.mr-lg--65{
margin-right: -65px; }
.mr-lg--65-i{
margin-right: -65px !important; }
.pr-lg--60{
padding-right: -60px; }
.pr-lg--60-i{
padding-right: -60px !important; }
.mr-lg--60{
margin-right: -60px; }
.mr-lg--60-i{
margin-right: -60px !important; }
.pr-lg--55{
padding-right: -55px; }
.pr-lg--55-i{
padding-right: -55px !important; }
.mr-lg--55{
margin-right: -55px; }
.mr-lg--55-i{
margin-right: -55px !important; }
.pr-lg--50{
padding-right: -50px; }
.pr-lg--50-i{
padding-right: -50px !important; }
.mr-lg--50{
margin-right: -50px; }
.mr-lg--50-i{
margin-right: -50px !important; }
.pr-lg--45{
padding-right: -45px; }
.pr-lg--45-i{
padding-right: -45px !important; }
.mr-lg--45{
margin-right: -45px; }
.mr-lg--45-i{
margin-right: -45px !important; }
.pr-lg--40{
padding-right: -40px; }
.pr-lg--40-i{
padding-right: -40px !important; }
.mr-lg--40{
margin-right: -40px; }
.mr-lg--40-i{
margin-right: -40px !important; }
.pr-lg--35{
padding-right: -35px; }
.pr-lg--35-i{
padding-right: -35px !important; }
.mr-lg--35{
margin-right: -35px; }
.mr-lg--35-i{
margin-right: -35px !important; }
.pr-lg--30{
padding-right: -30px; }
.pr-lg--30-i{
padding-right: -30px !important; }
.mr-lg--30{
margin-right: -30px; }
.mr-lg--30-i{
margin-right: -30px !important; }
.pr-lg--25{
padding-right: -25px; }
.pr-lg--25-i{
padding-right: -25px !important; }
.mr-lg--25{
margin-right: -25px; }
.mr-lg--25-i{
margin-right: -25px !important; }
.pr-lg--20{
padding-right: -20px; }
.pr-lg--20-i{
padding-right: -20px !important; }
.mr-lg--20{
margin-right: -20px; }
.mr-lg--20-i{
margin-right: -20px !important; }
.pr-lg--15{
padding-right: -15px; }
.pr-lg--15-i{
padding-right: -15px !important; }
.mr-lg--15{
margin-right: -15px; }
.mr-lg--15-i{
margin-right: -15px !important; }
.pr-lg--10{
padding-right: -10px; }
.pr-lg--10-i{
padding-right: -10px !important; }
.mr-lg--10{
margin-right: -10px; }
.mr-lg--10-i{
margin-right: -10px !important; }
.pr-lg--5{
padding-right: -5px; }
.pr-lg--5-i{
padding-right: -5px !important; }
.mr-lg--5{
margin-right: -5px; }
.mr-lg--5-i{
margin-right: -5px !important; }
.pr-lg-0{
padding-right: 0px; }
.pr-lg-0-i{
padding-right: 0px !important; }
.mr-lg-0{
margin-right: 0px; }
.mr-lg-0-i{
margin-right: 0px !important; }
.pr-lg-5{
padding-right: 5px; }
.pr-lg-5-i{
padding-right: 5px !important; }
.mr-lg-5{
margin-right: 5px; }
.mr-lg-5-i{
margin-right: 5px !important; }
.pr-lg-10{
padding-right: 10px; }
.pr-lg-10-i{
padding-right: 10px !important; }
.mr-lg-10{
margin-right: 10px; }
.mr-lg-10-i{
margin-right: 10px !important; }
.pr-lg-15{
padding-right: 15px; }
.pr-lg-15-i{
padding-right: 15px !important; }
.mr-lg-15{
margin-right: 15px; }
.mr-lg-15-i{
margin-right: 15px !important; }
.pr-lg-20{
padding-right: 20px; }
.pr-lg-20-i{
padding-right: 20px !important; }
.mr-lg-20{
margin-right: 20px; }
.mr-lg-20-i{
margin-right: 20px !important; }
.pr-lg-25{
padding-right: 25px; }
.pr-lg-25-i{
padding-right: 25px !important; }
.mr-lg-25{
margin-right: 25px; }
.mr-lg-25-i{
margin-right: 25px !important; }
.pr-lg-30{
padding-right: 30px; }
.pr-lg-30-i{
padding-right: 30px !important; }
.mr-lg-30{
margin-right: 30px; }
.mr-lg-30-i{
margin-right: 30px !important; }
.pr-lg-35{
padding-right: 35px; }
.pr-lg-35-i{
padding-right: 35px !important; }
.mr-lg-35{
margin-right: 35px; }
.mr-lg-35-i{
margin-right: 35px !important; }
.pr-lg-40{
padding-right: 40px; }
.pr-lg-40-i{
padding-right: 40px !important; }
.mr-lg-40{
margin-right: 40px; }
.mr-lg-40-i{
margin-right: 40px !important; }
.pr-lg-45{
padding-right: 45px; }
.pr-lg-45-i{
padding-right: 45px !important; }
.mr-lg-45{
margin-right: 45px; }
.mr-lg-45-i{
margin-right: 45px !important; }
.pr-lg-50{
padding-right: 50px; }
.pr-lg-50-i{
padding-right: 50px !important; }
.mr-lg-50{
margin-right: 50px; }
.mr-lg-50-i{
margin-right: 50px !important; }
.pr-lg-55{
padding-right: 55px; }
.pr-lg-55-i{
padding-right: 55px !important; }
.mr-lg-55{
margin-right: 55px; }
.mr-lg-55-i{
margin-right: 55px !important; }
.pr-lg-60{
padding-right: 60px; }
.pr-lg-60-i{
padding-right: 60px !important; }
.mr-lg-60{
margin-right: 60px; }
.mr-lg-60-i{
margin-right: 60px !important; }
.pr-lg-65{
padding-right: 65px; }
.pr-lg-65-i{
padding-right: 65px !important; }
.mr-lg-65{
margin-right: 65px; }
.mr-lg-65-i{
margin-right: 65px !important; }
.pr-lg-70{
padding-right: 70px; }
.pr-lg-70-i{
padding-right: 70px !important; }
.mr-lg-70{
margin-right: 70px; }
.mr-lg-70-i{
margin-right: 70px !important; }
.pr-lg-75{
padding-right: 75px; }
.pr-lg-75-i{
padding-right: 75px !important; }
.mr-lg-75{
margin-right: 75px; }
.mr-lg-75-i{
margin-right: 75px !important; }
.pr-lg-80{
padding-right: 80px; }
.pr-lg-80-i{
padding-right: 80px !important; }
.mr-lg-80{
margin-right: 80px; }
.mr-lg-80-i{
margin-right: 80px !important; }
.pr-lg-85{
padding-right: 85px; }
.pr-lg-85-i{
padding-right: 85px !important; }
.mr-lg-85{
margin-right: 85px; }
.mr-lg-85-i{
margin-right: 85px !important; }
.pr-lg-90{
padding-right: 90px; }
.pr-lg-90-i{
padding-right: 90px !important; }
.mr-lg-90{
margin-right: 90px; }
.mr-lg-90-i{
margin-right: 90px !important; }
.pr-lg-95{
padding-right: 95px; }
.pr-lg-95-i{
padding-right: 95px !important; }
.mr-lg-95{
margin-right: 95px; }
.mr-lg-95-i{
margin-right: 95px !important; }
.pr-lg-100{
padding-right: 100px; }
.pr-lg-100-i{
padding-right: 100px !important; }
.mr-lg-100{
margin-right: 100px; }
.mr-lg-100-i{
margin-right: 100px !important; }
.pb-lg--100{
padding-bottom: -100px; }
.pb-lg--100-i{
padding-bottom: -100px !important; }
.mb-lg--100{
margin-bottom: -100px; }
.mb-lg--100-i{
margin-bottom: -100px !important; }
.pb-lg--95{
padding-bottom: -95px; }
.pb-lg--95-i{
padding-bottom: -95px !important; }
.mb-lg--95{
margin-bottom: -95px; }
.mb-lg--95-i{
margin-bottom: -95px !important; }
.pb-lg--90{
padding-bottom: -90px; }
.pb-lg--90-i{
padding-bottom: -90px !important; }
.mb-lg--90{
margin-bottom: -90px; }
.mb-lg--90-i{
margin-bottom: -90px !important; }
.pb-lg--85{
padding-bottom: -85px; }
.pb-lg--85-i{
padding-bottom: -85px !important; }
.mb-lg--85{
margin-bottom: -85px; }
.mb-lg--85-i{
margin-bottom: -85px !important; }
.pb-lg--80{
padding-bottom: -80px; }
.pb-lg--80-i{
padding-bottom: -80px !important; }
.mb-lg--80{
margin-bottom: -80px; }
.mb-lg--80-i{
margin-bottom: -80px !important; }
.pb-lg--75{
padding-bottom: -75px; }
.pb-lg--75-i{
padding-bottom: -75px !important; }
.mb-lg--75{
margin-bottom: -75px; }
.mb-lg--75-i{
margin-bottom: -75px !important; }
.pb-lg--70{
padding-bottom: -70px; }
.pb-lg--70-i{
padding-bottom: -70px !important; }
.mb-lg--70{
margin-bottom: -70px; }
.mb-lg--70-i{
margin-bottom: -70px !important; }
.pb-lg--65{
padding-bottom: -65px; }
.pb-lg--65-i{
padding-bottom: -65px !important; }
.mb-lg--65{
margin-bottom: -65px; }
.mb-lg--65-i{
margin-bottom: -65px !important; }
.pb-lg--60{
padding-bottom: -60px; }
.pb-lg--60-i{
padding-bottom: -60px !important; }
.mb-lg--60{
margin-bottom: -60px; }
.mb-lg--60-i{
margin-bottom: -60px !important; }
.pb-lg--55{
padding-bottom: -55px; }
.pb-lg--55-i{
padding-bottom: -55px !important; }
.mb-lg--55{
margin-bottom: -55px; }
.mb-lg--55-i{
margin-bottom: -55px !important; }
.pb-lg--50{
padding-bottom: -50px; }
.pb-lg--50-i{
padding-bottom: -50px !important; }
.mb-lg--50{
margin-bottom: -50px; }
.mb-lg--50-i{
margin-bottom: -50px !important; }
.pb-lg--45{
padding-bottom: -45px; }
.pb-lg--45-i{
padding-bottom: -45px !important; }
.mb-lg--45{
margin-bottom: -45px; }
.mb-lg--45-i{
margin-bottom: -45px !important; }
.pb-lg--40{
padding-bottom: -40px; }
.pb-lg--40-i{
padding-bottom: -40px !important; }
.mb-lg--40{
margin-bottom: -40px; }
.mb-lg--40-i{
margin-bottom: -40px !important; }
.pb-lg--35{
padding-bottom: -35px; }
.pb-lg--35-i{
padding-bottom: -35px !important; }
.mb-lg--35{
margin-bottom: -35px; }
.mb-lg--35-i{
margin-bottom: -35px !important; }
.pb-lg--30{
padding-bottom: -30px; }
.pb-lg--30-i{
padding-bottom: -30px !important; }
.mb-lg--30{
margin-bottom: -30px; }
.mb-lg--30-i{
margin-bottom: -30px !important; }
.pb-lg--25{
padding-bottom: -25px; }
.pb-lg--25-i{
padding-bottom: -25px !important; }
.mb-lg--25{
margin-bottom: -25px; }
.mb-lg--25-i{
margin-bottom: -25px !important; }
.pb-lg--20{
padding-bottom: -20px; }
.pb-lg--20-i{
padding-bottom: -20px !important; }
.mb-lg--20{
margin-bottom: -20px; }
.mb-lg--20-i{
margin-bottom: -20px !important; }
.pb-lg--15{
padding-bottom: -15px; }
.pb-lg--15-i{
padding-bottom: -15px !important; }
.mb-lg--15{
margin-bottom: -15px; }
.mb-lg--15-i{
margin-bottom: -15px !important; }
.pb-lg--10{
padding-bottom: -10px; }
.pb-lg--10-i{
padding-bottom: -10px !important; }
.mb-lg--10{
margin-bottom: -10px; }
.mb-lg--10-i{
margin-bottom: -10px !important; }
.pb-lg--5{
padding-bottom: -5px; }
.pb-lg--5-i{
padding-bottom: -5px !important; }
.mb-lg--5{
margin-bottom: -5px; }
.mb-lg--5-i{
margin-bottom: -5px !important; }
.pb-lg-0{
padding-bottom: 0px; }
.pb-lg-0-i{
padding-bottom: 0px !important; }
.mb-lg-0{
margin-bottom: 0px; }
.mb-lg-0-i{
margin-bottom: 0px !important; }
.pb-lg-5{
padding-bottom: 5px; }
.pb-lg-5-i{
padding-bottom: 5px !important; }
.mb-lg-5{
margin-bottom: 5px; }
.mb-lg-5-i{
margin-bottom: 5px !important; }
.pb-lg-10{
padding-bottom: 10px; }
.pb-lg-10-i{
padding-bottom: 10px !important; }
.mb-lg-10{
margin-bottom: 10px; }
.mb-lg-10-i{
margin-bottom: 10px !important; }
.pb-lg-15{
padding-bottom: 15px; }
.pb-lg-15-i{
padding-bottom: 15px !important; }
.mb-lg-15{
margin-bottom: 15px; }
.mb-lg-15-i{
margin-bottom: 15px !important; }
.pb-lg-20{
padding-bottom: 20px; }
.pb-lg-20-i{
padding-bottom: 20px !important; }
.mb-lg-20{
margin-bottom: 20px; }
.mb-lg-20-i{
margin-bottom: 20px !important; }
.pb-lg-25{
padding-bottom: 25px; }
.pb-lg-25-i{
padding-bottom: 25px !important; }
.mb-lg-25{
margin-bottom: 25px; }
.mb-lg-25-i{
margin-bottom: 25px !important; }
.pb-lg-30{
padding-bottom: 30px; }
.pb-lg-30-i{
padding-bottom: 30px !important; }
.mb-lg-30{
margin-bottom: 30px; }
.mb-lg-30-i{
margin-bottom: 30px !important; }
.pb-lg-35{
padding-bottom: 35px; }
.pb-lg-35-i{
padding-bottom: 35px !important; }
.mb-lg-35{
margin-bottom: 35px; }
.mb-lg-35-i{
margin-bottom: 35px !important; }
.pb-lg-40{
padding-bottom: 40px; }
.pb-lg-40-i{
padding-bottom: 40px !important; }
.mb-lg-40{
margin-bottom: 40px; }
.mb-lg-40-i{
margin-bottom: 40px !important; }
.pb-lg-45{
padding-bottom: 45px; }
.pb-lg-45-i{
padding-bottom: 45px !important; }
.mb-lg-45{
margin-bottom: 45px; }
.mb-lg-45-i{
margin-bottom: 45px !important; }
.pb-lg-50{
padding-bottom: 50px; }
.pb-lg-50-i{
padding-bottom: 50px !important; }
.mb-lg-50{
margin-bottom: 50px; }
.mb-lg-50-i{
margin-bottom: 50px !important; }
.pb-lg-55{
padding-bottom: 55px; }
.pb-lg-55-i{
padding-bottom: 55px !important; }
.mb-lg-55{
margin-bottom: 55px; }
.mb-lg-55-i{
margin-bottom: 55px !important; }
.pb-lg-60{
padding-bottom: 60px; }
.pb-lg-60-i{
padding-bottom: 60px !important; }
.mb-lg-60{
margin-bottom: 60px; }
.mb-lg-60-i{
margin-bottom: 60px !important; }
.pb-lg-65{
padding-bottom: 65px; }
.pb-lg-65-i{
padding-bottom: 65px !important; }
.mb-lg-65{
margin-bottom: 65px; }
.mb-lg-65-i{
margin-bottom: 65px !important; }
.pb-lg-70{
padding-bottom: 70px; }
.pb-lg-70-i{
padding-bottom: 70px !important; }
.mb-lg-70{
margin-bottom: 70px; }
.mb-lg-70-i{
margin-bottom: 70px !important; }
.pb-lg-75{
padding-bottom: 75px; }
.pb-lg-75-i{
padding-bottom: 75px !important; }
.mb-lg-75{
margin-bottom: 75px; }
.mb-lg-75-i{
margin-bottom: 75px !important; }
.pb-lg-80{
padding-bottom: 80px; }
.pb-lg-80-i{
padding-bottom: 80px !important; }
.mb-lg-80{
margin-bottom: 80px; }
.mb-lg-80-i{
margin-bottom: 80px !important; }
.pb-lg-85{
padding-bottom: 85px; }
.pb-lg-85-i{
padding-bottom: 85px !important; }
.mb-lg-85{
margin-bottom: 85px; }
.mb-lg-85-i{
margin-bottom: 85px !important; }
.pb-lg-90{
padding-bottom: 90px; }
.pb-lg-90-i{
padding-bottom: 90px !important; }
.mb-lg-90{
margin-bottom: 90px; }
.mb-lg-90-i{
margin-bottom: 90px !important; }
.pb-lg-95{
padding-bottom: 95px; }
.pb-lg-95-i{
padding-bottom: 95px !important; }
.mb-lg-95{
margin-bottom: 95px; }
.mb-lg-95-i{
margin-bottom: 95px !important; }
.pb-lg-100{
padding-bottom: 100px; }
.pb-lg-100-i{
padding-bottom: 100px !important; }
.mb-lg-100{
margin-bottom: 100px; }
.mb-lg-100-i{
margin-bottom: 100px !important; }
.pl-lg--100{
padding-left: -100px; }
.pl-lg--100-i{
padding-left: -100px !important; }
.ml-lg--100{
margin-left: -100px; }
.ml-lg--100-i{
margin-left: -100px !important; }
.pl-lg--95{
padding-left: -95px; }
.pl-lg--95-i{
padding-left: -95px !important; }
.ml-lg--95{
margin-left: -95px; }
.ml-lg--95-i{
margin-left: -95px !important; }
.pl-lg--90{
padding-left: -90px; }
.pl-lg--90-i{
padding-left: -90px !important; }
.ml-lg--90{
margin-left: -90px; }
.ml-lg--90-i{
margin-left: -90px !important; }
.pl-lg--85{
padding-left: -85px; }
.pl-lg--85-i{
padding-left: -85px !important; }
.ml-lg--85{
margin-left: -85px; }
.ml-lg--85-i{
margin-left: -85px !important; }
.pl-lg--80{
padding-left: -80px; }
.pl-lg--80-i{
padding-left: -80px !important; }
.ml-lg--80{
margin-left: -80px; }
.ml-lg--80-i{
margin-left: -80px !important; }
.pl-lg--75{
padding-left: -75px; }
.pl-lg--75-i{
padding-left: -75px !important; }
.ml-lg--75{
margin-left: -75px; }
.ml-lg--75-i{
margin-left: -75px !important; }
.pl-lg--70{
padding-left: -70px; }
.pl-lg--70-i{
padding-left: -70px !important; }
.ml-lg--70{
margin-left: -70px; }
.ml-lg--70-i{
margin-left: -70px !important; }
.pl-lg--65{
padding-left: -65px; }
.pl-lg--65-i{
padding-left: -65px !important; }
.ml-lg--65{
margin-left: -65px; }
.ml-lg--65-i{
margin-left: -65px !important; }
.pl-lg--60{
padding-left: -60px; }
.pl-lg--60-i{
padding-left: -60px !important; }
.ml-lg--60{
margin-left: -60px; }
.ml-lg--60-i{
margin-left: -60px !important; }
.pl-lg--55{
padding-left: -55px; }
.pl-lg--55-i{
padding-left: -55px !important; }
.ml-lg--55{
margin-left: -55px; }
.ml-lg--55-i{
margin-left: -55px !important; }
.pl-lg--50{
padding-left: -50px; }
.pl-lg--50-i{
padding-left: -50px !important; }
.ml-lg--50{
margin-left: -50px; }
.ml-lg--50-i{
margin-left: -50px !important; }
.pl-lg--45{
padding-left: -45px; }
.pl-lg--45-i{
padding-left: -45px !important; }
.ml-lg--45{
margin-left: -45px; }
.ml-lg--45-i{
margin-left: -45px !important; }
.pl-lg--40{
padding-left: -40px; }
.pl-lg--40-i{
padding-left: -40px !important; }
.ml-lg--40{
margin-left: -40px; }
.ml-lg--40-i{
margin-left: -40px !important; }
.pl-lg--35{
padding-left: -35px; }
.pl-lg--35-i{
padding-left: -35px !important; }
.ml-lg--35{
margin-left: -35px; }
.ml-lg--35-i{
margin-left: -35px !important; }
.pl-lg--30{
padding-left: -30px; }
.pl-lg--30-i{
padding-left: -30px !important; }
.ml-lg--30{
margin-left: -30px; }
.ml-lg--30-i{
margin-left: -30px !important; }
.pl-lg--25{
padding-left: -25px; }
.pl-lg--25-i{
padding-left: -25px !important; }
.ml-lg--25{
margin-left: -25px; }
.ml-lg--25-i{
margin-left: -25px !important; }
.pl-lg--20{
padding-left: -20px; }
.pl-lg--20-i{
padding-left: -20px !important; }
.ml-lg--20{
margin-left: -20px; }
.ml-lg--20-i{
margin-left: -20px !important; }
.pl-lg--15{
padding-left: -15px; }
.pl-lg--15-i{
padding-left: -15px !important; }
.ml-lg--15{
margin-left: -15px; }
.ml-lg--15-i{
margin-left: -15px !important; }
.pl-lg--10{
padding-left: -10px; }
.pl-lg--10-i{
padding-left: -10px !important; }
.ml-lg--10{
margin-left: -10px; }
.ml-lg--10-i{
margin-left: -10px !important; }
.pl-lg--5{
padding-left: -5px; }
.pl-lg--5-i{
padding-left: -5px !important; }
.ml-lg--5{
margin-left: -5px; }
.ml-lg--5-i{
margin-left: -5px !important; }
.pl-lg-0{
padding-left: 0px; }
.pl-lg-0-i{
padding-left: 0px !important; }
.ml-lg-0{
margin-left: 0px; }
.ml-lg-0-i{
margin-left: 0px !important; }
.pl-lg-5{
padding-left: 5px; }
.pl-lg-5-i{
padding-left: 5px !important; }
.ml-lg-5{
margin-left: 5px; }
.ml-lg-5-i{
margin-left: 5px !important; }
.pl-lg-10{
padding-left: 10px; }
.pl-lg-10-i{
padding-left: 10px !important; }
.ml-lg-10{
margin-left: 10px; }
.ml-lg-10-i{
margin-left: 10px !important; }
.pl-lg-15{
padding-left: 15px; }
.pl-lg-15-i{
padding-left: 15px !important; }
.ml-lg-15{
margin-left: 15px; }
.ml-lg-15-i{
margin-left: 15px !important; }
.pl-lg-20{
padding-left: 20px; }
.pl-lg-20-i{
padding-left: 20px !important; }
.ml-lg-20{
margin-left: 20px; }
.ml-lg-20-i{
margin-left: 20px !important; }
.pl-lg-25{
padding-left: 25px; }
.pl-lg-25-i{
padding-left: 25px !important; }
.ml-lg-25{
margin-left: 25px; }
.ml-lg-25-i{
margin-left: 25px !important; }
.pl-lg-30{
padding-left: 30px; }
.pl-lg-30-i{
padding-left: 30px !important; }
.ml-lg-30{
margin-left: 30px; }
.ml-lg-30-i{
margin-left: 30px !important; }
.pl-lg-35{
padding-left: 35px; }
.pl-lg-35-i{
padding-left: 35px !important; }
.ml-lg-35{
margin-left: 35px; }
.ml-lg-35-i{
margin-left: 35px !important; }
.pl-lg-40{
padding-left: 40px; }
.pl-lg-40-i{
padding-left: 40px !important; }
.ml-lg-40{
margin-left: 40px; }
.ml-lg-40-i{
margin-left: 40px !important; }
.pl-lg-45{
padding-left: 45px; }
.pl-lg-45-i{
padding-left: 45px !important; }
.ml-lg-45{
margin-left: 45px; }
.ml-lg-45-i{
margin-left: 45px !important; }
.pl-lg-50{
padding-left: 50px; }
.pl-lg-50-i{
padding-left: 50px !important; }
.ml-lg-50{
margin-left: 50px; }
.ml-lg-50-i{
margin-left: 50px !important; }
.pl-lg-55{
padding-left: 55px; }
.pl-lg-55-i{
padding-left: 55px !important; }
.ml-lg-55{
margin-left: 55px; }
.ml-lg-55-i{
margin-left: 55px !important; }
.pl-lg-60{
padding-left: 60px; }
.pl-lg-60-i{
padding-left: 60px !important; }
.ml-lg-60{
margin-left: 60px; }
.ml-lg-60-i{
margin-left: 60px !important; }
.pl-lg-65{
padding-left: 65px; }
.pl-lg-65-i{
padding-left: 65px !important; }
.ml-lg-65{
margin-left: 65px; }
.ml-lg-65-i{
margin-left: 65px !important; }
.pl-lg-70{
padding-left: 70px; }
.pl-lg-70-i{
padding-left: 70px !important; }
.ml-lg-70{
margin-left: 70px; }
.ml-lg-70-i{
margin-left: 70px !important; }
.pl-lg-75{
padding-left: 75px; }
.pl-lg-75-i{
padding-left: 75px !important; }
.ml-lg-75{
margin-left: 75px; }
.ml-lg-75-i{
margin-left: 75px !important; }
.pl-lg-80{
padding-left: 80px; }
.pl-lg-80-i{
padding-left: 80px !important; }
.ml-lg-80{
margin-left: 80px; }
.ml-lg-80-i{
margin-left: 80px !important; }
.pl-lg-85{
padding-left: 85px; }
.pl-lg-85-i{
padding-left: 85px !important; }
.ml-lg-85{
margin-left: 85px; }
.ml-lg-85-i{
margin-left: 85px !important; }
.pl-lg-90{
padding-left: 90px; }
.pl-lg-90-i{
padding-left: 90px !important; }
.ml-lg-90{
margin-left: 90px; }
.ml-lg-90-i{
margin-left: 90px !important; }
.pl-lg-95{
padding-left: 95px; }
.pl-lg-95-i{
padding-left: 95px !important; }
.ml-lg-95{
margin-left: 95px; }
.ml-lg-95-i{
margin-left: 95px !important; }
.pl-lg-100{
padding-left: 100px; }
.pl-lg-100-i{
padding-left: 100px !important; }
.ml-lg-100{
margin-left: 100px; }
.ml-lg-100-i{
margin-left: 100px !important; }
.pa-lg--100{
padding: -100px; }
.ma-lg--100{
margin: -100px; }
.pv-lg--100{
padding-top: -100px;
padding-bottom: -100px; }
.mv-lg--100{
margin-top: -100px;
margin-bottom: -100px; }
.ph-lg--100{
padding-left: -100px;
padding-right: -100px; }
.mh-lg--100{
margin-left: -100px;
padding-right: -100px; }
.pa-lg--95{
padding: -95px; }
.ma-lg--95{
margin: -95px; }
.pv-lg--95{
padding-top: -95px;
padding-bottom: -95px; }
.mv-lg--95{
margin-top: -95px;
margin-bottom: -95px; }
.ph-lg--95{
padding-left: -95px;
padding-right: -95px; }
.mh-lg--95{
margin-left: -95px;
padding-right: -95px; }
.pa-lg--90{
padding: -90px; }
.ma-lg--90{
margin: -90px; }
.pv-lg--90{
padding-top: -90px;
padding-bottom: -90px; }
.mv-lg--90{
margin-top: -90px;
margin-bottom: -90px; }
.ph-lg--90{
padding-left: -90px;
padding-right: -90px; }
.mh-lg--90{
margin-left: -90px;
padding-right: -90px; }
.pa-lg--85{
padding: -85px; }
.ma-lg--85{
margin: -85px; }
.pv-lg--85{
padding-top: -85px;
padding-bottom: -85px; }
.mv-lg--85{
margin-top: -85px;
margin-bottom: -85px; }
.ph-lg--85{
padding-left: -85px;
padding-right: -85px; }
.mh-lg--85{
margin-left: -85px;
padding-right: -85px; }
.pa-lg--80{
padding: -80px; }
.ma-lg--80{
margin: -80px; }
.pv-lg--80{
padding-top: -80px;
padding-bottom: -80px; }
.mv-lg--80{
margin-top: -80px;
margin-bottom: -80px; }
.ph-lg--80{
padding-left: -80px;
padding-right: -80px; }
.mh-lg--80{
margin-left: -80px;
padding-right: -80px; }
.pa-lg--75{
padding: -75px; }
.ma-lg--75{
margin: -75px; }
.pv-lg--75{
padding-top: -75px;
padding-bottom: -75px; }
.mv-lg--75{
margin-top: -75px;
margin-bottom: -75px; }
.ph-lg--75{
padding-left: -75px;
padding-right: -75px; }
.mh-lg--75{
margin-left: -75px;
padding-right: -75px; }
.pa-lg--70{
padding: -70px; }
.ma-lg--70{
margin: -70px; }
.pv-lg--70{
padding-top: -70px;
padding-bottom: -70px; }
.mv-lg--70{
margin-top: -70px;
margin-bottom: -70px; }
.ph-lg--70{
padding-left: -70px;
padding-right: -70px; }
.mh-lg--70{
margin-left: -70px;
padding-right: -70px; }
.pa-lg--65{
padding: -65px; }
.ma-lg--65{
margin: -65px; }
.pv-lg--65{
padding-top: -65px;
padding-bottom: -65px; }
.mv-lg--65{
margin-top: -65px;
margin-bottom: -65px; }
.ph-lg--65{
padding-left: -65px;
padding-right: -65px; }
.mh-lg--65{
margin-left: -65px;
padding-right: -65px; }
.pa-lg--60{
padding: -60px; }
.ma-lg--60{
margin: -60px; }
.pv-lg--60{
padding-top: -60px;
padding-bottom: -60px; }
.mv-lg--60{
margin-top: -60px;
margin-bottom: -60px; }
.ph-lg--60{
padding-left: -60px;
padding-right: -60px; }
.mh-lg--60{
margin-left: -60px;
padding-right: -60px; }
.pa-lg--55{
padding: -55px; }
.ma-lg--55{
margin: -55px; }
.pv-lg--55{
padding-top: -55px;
padding-bottom: -55px; }
.mv-lg--55{
margin-top: -55px;
margin-bottom: -55px; }
.ph-lg--55{
padding-left: -55px;
padding-right: -55px; }
.mh-lg--55{
margin-left: -55px;
padding-right: -55px; }
.pa-lg--50{
padding: -50px; }
.ma-lg--50{
margin: -50px; }
.pv-lg--50{
padding-top: -50px;
padding-bottom: -50px; }
.mv-lg--50{
margin-top: -50px;
margin-bottom: -50px; }
.ph-lg--50{
padding-left: -50px;
padding-right: -50px; }
.mh-lg--50{
margin-left: -50px;
padding-right: -50px; }
.pa-lg--45{
padding: -45px; }
.ma-lg--45{
margin: -45px; }
.pv-lg--45{
padding-top: -45px;
padding-bottom: -45px; }
.mv-lg--45{
margin-top: -45px;
margin-bottom: -45px; }
.ph-lg--45{
padding-left: -45px;
padding-right: -45px; }
.mh-lg--45{
margin-left: -45px;
padding-right: -45px; }
.pa-lg--40{
padding: -40px; }
.ma-lg--40{
margin: -40px; }
.pv-lg--40{
padding-top: -40px;
padding-bottom: -40px; }
.mv-lg--40{
margin-top: -40px;
margin-bottom: -40px; }
.ph-lg--40{
padding-left: -40px;
padding-right: -40px; }
.mh-lg--40{
margin-left: -40px;
padding-right: -40px; }
.pa-lg--35{
padding: -35px; }
.ma-lg--35{
margin: -35px; }
.pv-lg--35{
padding-top: -35px;
padding-bottom: -35px; }
.mv-lg--35{
margin-top: -35px;
margin-bottom: -35px; }
.ph-lg--35{
padding-left: -35px;
padding-right: -35px; }
.mh-lg--35{
margin-left: -35px;
padding-right: -35px; }
.pa-lg--30{
padding: -30px; }
.ma-lg--30{
margin: -30px; }
.pv-lg--30{
padding-top: -30px;
padding-bottom: -30px; }
.mv-lg--30{
margin-top: -30px;
margin-bottom: -30px; }
.ph-lg--30{
padding-left: -30px;
padding-right: -30px; }
.mh-lg--30{
margin-left: -30px;
padding-right: -30px; }
.pa-lg--25{
padding: -25px; }
.ma-lg--25{
margin: -25px; }
.pv-lg--25{
padding-top: -25px;
padding-bottom: -25px; }
.mv-lg--25{
margin-top: -25px;
margin-bottom: -25px; }
.ph-lg--25{
padding-left: -25px;
padding-right: -25px; }
.mh-lg--25{
margin-left: -25px;
padding-right: -25px; }
.pa-lg--20{
padding: -20px; }
.ma-lg--20{
margin: -20px; }
.pv-lg--20{
padding-top: -20px;
padding-bottom: -20px; }
.mv-lg--20{
margin-top: -20px;
margin-bottom: -20px; }
.ph-lg--20{
padding-left: -20px;
padding-right: -20px; }
.mh-lg--20{
margin-left: -20px;
padding-right: -20px; }
.pa-lg--15{
padding: -15px; }
.ma-lg--15{
margin: -15px; }
.pv-lg--15{
padding-top: -15px;
padding-bottom: -15px; }
.mv-lg--15{
margin-top: -15px;
margin-bottom: -15px; }
.ph-lg--15{
padding-left: -15px;
padding-right: -15px; }
.mh-lg--15{
margin-left: -15px;
padding-right: -15px; }
.pa-lg--10{
padding: -10px; }
.ma-lg--10{
margin: -10px; }
.pv-lg--10{
padding-top: -10px;
padding-bottom: -10px; }
.mv-lg--10{
margin-top: -10px;
margin-bottom: -10px; }
.ph-lg--10{
padding-left: -10px;
padding-right: -10px; }
.mh-lg--10{
margin-left: -10px;
padding-right: -10px; }
.pa-lg--5{
padding: -5px; }
.ma-lg--5{
margin: -5px; }
.pv-lg--5{
padding-top: -5px;
padding-bottom: -5px; }
.mv-lg--5{
margin-top: -5px;
margin-bottom: -5px; }
.ph-lg--5{
padding-left: -5px;
padding-right: -5px; }
.mh-lg--5{
margin-left: -5px;
padding-right: -5px; }
.pa-lg-0{
padding: 0px; }
.ma-lg-0{
margin: 0px; }
.pv-lg-0{
padding-top: 0px;
padding-bottom: 0px; }
.mv-lg-0{
margin-top: 0px;
margin-bottom: 0px; }
.ph-lg-0{
padding-left: 0px;
padding-right: 0px; }
.mh-lg-0{
margin-left: 0px;
padding-right: 0px; }
.pa-lg-5{
padding: 5px; }
.ma-lg-5{
margin: 5px; }
.pv-lg-5{
padding-top: 5px;
padding-bottom: 5px; }
.mv-lg-5{
margin-top: 5px;
margin-bottom: 5px; }
.ph-lg-5{
padding-left: 5px;
padding-right: 5px; }
.mh-lg-5{
margin-left: 5px;
padding-right: 5px; }
.pa-lg-10{
padding: 10px; }
.ma-lg-10{
margin: 10px; }
.pv-lg-10{
padding-top: 10px;
padding-bottom: 10px; }
.mv-lg-10{
margin-top: 10px;
margin-bottom: 10px; }
.ph-lg-10{
padding-left: 10px;
padding-right: 10px; }
.mh-lg-10{
margin-left: 10px;
padding-right: 10px; }
.pa-lg-15{
padding: 15px; }
.ma-lg-15{
margin: 15px; }
.pv-lg-15{
padding-top: 15px;
padding-bottom: 15px; }
.mv-lg-15{
margin-top: 15px;
margin-bottom: 15px; }
.ph-lg-15{
padding-left: 15px;
padding-right: 15px; }
.mh-lg-15{
margin-left: 15px;
padding-right: 15px; }
.pa-lg-20{
padding: 20px; }
.ma-lg-20{
margin: 20px; }
.pv-lg-20{
padding-top: 20px;
padding-bottom: 20px; }
.mv-lg-20{
margin-top: 20px;
margin-bottom: 20px; }
.ph-lg-20{
padding-left: 20px;
padding-right: 20px; }
.mh-lg-20{
margin-left: 20px;
padding-right: 20px; }
.pa-lg-25{
padding: 25px; }
.ma-lg-25{
margin: 25px; }
.pv-lg-25{
padding-top: 25px;
padding-bottom: 25px; }
.mv-lg-25{
margin-top: 25px;
margin-bottom: 25px; }
.ph-lg-25{
padding-left: 25px;
padding-right: 25px; }
.mh-lg-25{
margin-left: 25px;
padding-right: 25px; }
.pa-lg-30{
padding: 30px; }
.ma-lg-30{
margin: 30px; }
.pv-lg-30{
padding-top: 30px;
padding-bottom: 30px; }
.mv-lg-30{
margin-top: 30px;
margin-bottom: 30px; }
.ph-lg-30{
padding-left: 30px;
padding-right: 30px; }
.mh-lg-30{
margin-left: 30px;
padding-right: 30px; }
.pa-lg-35{
padding: 35px; }
.ma-lg-35{
margin: 35px; }
.pv-lg-35{
padding-top: 35px;
padding-bottom: 35px; }
.mv-lg-35{
margin-top: 35px;
margin-bottom: 35px; }
.ph-lg-35{
padding-left: 35px;
padding-right: 35px; }
.mh-lg-35{
margin-left: 35px;
padding-right: 35px; }
.pa-lg-40{
padding: 40px; }
.ma-lg-40{
margin: 40px; }
.pv-lg-40{
padding-top: 40px;
padding-bottom: 40px; }
.mv-lg-40{
margin-top: 40px;
margin-bottom: 40px; }
.ph-lg-40{
padding-left: 40px;
padding-right: 40px; }
.mh-lg-40{
margin-left: 40px;
padding-right: 40px; }
.pa-lg-45{
padding: 45px; }
.ma-lg-45{
margin: 45px; }
.pv-lg-45{
padding-top: 45px;
padding-bottom: 45px; }
.mv-lg-45{
margin-top: 45px;
margin-bottom: 45px; }
.ph-lg-45{
padding-left: 45px;
padding-right: 45px; }
.mh-lg-45{
margin-left: 45px;
padding-right: 45px; }
.pa-lg-50{
padding: 50px; }
.ma-lg-50{
margin: 50px; }
.pv-lg-50{
padding-top: 50px;
padding-bottom: 50px; }
.mv-lg-50{
margin-top: 50px;
margin-bottom: 50px; }
.ph-lg-50{
padding-left: 50px;
padding-right: 50px; }
.mh-lg-50{
margin-left: 50px;
padding-right: 50px; }
.pa-lg-55{
padding: 55px; }
.ma-lg-55{
margin: 55px; }
.pv-lg-55{
padding-top: 55px;
padding-bottom: 55px; }
.mv-lg-55{
margin-top: 55px;
margin-bottom: 55px; }
.ph-lg-55{
padding-left: 55px;
padding-right: 55px; }
.mh-lg-55{
margin-left: 55px;
padding-right: 55px; }
.pa-lg-60{
padding: 60px; }
.ma-lg-60{
margin: 60px; }
.pv-lg-60{
padding-top: 60px;
padding-bottom: 60px; }
.mv-lg-60{
margin-top: 60px;
margin-bottom: 60px; }
.ph-lg-60{
padding-left: 60px;
padding-right: 60px; }
.mh-lg-60{
margin-left: 60px;
padding-right: 60px; }
.pa-lg-65{
padding: 65px; }
.ma-lg-65{
margin: 65px; }
.pv-lg-65{
padding-top: 65px;
padding-bottom: 65px; }
.mv-lg-65{
margin-top: 65px;
margin-bottom: 65px; }
.ph-lg-65{
padding-left: 65px;
padding-right: 65px; }
.mh-lg-65{
margin-left: 65px;
padding-right: 65px; }
.pa-lg-70{
padding: 70px; }
.ma-lg-70{
margin: 70px; }
.pv-lg-70{
padding-top: 70px;
padding-bottom: 70px; }
.mv-lg-70{
margin-top: 70px;
margin-bottom: 70px; }
.ph-lg-70{
padding-left: 70px;
padding-right: 70px; }
.mh-lg-70{
margin-left: 70px;
padding-right: 70px; }
.pa-lg-75{
padding: 75px; }
.ma-lg-75{
margin: 75px; }
.pv-lg-75{
padding-top: 75px;
padding-bottom: 75px; }
.mv-lg-75{
margin-top: 75px;
margin-bottom: 75px; }
.ph-lg-75{
padding-left: 75px;
padding-right: 75px; }
.mh-lg-75{
margin-left: 75px;
padding-right: 75px; }
.pa-lg-80{
padding: 80px; }
.ma-lg-80{
margin: 80px; }
.pv-lg-80{
padding-top: 80px;
padding-bottom: 80px; }
.mv-lg-80{
margin-top: 80px;
margin-bottom: 80px; }
.ph-lg-80{
padding-left: 80px;
padding-right: 80px; }
.mh-lg-80{
margin-left: 80px;
padding-right: 80px; }
.pa-lg-85{
padding: 85px; }
.ma-lg-85{
margin: 85px; }
.pv-lg-85{
padding-top: 85px;
padding-bottom: 85px; }
.mv-lg-85{
margin-top: 85px;
margin-bottom: 85px; }
.ph-lg-85{
padding-left: 85px;
padding-right: 85px; }
.mh-lg-85{
margin-left: 85px;
padding-right: 85px; }
.pa-lg-90{
padding: 90px; }
.ma-lg-90{
margin: 90px; }
.pv-lg-90{
padding-top: 90px;
padding-bottom: 90px; }
.mv-lg-90{
margin-top: 90px;
margin-bottom: 90px; }
.ph-lg-90{
padding-left: 90px;
padding-right: 90px; }
.mh-lg-90{
margin-left: 90px;
padding-right: 90px; }
.pa-lg-95{
padding: 95px; }
.ma-lg-95{
margin: 95px; }
.pv-lg-95{
padding-top: 95px;
padding-bottom: 95px; }
.mv-lg-95{
margin-top: 95px;
margin-bottom: 95px; }
.ph-lg-95{
padding-left: 95px;
padding-right: 95px; }
.mh-lg-95{
margin-left: 95px;
padding-right: 95px; }
.pa-lg-100{
padding: 100px; }
.ma-lg-100{
margin: 100px; }
.pv-lg-100{
padding-top: 100px;
padding-bottom: 100px; }
.mv-lg-100{
margin-top: 100px;
margin-bottom: 100px; }
.ph-lg-100{
padding-left: 100px;
padding-right: 100px; }
.mh-lg-100{
margin-left: 100px;
padding-right: 100px; }
.container{
max-width: 940px; }
.col-lg{
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-lg-1{
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-lg-2{
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-lg-3{
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-lg-4{
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-lg-5{
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-lg-6{
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-lg-7{
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-lg-8{
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-lg-9{
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-lg-10{
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-lg-11{
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-lg-12{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-lg-0{
right: auto; }
.pull-lg-1{
right: 8.33333%; }
.pull-lg-2{
right: 16.66667%; }
.pull-lg-3{
right: 25%; }
.pull-lg-4{
right: 33.33333%; }
.pull-lg-5{
right: 41.66667%; }
.pull-lg-6{
right: 50%; }
.pull-lg-7{
right: 58.33333%; }
.pull-lg-8{
right: 66.66667%; }
.pull-lg-9{
right: 75%; }
.pull-lg-10{
right: 83.33333%; }
.pull-lg-11{
right: 91.66667%; }
.pull-lg-12{
right: 100%; }
.push-lg-0{
left: auto; }
.push-lg-1{
left: 8.33333%; }
.push-lg-2{
left: 16.66667%; }
.push-lg-3{
left: 25%; }
.push-lg-4{
left: 33.33333%; }
.push-lg-5{
left: 41.66667%; }
.push-lg-6{
left: 50%; }
.push-lg-7{
left: 58.33333%; }
.push-lg-8{
left: 66.66667%; }
.push-lg-9{
left: 75%; }
.push-lg-10{
left: 83.33333%; }
.push-lg-11{
left: 91.66667%; }
.push-lg-12{
left: 100%; }
.offset-lg-0{
margin-left: 0%; }
.offset-lg-1{
margin-left: 8.33333%; }
.offset-lg-2{
margin-left: 16.66667%; }
.offset-lg-3{
margin-left: 25%; }
.offset-lg-4{
margin-left: 33.33333%; }
.offset-lg-5{
margin-left: 41.66667%; }
.offset-lg-6{
margin-left: 50%; }
.offset-lg-7{
margin-left: 58.33333%; }
.offset-lg-8{
margin-left: 66.66667%; }
.offset-lg-9{
margin-left: 75%; }
.offset-lg-10{
margin-left: 83.33333%; }
.offset-lg-11{
margin-left: 91.66667%; }
.site-breadcrumbs > .container.full-width{
max-width: 95%; }
.comments-area ul.children{
margin-left: 100px; }
.container.wide{
max-width: 95%; }
.container.full{
max-width: 100%; }
.container.full-no-paddings{
max-width: 100%;
padding: 0; }
.site-footer .container.wide{
max-width: 95%; }
.header-tools.layout-big .header-login > a.toggle .wishlist-count{
height: 22px;
line-height: 22px;
right: -16px;
padding: 0 6px; }
.body-boxed.header-overlap .site-header:not(.sticky-header){
max-width: 1200px; }
.site-header.has-margin-bottom{
margin-bottom: 60px; }
.site-header-vertical .social-links{
opacity: 1;
visibility: visible; }
.main-container > .container,
.main-container > .site-content{
padding-top: 60px; }
.header-tools.layout-big .header-minicart > a.toggle .minicart-count{
left: 30px;
height: 22px;
min-width: 22px;
line-height: 22px;
padding: 0 7px; }
.header-tools.layout-only-mini-cart .header-minicart > a.toggle i{
font-size: 34px; }
.header-tools.layout-only-mini-cart .header-minicart i,
.header-tools.layout-only-mini-cart .header-minicart .minicart-text{
display: inline-block;
vertical-align: middle; }
.header-tools.layout-only-mini-cart .header-minicart .minicart-text{
text-align: right; }
.header-tools.layout-only-mini-cart .header-minicart .minicart-count{
font-size: 14px;
height: 22px;
min-width: 22px;
line-height: 22px;
top: -4px;
right: 90%;
left: auto;
border-radius: 11px;
padding: 0 7px; }
.header-tools.layout-only-mini-cart .header-minicart .minicart-title{
display: block;
font-size: 14px;
line-height: 1.5;
text-transform: uppercase;
letter-spacing: .05em; }
.header-tools.layout-only-mini-cart .header-minicart .minicart-total{
display: block;
font-size: 16px;
line-height: 1.5;
font-weight: 600;
color: #333333; }
.page-title{
padding: 0;
background-attachment: fixed; }
.page-title.has-margin-bottom{
margin-bottom: 60px; }
.page-title.no-parallax{
background-attachment: initial; }
.page-title h1{
font-size: 48px; }
.switcher + .topbar-text{
margin-left: 20px; }
.topbar-switchers-right .switcher + .topbar-text{
padding-left: 0;
padding-right: 20px; }
.topbar .switcher-menu + .topbar-text,
.topbar .social-links + .topbar-text{
padding-left: 20px; }
.header-tools.layout-big .header-wishlist > a.toggle .wishlist-count{
left: 30px;
height: 22px;
min-width: 22px;
line-height: 22px;
padding: 0 6px; }
.shop-filter{
text-align: right; }
.shop-filter .nice-select .list{
left: auto;
right: 0; }
.col-switcher a[data-col="4"]{
display: inline-block; }
.archive.woocommerce .main-container .container.wide .has-no-sidebars .col-switcher a[data-col="2"]{
display: none; }
.archive.woocommerce .main-container .container.wide .col-switcher a[data-col="5"]{
display: inline-block; }
.woocommerce-checkout form.woocommerce-checkout::after{
clear: both;
content: "";
display: table; }
.woocommerce-checkout form.woocommerce-checkout .col2-set{
display: inline-block;
width: 50%;
float: left;
margin-right: 20px; }
.woocommerce-checkout form.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout form.woocommerce-checkout .col2-set .col-2{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.woocommerce-checkout #order_review_heading{
float: right;
width: 49%; }
.woocommerce-checkout .woocommerce-checkout-review-order{
float: right;
width: 49%;
background-color: #f7f7f7;
padding: 30px; }
.product-loop.extra-small-product .product-buttons{
display: block; }
.product-loop.extra-small-product .product-buttons .quick-view-btn,
.product-loop.extra-small-product .product-buttons .compare-btn{
display: none; }
.product-loop.extra-small-product .product-buttons .add-to-cart-btn{
width: 100%; }
#woo-quick-view{
display: block; }
.woocommerce.single-product .product.product-layout-fullwidth > .container.full-width{
max-width: 95%; }
.woocommerce.single-product .product.product-layout-fullwidth .entry-summary{
max-width: 600px;
padding-left: 50px; }
.woocommerce.single-product .page-title + .site-content .product.product-layout-background .background-wrapper,
.woocommerce.single-product .page-title + .site-content .product.product-layout-background-fullwidth .background-wrapper{
margin-top: -60px;
padding-top: 60px; }
.woocommerce.single-product .product.product-layout-background .background-wrapper,
.woocommerce.single-product .product.product-layout-background-fullwidth .background-wrapper{
padding-top: 120px; }
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2{
margin: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.amely-banner-grid-6 .banners.banners-column-1{
width: 50%; }
.amely-banner-grid-6 .banners.banners-column-2, .amely-banner-grid-6 .banners.banners-column-3{
width: 25%; }
.amely-banner-grid-6v2 .banners-wrap{
margin: 0; }
.amely-banner-grid-6v2 .banners{
width: 50%;
padding: 0; }
.amely-blog .slick-arrow.post-carousel-arrow{
opacity: 0;
visibility: hidden; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-next{
right: -50px; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-prev{
left: -50px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow{
opacity: .6;
visibility: visible; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-next{
right: -30px; }
.amely-blog:hover .slick-arrow.post-carousel-arrow.slick-prev{
left: -30px; }
.showcase-product .products{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); }
body.onepage-scroll{
overflow: hidden !important; }
.vc_row.vc_row-amely-wide{
opacity: 0;
transition: all .5s ease-in-out !important; }
.vc_row.vc_row-amely-wide.row-calculated{
opacity: 1; }
.amely-banner3.banner-collection .banner-content .banner-text h3{
font-size: 72px; }
.megamenu-home .mega-menu-content{
padding: 30px 0 15px 40px !important; }
.slick-slider:hover .slick-arrow{
opacity: .6;
visibility: visible; }
.slick-slider:hover .slick-arrow.slick-next{
right: 0; }
.slick-slider:hover .slick-arrow.slick-prev{
left: 0; }
.vc_row[data-vc-stretch-content="true"] .slick-slider:hover .slick-arrow.slick-prev{
left: 15px; }
.vc_row[data-vc-stretch-content="true"] .slick-slider:hover .slick-arrow.slick-next{
right: 15px; }
button.slick-arrow, .slick-arrow.amely-button{
opacity: 0;
visibility: hidden; }
button.slick-arrow.slick-next, .slick-arrow.slick-next.amely-button{
right: -15px; }
button.slick-arrow.slick-prev, .slick-arrow.slick-prev.amely-button{
left: -15px; } }
@media (min-width: 1200px) and (max-width: 1440px){
.site-header.header-split .site-menu .menu > ul > li,
.site-header.header-split .site-menu .menu > li{
padding: 0 20px; }
.site-header.header-menu-left .site-menu .menu > ul > li,
.site-header.header-menu-left .site-menu .menu > li{
padding: 0 20px; } }
@media (min-width: 1200px){
.flex-xl-first{
-ms-flex-order: -1;
order: -1; }
.flex-xl-last{
-ms-flex-order: 1;
order: 1; }
.flex-xl-unordered{
-ms-flex-order: 0;
order: 0; }
.flex-items-xl-top{
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-xl-middle{
-ms-flex-align: center;
align-items: center; }
.flex-items-xl-bottom{
-ms-flex-align: end;
align-items: flex-end; }
.flex-xl-top{
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-xl-middle{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-xl-bottom{
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-xl-left{
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-xl-center{
-ms-flex-pack: center;
justify-content: center; }
.flex-items-xl-right{
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-xl-around{
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-xl-between{
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-xl-left{
float: left !important; }
.pull-xl-right{
float: right !important; }
.pull-xl-none{
float: none !important; }
.text-xl-left{
text-align: left !important; }
.text-xl-right{
text-align: right !important; }
.text-xl-center{
text-align: center !important; }
.hidden-xl-up{
display: none !important; }
.col-xl-is-5{
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-xl-pull-is-5{
right: 20%; }
.col-xl-push-is-5{
left: 20%; }
.col-xl-offset-is-5{
margin-left: 20%; }
.pt-xl--100{
padding-top: -100px; }
.pt-xl--100-i{
padding-top: -100px !important; }
.mt-xl--100{
margin-top: -100px; }
.mt-xl--100-i{
margin-top: -100px !important; }
.pt-xl--95{
padding-top: -95px; }
.pt-xl--95-i{
padding-top: -95px !important; }
.mt-xl--95{
margin-top: -95px; }
.mt-xl--95-i{
margin-top: -95px !important; }
.pt-xl--90{
padding-top: -90px; }
.pt-xl--90-i{
padding-top: -90px !important; }
.mt-xl--90{
margin-top: -90px; }
.mt-xl--90-i{
margin-top: -90px !important; }
.pt-xl--85{
padding-top: -85px; }
.pt-xl--85-i{
padding-top: -85px !important; }
.mt-xl--85{
margin-top: -85px; }
.mt-xl--85-i{
margin-top: -85px !important; }
.pt-xl--80{
padding-top: -80px; }
.pt-xl--80-i{
padding-top: -80px !important; }
.mt-xl--80{
margin-top: -80px; }
.mt-xl--80-i{
margin-top: -80px !important; }
.pt-xl--75{
padding-top: -75px; }
.pt-xl--75-i{
padding-top: -75px !important; }
.mt-xl--75{
margin-top: -75px; }
.mt-xl--75-i{
margin-top: -75px !important; }
.pt-xl--70{
padding-top: -70px; }
.pt-xl--70-i{
padding-top: -70px !important; }
.mt-xl--70{
margin-top: -70px; }
.mt-xl--70-i{
margin-top: -70px !important; }
.pt-xl--65{
padding-top: -65px; }
.pt-xl--65-i{
padding-top: -65px !important; }
.mt-xl--65{
margin-top: -65px; }
.mt-xl--65-i{
margin-top: -65px !important; }
.pt-xl--60{
padding-top: -60px; }
.pt-xl--60-i{
padding-top: -60px !important; }
.mt-xl--60{
margin-top: -60px; }
.mt-xl--60-i{
margin-top: -60px !important; }
.pt-xl--55{
padding-top: -55px; }
.pt-xl--55-i{
padding-top: -55px !important; }
.mt-xl--55{
margin-top: -55px; }
.mt-xl--55-i{
margin-top: -55px !important; }
.pt-xl--50{
padding-top: -50px; }
.pt-xl--50-i{
padding-top: -50px !important; }
.mt-xl--50{
margin-top: -50px; }
.mt-xl--50-i{
margin-top: -50px !important; }
.pt-xl--45{
padding-top: -45px; }
.pt-xl--45-i{
padding-top: -45px !important; }
.mt-xl--45{
margin-top: -45px; }
.mt-xl--45-i{
margin-top: -45px !important; }
.pt-xl--40{
padding-top: -40px; }
.pt-xl--40-i{
padding-top: -40px !important; }
.mt-xl--40{
margin-top: -40px; }
.mt-xl--40-i{
margin-top: -40px !important; }
.pt-xl--35{
padding-top: -35px; }
.pt-xl--35-i{
padding-top: -35px !important; }
.mt-xl--35{
margin-top: -35px; }
.mt-xl--35-i{
margin-top: -35px !important; }
.pt-xl--30{
padding-top: -30px; }
.pt-xl--30-i{
padding-top: -30px !important; }
.mt-xl--30{
margin-top: -30px; }
.mt-xl--30-i{
margin-top: -30px !important; }
.pt-xl--25{
padding-top: -25px; }
.pt-xl--25-i{
padding-top: -25px !important; }
.mt-xl--25{
margin-top: -25px; }
.mt-xl--25-i{
margin-top: -25px !important; }
.pt-xl--20{
padding-top: -20px; }
.pt-xl--20-i{
padding-top: -20px !important; }
.mt-xl--20{
margin-top: -20px; }
.mt-xl--20-i{
margin-top: -20px !important; }
.pt-xl--15{
padding-top: -15px; }
.pt-xl--15-i{
padding-top: -15px !important; }
.mt-xl--15{
margin-top: -15px; }
.mt-xl--15-i{
margin-top: -15px !important; }
.pt-xl--10{
padding-top: -10px; }
.pt-xl--10-i{
padding-top: -10px !important; }
.mt-xl--10{
margin-top: -10px; }
.mt-xl--10-i{
margin-top: -10px !important; }
.pt-xl--5{
padding-top: -5px; }
.pt-xl--5-i{
padding-top: -5px !important; }
.mt-xl--5{
margin-top: -5px; }
.mt-xl--5-i{
margin-top: -5px !important; }
.pt-xl-0{
padding-top: 0px; }
.pt-xl-0-i{
padding-top: 0px !important; }
.mt-xl-0{
margin-top: 0px; }
.mt-xl-0-i{
margin-top: 0px !important; }
.pt-xl-5{
padding-top: 5px; }
.pt-xl-5-i{
padding-top: 5px !important; }
.mt-xl-5{
margin-top: 5px; }
.mt-xl-5-i{
margin-top: 5px !important; }
.pt-xl-10{
padding-top: 10px; }
.pt-xl-10-i{
padding-top: 10px !important; }
.mt-xl-10{
margin-top: 10px; }
.mt-xl-10-i{
margin-top: 10px !important; }
.pt-xl-15{
padding-top: 15px; }
.pt-xl-15-i{
padding-top: 15px !important; }
.mt-xl-15{
margin-top: 15px; }
.mt-xl-15-i{
margin-top: 15px !important; }
.pt-xl-20{
padding-top: 20px; }
.pt-xl-20-i{
padding-top: 20px !important; }
.mt-xl-20{
margin-top: 20px; }
.mt-xl-20-i{
margin-top: 20px !important; }
.pt-xl-25{
padding-top: 25px; }
.pt-xl-25-i{
padding-top: 25px !important; }
.mt-xl-25{
margin-top: 25px; }
.mt-xl-25-i{
margin-top: 25px !important; }
.pt-xl-30{
padding-top: 30px; }
.pt-xl-30-i{
padding-top: 30px !important; }
.mt-xl-30{
margin-top: 30px; }
.mt-xl-30-i{
margin-top: 30px !important; }
.pt-xl-35{
padding-top: 35px; }
.pt-xl-35-i{
padding-top: 35px !important; }
.mt-xl-35{
margin-top: 35px; }
.mt-xl-35-i{
margin-top: 35px !important; }
.pt-xl-40{
padding-top: 40px; }
.pt-xl-40-i{
padding-top: 40px !important; }
.mt-xl-40{
margin-top: 40px; }
.mt-xl-40-i{
margin-top: 40px !important; }
.pt-xl-45{
padding-top: 45px; }
.pt-xl-45-i{
padding-top: 45px !important; }
.mt-xl-45{
margin-top: 45px; }
.mt-xl-45-i{
margin-top: 45px !important; }
.pt-xl-50{
padding-top: 50px; }
.pt-xl-50-i{
padding-top: 50px !important; }
.mt-xl-50{
margin-top: 50px; }
.mt-xl-50-i{
margin-top: 50px !important; }
.pt-xl-55{
padding-top: 55px; }
.pt-xl-55-i{
padding-top: 55px !important; }
.mt-xl-55{
margin-top: 55px; }
.mt-xl-55-i{
margin-top: 55px !important; }
.pt-xl-60{
padding-top: 60px; }
.pt-xl-60-i{
padding-top: 60px !important; }
.mt-xl-60{
margin-top: 60px; }
.mt-xl-60-i{
margin-top: 60px !important; }
.pt-xl-65{
padding-top: 65px; }
.pt-xl-65-i{
padding-top: 65px !important; }
.mt-xl-65{
margin-top: 65px; }
.mt-xl-65-i{
margin-top: 65px !important; }
.pt-xl-70{
padding-top: 70px; }
.pt-xl-70-i{
padding-top: 70px !important; }
.mt-xl-70{
margin-top: 70px; }
.mt-xl-70-i{
margin-top: 70px !important; }
.pt-xl-75{
padding-top: 75px; }
.pt-xl-75-i{
padding-top: 75px !important; }
.mt-xl-75{
margin-top: 75px; }
.mt-xl-75-i{
margin-top: 75px !important; }
.pt-xl-80{
padding-top: 80px; }
.pt-xl-80-i{
padding-top: 80px !important; }
.mt-xl-80{
margin-top: 80px; }
.mt-xl-80-i{
margin-top: 80px !important; }
.pt-xl-85{
padding-top: 85px; }
.pt-xl-85-i{
padding-top: 85px !important; }
.mt-xl-85{
margin-top: 85px; }
.mt-xl-85-i{
margin-top: 85px !important; }
.pt-xl-90{
padding-top: 90px; }
.pt-xl-90-i{
padding-top: 90px !important; }
.mt-xl-90{
margin-top: 90px; }
.mt-xl-90-i{
margin-top: 90px !important; }
.pt-xl-95{
padding-top: 95px; }
.pt-xl-95-i{
padding-top: 95px !important; }
.mt-xl-95{
margin-top: 95px; }
.mt-xl-95-i{
margin-top: 95px !important; }
.pt-xl-100{
padding-top: 100px; }
.pt-xl-100-i{
padding-top: 100px !important; }
.mt-xl-100{
margin-top: 100px; }
.mt-xl-100-i{
margin-top: 100px !important; }
.pr-xl--100{
padding-right: -100px; }
.pr-xl--100-i{
padding-right: -100px !important; }
.mr-xl--100{
margin-right: -100px; }
.mr-xl--100-i{
margin-right: -100px !important; }
.pr-xl--95{
padding-right: -95px; }
.pr-xl--95-i{
padding-right: -95px !important; }
.mr-xl--95{
margin-right: -95px; }
.mr-xl--95-i{
margin-right: -95px !important; }
.pr-xl--90{
padding-right: -90px; }
.pr-xl--90-i{
padding-right: -90px !important; }
.mr-xl--90{
margin-right: -90px; }
.mr-xl--90-i{
margin-right: -90px !important; }
.pr-xl--85{
padding-right: -85px; }
.pr-xl--85-i{
padding-right: -85px !important; }
.mr-xl--85{
margin-right: -85px; }
.mr-xl--85-i{
margin-right: -85px !important; }
.pr-xl--80{
padding-right: -80px; }
.pr-xl--80-i{
padding-right: -80px !important; }
.mr-xl--80{
margin-right: -80px; }
.mr-xl--80-i{
margin-right: -80px !important; }
.pr-xl--75{
padding-right: -75px; }
.pr-xl--75-i{
padding-right: -75px !important; }
.mr-xl--75{
margin-right: -75px; }
.mr-xl--75-i{
margin-right: -75px !important; }
.pr-xl--70{
padding-right: -70px; }
.pr-xl--70-i{
padding-right: -70px !important; }
.mr-xl--70{
margin-right: -70px; }
.mr-xl--70-i{
margin-right: -70px !important; }
.pr-xl--65{
padding-right: -65px; }
.pr-xl--65-i{
padding-right: -65px !important; }
.mr-xl--65{
margin-right: -65px; }
.mr-xl--65-i{
margin-right: -65px !important; }
.pr-xl--60{
padding-right: -60px; }
.pr-xl--60-i{
padding-right: -60px !important; }
.mr-xl--60{
margin-right: -60px; }
.mr-xl--60-i{
margin-right: -60px !important; }
.pr-xl--55{
padding-right: -55px; }
.pr-xl--55-i{
padding-right: -55px !important; }
.mr-xl--55{
margin-right: -55px; }
.mr-xl--55-i{
margin-right: -55px !important; }
.pr-xl--50{
padding-right: -50px; }
.pr-xl--50-i{
padding-right: -50px !important; }
.mr-xl--50{
margin-right: -50px; }
.mr-xl--50-i{
margin-right: -50px !important; }
.pr-xl--45{
padding-right: -45px; }
.pr-xl--45-i{
padding-right: -45px !important; }
.mr-xl--45{
margin-right: -45px; }
.mr-xl--45-i{
margin-right: -45px !important; }
.pr-xl--40{
padding-right: -40px; }
.pr-xl--40-i{
padding-right: -40px !important; }
.mr-xl--40{
margin-right: -40px; }
.mr-xl--40-i{
margin-right: -40px !important; }
.pr-xl--35{
padding-right: -35px; }
.pr-xl--35-i{
padding-right: -35px !important; }
.mr-xl--35{
margin-right: -35px; }
.mr-xl--35-i{
margin-right: -35px !important; }
.pr-xl--30{
padding-right: -30px; }
.pr-xl--30-i{
padding-right: -30px !important; }
.mr-xl--30{
margin-right: -30px; }
.mr-xl--30-i{
margin-right: -30px !important; }
.pr-xl--25{
padding-right: -25px; }
.pr-xl--25-i{
padding-right: -25px !important; }
.mr-xl--25{
margin-right: -25px; }
.mr-xl--25-i{
margin-right: -25px !important; }
.pr-xl--20{
padding-right: -20px; }
.pr-xl--20-i{
padding-right: -20px !important; }
.mr-xl--20{
margin-right: -20px; }
.mr-xl--20-i{
margin-right: -20px !important; }
.pr-xl--15{
padding-right: -15px; }
.pr-xl--15-i{
padding-right: -15px !important; }
.mr-xl--15{
margin-right: -15px; }
.mr-xl--15-i{
margin-right: -15px !important; }
.pr-xl--10{
padding-right: -10px; }
.pr-xl--10-i{
padding-right: -10px !important; }
.mr-xl--10{
margin-right: -10px; }
.mr-xl--10-i{
margin-right: -10px !important; }
.pr-xl--5{
padding-right: -5px; }
.pr-xl--5-i{
padding-right: -5px !important; }
.mr-xl--5{
margin-right: -5px; }
.mr-xl--5-i{
margin-right: -5px !important; }
.pr-xl-0{
padding-right: 0px; }
.pr-xl-0-i{
padding-right: 0px !important; }
.mr-xl-0{
margin-right: 0px; }
.mr-xl-0-i{
margin-right: 0px !important; }
.pr-xl-5{
padding-right: 5px; }
.pr-xl-5-i{
padding-right: 5px !important; }
.mr-xl-5{
margin-right: 5px; }
.mr-xl-5-i{
margin-right: 5px !important; }
.pr-xl-10{
padding-right: 10px; }
.pr-xl-10-i{
padding-right: 10px !important; }
.mr-xl-10{
margin-right: 10px; }
.mr-xl-10-i{
margin-right: 10px !important; }
.pr-xl-15{
padding-right: 15px; }
.pr-xl-15-i{
padding-right: 15px !important; }
.mr-xl-15{
margin-right: 15px; }
.mr-xl-15-i{
margin-right: 15px !important; }
.pr-xl-20{
padding-right: 20px; }
.pr-xl-20-i{
padding-right: 20px !important; }
.mr-xl-20{
margin-right: 20px; }
.mr-xl-20-i{
margin-right: 20px !important; }
.pr-xl-25{
padding-right: 25px; }
.pr-xl-25-i{
padding-right: 25px !important; }
.mr-xl-25{
margin-right: 25px; }
.mr-xl-25-i{
margin-right: 25px !important; }
.pr-xl-30{
padding-right: 30px; }
.pr-xl-30-i{
padding-right: 30px !important; }
.mr-xl-30{
margin-right: 30px; }
.mr-xl-30-i{
margin-right: 30px !important; }
.pr-xl-35{
padding-right: 35px; }
.pr-xl-35-i{
padding-right: 35px !important; }
.mr-xl-35{
margin-right: 35px; }
.mr-xl-35-i{
margin-right: 35px !important; }
.pr-xl-40{
padding-right: 40px; }
.pr-xl-40-i{
padding-right: 40px !important; }
.mr-xl-40{
margin-right: 40px; }
.mr-xl-40-i{
margin-right: 40px !important; }
.pr-xl-45{
padding-right: 45px; }
.pr-xl-45-i{
padding-right: 45px !important; }
.mr-xl-45{
margin-right: 45px; }
.mr-xl-45-i{
margin-right: 45px !important; }
.pr-xl-50{
padding-right: 50px; }
.pr-xl-50-i{
padding-right: 50px !important; }
.mr-xl-50{
margin-right: 50px; }
.mr-xl-50-i{
margin-right: 50px !important; }
.pr-xl-55{
padding-right: 55px; }
.pr-xl-55-i{
padding-right: 55px !important; }
.mr-xl-55{
margin-right: 55px; }
.mr-xl-55-i{
margin-right: 55px !important; }
.pr-xl-60{
padding-right: 60px; }
.pr-xl-60-i{
padding-right: 60px !important; }
.mr-xl-60{
margin-right: 60px; }
.mr-xl-60-i{
margin-right: 60px !important; }
.pr-xl-65{
padding-right: 65px; }
.pr-xl-65-i{
padding-right: 65px !important; }
.mr-xl-65{
margin-right: 65px; }
.mr-xl-65-i{
margin-right: 65px !important; }
.pr-xl-70{
padding-right: 70px; }
.pr-xl-70-i{
padding-right: 70px !important; }
.mr-xl-70{
margin-right: 70px; }
.mr-xl-70-i{
margin-right: 70px !important; }
.pr-xl-75{
padding-right: 75px; }
.pr-xl-75-i{
padding-right: 75px !important; }
.mr-xl-75{
margin-right: 75px; }
.mr-xl-75-i{
margin-right: 75px !important; }
.pr-xl-80{
padding-right: 80px; }
.pr-xl-80-i{
padding-right: 80px !important; }
.mr-xl-80{
margin-right: 80px; }
.mr-xl-80-i{
margin-right: 80px !important; }
.pr-xl-85{
padding-right: 85px; }
.pr-xl-85-i{
padding-right: 85px !important; }
.mr-xl-85{
margin-right: 85px; }
.mr-xl-85-i{
margin-right: 85px !important; }
.pr-xl-90{
padding-right: 90px; }
.pr-xl-90-i{
padding-right: 90px !important; }
.mr-xl-90{
margin-right: 90px; }
.mr-xl-90-i{
margin-right: 90px !important; }
.pr-xl-95{
padding-right: 95px; }
.pr-xl-95-i{
padding-right: 95px !important; }
.mr-xl-95{
margin-right: 95px; }
.mr-xl-95-i{
margin-right: 95px !important; }
.pr-xl-100{
padding-right: 100px; }
.pr-xl-100-i{
padding-right: 100px !important; }
.mr-xl-100{
margin-right: 100px; }
.mr-xl-100-i{
margin-right: 100px !important; }
.pb-xl--100{
padding-bottom: -100px; }
.pb-xl--100-i{
padding-bottom: -100px !important; }
.mb-xl--100{
margin-bottom: -100px; }
.mb-xl--100-i{
margin-bottom: -100px !important; }
.pb-xl--95{
padding-bottom: -95px; }
.pb-xl--95-i{
padding-bottom: -95px !important; }
.mb-xl--95{
margin-bottom: -95px; }
.mb-xl--95-i{
margin-bottom: -95px !important; }
.pb-xl--90{
padding-bottom: -90px; }
.pb-xl--90-i{
padding-bottom: -90px !important; }
.mb-xl--90{
margin-bottom: -90px; }
.mb-xl--90-i{
margin-bottom: -90px !important; }
.pb-xl--85{
padding-bottom: -85px; }
.pb-xl--85-i{
padding-bottom: -85px !important; }
.mb-xl--85{
margin-bottom: -85px; }
.mb-xl--85-i{
margin-bottom: -85px !important; }
.pb-xl--80{
padding-bottom: -80px; }
.pb-xl--80-i{
padding-bottom: -80px !important; }
.mb-xl--80{
margin-bottom: -80px; }
.mb-xl--80-i{
margin-bottom: -80px !important; }
.pb-xl--75{
padding-bottom: -75px; }
.pb-xl--75-i{
padding-bottom: -75px !important; }
.mb-xl--75{
margin-bottom: -75px; }
.mb-xl--75-i{
margin-bottom: -75px !important; }
.pb-xl--70{
padding-bottom: -70px; }
.pb-xl--70-i{
padding-bottom: -70px !important; }
.mb-xl--70{
margin-bottom: -70px; }
.mb-xl--70-i{
margin-bottom: -70px !important; }
.pb-xl--65{
padding-bottom: -65px; }
.pb-xl--65-i{
padding-bottom: -65px !important; }
.mb-xl--65{
margin-bottom: -65px; }
.mb-xl--65-i{
margin-bottom: -65px !important; }
.pb-xl--60{
padding-bottom: -60px; }
.pb-xl--60-i{
padding-bottom: -60px !important; }
.mb-xl--60{
margin-bottom: -60px; }
.mb-xl--60-i{
margin-bottom: -60px !important; }
.pb-xl--55{
padding-bottom: -55px; }
.pb-xl--55-i{
padding-bottom: -55px !important; }
.mb-xl--55{
margin-bottom: -55px; }
.mb-xl--55-i{
margin-bottom: -55px !important; }
.pb-xl--50{
padding-bottom: -50px; }
.pb-xl--50-i{
padding-bottom: -50px !important; }
.mb-xl--50{
margin-bottom: -50px; }
.mb-xl--50-i{
margin-bottom: -50px !important; }
.pb-xl--45{
padding-bottom: -45px; }
.pb-xl--45-i{
padding-bottom: -45px !important; }
.mb-xl--45{
margin-bottom: -45px; }
.mb-xl--45-i{
margin-bottom: -45px !important; }
.pb-xl--40{
padding-bottom: -40px; }
.pb-xl--40-i{
padding-bottom: -40px !important; }
.mb-xl--40{
margin-bottom: -40px; }
.mb-xl--40-i{
margin-bottom: -40px !important; }
.pb-xl--35{
padding-bottom: -35px; }
.pb-xl--35-i{
padding-bottom: -35px !important; }
.mb-xl--35{
margin-bottom: -35px; }
.mb-xl--35-i{
margin-bottom: -35px !important; }
.pb-xl--30{
padding-bottom: -30px; }
.pb-xl--30-i{
padding-bottom: -30px !important; }
.mb-xl--30{
margin-bottom: -30px; }
.mb-xl--30-i{
margin-bottom: -30px !important; }
.pb-xl--25{
padding-bottom: -25px; }
.pb-xl--25-i{
padding-bottom: -25px !important; }
.mb-xl--25{
margin-bottom: -25px; }
.mb-xl--25-i{
margin-bottom: -25px !important; }
.pb-xl--20{
padding-bottom: -20px; }
.pb-xl--20-i{
padding-bottom: -20px !important; }
.mb-xl--20{
margin-bottom: -20px; }
.mb-xl--20-i{
margin-bottom: -20px !important; }
.pb-xl--15{
padding-bottom: -15px; }
.pb-xl--15-i{
padding-bottom: -15px !important; }
.mb-xl--15{
margin-bottom: -15px; }
.mb-xl--15-i{
margin-bottom: -15px !important; }
.pb-xl--10{
padding-bottom: -10px; }
.pb-xl--10-i{
padding-bottom: -10px !important; }
.mb-xl--10{
margin-bottom: -10px; }
.mb-xl--10-i{
margin-bottom: -10px !important; }
.pb-xl--5{
padding-bottom: -5px; }
.pb-xl--5-i{
padding-bottom: -5px !important; }
.mb-xl--5{
margin-bottom: -5px; }
.mb-xl--5-i{
margin-bottom: -5px !important; }
.pb-xl-0{
padding-bottom: 0px; }
.pb-xl-0-i{
padding-bottom: 0px !important; }
.mb-xl-0{
margin-bottom: 0px; }
.mb-xl-0-i{
margin-bottom: 0px !important; }
.pb-xl-5{
padding-bottom: 5px; }
.pb-xl-5-i{
padding-bottom: 5px !important; }
.mb-xl-5{
margin-bottom: 5px; }
.mb-xl-5-i{
margin-bottom: 5px !important; }
.pb-xl-10{
padding-bottom: 10px; }
.pb-xl-10-i{
padding-bottom: 10px !important; }
.mb-xl-10{
margin-bottom: 10px; }
.mb-xl-10-i{
margin-bottom: 10px !important; }
.pb-xl-15{
padding-bottom: 15px; }
.pb-xl-15-i{
padding-bottom: 15px !important; }
.mb-xl-15{
margin-bottom: 15px; }
.mb-xl-15-i{
margin-bottom: 15px !important; }
.pb-xl-20{
padding-bottom: 20px; }
.pb-xl-20-i{
padding-bottom: 20px !important; }
.mb-xl-20{
margin-bottom: 20px; }
.mb-xl-20-i{
margin-bottom: 20px !important; }
.pb-xl-25{
padding-bottom: 25px; }
.pb-xl-25-i{
padding-bottom: 25px !important; }
.mb-xl-25{
margin-bottom: 25px; }
.mb-xl-25-i{
margin-bottom: 25px !important; }
.pb-xl-30{
padding-bottom: 30px; }
.pb-xl-30-i{
padding-bottom: 30px !important; }
.mb-xl-30{
margin-bottom: 30px; }
.mb-xl-30-i{
margin-bottom: 30px !important; }
.pb-xl-35{
padding-bottom: 35px; }
.pb-xl-35-i{
padding-bottom: 35px !important; }
.mb-xl-35{
margin-bottom: 35px; }
.mb-xl-35-i{
margin-bottom: 35px !important; }
.pb-xl-40{
padding-bottom: 40px; }
.pb-xl-40-i{
padding-bottom: 40px !important; }
.mb-xl-40{
margin-bottom: 40px; }
.mb-xl-40-i{
margin-bottom: 40px !important; }
.pb-xl-45{
padding-bottom: 45px; }
.pb-xl-45-i{
padding-bottom: 45px !important; }
.mb-xl-45{
margin-bottom: 45px; }
.mb-xl-45-i{
margin-bottom: 45px !important; }
.pb-xl-50{
padding-bottom: 50px; }
.pb-xl-50-i{
padding-bottom: 50px !important; }
.mb-xl-50{
margin-bottom: 50px; }
.mb-xl-50-i{
margin-bottom: 50px !important; }
.pb-xl-55{
padding-bottom: 55px; }
.pb-xl-55-i{
padding-bottom: 55px !important; }
.mb-xl-55{
margin-bottom: 55px; }
.mb-xl-55-i{
margin-bottom: 55px !important; }
.pb-xl-60{
padding-bottom: 60px; }
.pb-xl-60-i{
padding-bottom: 60px !important; }
.mb-xl-60{
margin-bottom: 60px; }
.mb-xl-60-i{
margin-bottom: 60px !important; }
.pb-xl-65{
padding-bottom: 65px; }
.pb-xl-65-i{
padding-bottom: 65px !important; }
.mb-xl-65{
margin-bottom: 65px; }
.mb-xl-65-i{
margin-bottom: 65px !important; }
.pb-xl-70{
padding-bottom: 70px; }
.pb-xl-70-i{
padding-bottom: 70px !important; }
.mb-xl-70{
margin-bottom: 70px; }
.mb-xl-70-i{
margin-bottom: 70px !important; }
.pb-xl-75{
padding-bottom: 75px; }
.pb-xl-75-i{
padding-bottom: 75px !important; }
.mb-xl-75{
margin-bottom: 75px; }
.mb-xl-75-i{
margin-bottom: 75px !important; }
.pb-xl-80{
padding-bottom: 80px; }
.pb-xl-80-i{
padding-bottom: 80px !important; }
.mb-xl-80{
margin-bottom: 80px; }
.mb-xl-80-i{
margin-bottom: 80px !important; }
.pb-xl-85{
padding-bottom: 85px; }
.pb-xl-85-i{
padding-bottom: 85px !important; }
.mb-xl-85{
margin-bottom: 85px; }
.mb-xl-85-i{
margin-bottom: 85px !important; }
.pb-xl-90{
padding-bottom: 90px; }
.pb-xl-90-i{
padding-bottom: 90px !important; }
.mb-xl-90{
margin-bottom: 90px; }
.mb-xl-90-i{
margin-bottom: 90px !important; }
.pb-xl-95{
padding-bottom: 95px; }
.pb-xl-95-i{
padding-bottom: 95px !important; }
.mb-xl-95{
margin-bottom: 95px; }
.mb-xl-95-i{
margin-bottom: 95px !important; }
.pb-xl-100{
padding-bottom: 100px; }
.pb-xl-100-i{
padding-bottom: 100px !important; }
.mb-xl-100{
margin-bottom: 100px; }
.mb-xl-100-i{
margin-bottom: 100px !important; }
.pl-xl--100{
padding-left: -100px; }
.pl-xl--100-i{
padding-left: -100px !important; }
.ml-xl--100{
margin-left: -100px; }
.ml-xl--100-i{
margin-left: -100px !important; }
.pl-xl--95{
padding-left: -95px; }
.pl-xl--95-i{
padding-left: -95px !important; }
.ml-xl--95{
margin-left: -95px; }
.ml-xl--95-i{
margin-left: -95px !important; }
.pl-xl--90{
padding-left: -90px; }
.pl-xl--90-i{
padding-left: -90px !important; }
.ml-xl--90{
margin-left: -90px; }
.ml-xl--90-i{
margin-left: -90px !important; }
.pl-xl--85{
padding-left: -85px; }
.pl-xl--85-i{
padding-left: -85px !important; }
.ml-xl--85{
margin-left: -85px; }
.ml-xl--85-i{
margin-left: -85px !important; }
.pl-xl--80{
padding-left: -80px; }
.pl-xl--80-i{
padding-left: -80px !important; }
.ml-xl--80{
margin-left: -80px; }
.ml-xl--80-i{
margin-left: -80px !important; }
.pl-xl--75{
padding-left: -75px; }
.pl-xl--75-i{
padding-left: -75px !important; }
.ml-xl--75{
margin-left: -75px; }
.ml-xl--75-i{
margin-left: -75px !important; }
.pl-xl--70{
padding-left: -70px; }
.pl-xl--70-i{
padding-left: -70px !important; }
.ml-xl--70{
margin-left: -70px; }
.ml-xl--70-i{
margin-left: -70px !important; }
.pl-xl--65{
padding-left: -65px; }
.pl-xl--65-i{
padding-left: -65px !important; }
.ml-xl--65{
margin-left: -65px; }
.ml-xl--65-i{
margin-left: -65px !important; }
.pl-xl--60{
padding-left: -60px; }
.pl-xl--60-i{
padding-left: -60px !important; }
.ml-xl--60{
margin-left: -60px; }
.ml-xl--60-i{
margin-left: -60px !important; }
.pl-xl--55{
padding-left: -55px; }
.pl-xl--55-i{
padding-left: -55px !important; }
.ml-xl--55{
margin-left: -55px; }
.ml-xl--55-i{
margin-left: -55px !important; }
.pl-xl--50{
padding-left: -50px; }
.pl-xl--50-i{
padding-left: -50px !important; }
.ml-xl--50{
margin-left: -50px; }
.ml-xl--50-i{
margin-left: -50px !important; }
.pl-xl--45{
padding-left: -45px; }
.pl-xl--45-i{
padding-left: -45px !important; }
.ml-xl--45{
margin-left: -45px; }
.ml-xl--45-i{
margin-left: -45px !important; }
.pl-xl--40{
padding-left: -40px; }
.pl-xl--40-i{
padding-left: -40px !important; }
.ml-xl--40{
margin-left: -40px; }
.ml-xl--40-i{
margin-left: -40px !important; }
.pl-xl--35{
padding-left: -35px; }
.pl-xl--35-i{
padding-left: -35px !important; }
.ml-xl--35{
margin-left: -35px; }
.ml-xl--35-i{
margin-left: -35px !important; }
.pl-xl--30{
padding-left: -30px; }
.pl-xl--30-i{
padding-left: -30px !important; }
.ml-xl--30{
margin-left: -30px; }
.ml-xl--30-i{
margin-left: -30px !important; }
.pl-xl--25{
padding-left: -25px; }
.pl-xl--25-i{
padding-left: -25px !important; }
.ml-xl--25{
margin-left: -25px; }
.ml-xl--25-i{
margin-left: -25px !important; }
.pl-xl--20{
padding-left: -20px; }
.pl-xl--20-i{
padding-left: -20px !important; }
.ml-xl--20{
margin-left: -20px; }
.ml-xl--20-i{
margin-left: -20px !important; }
.pl-xl--15{
padding-left: -15px; }
.pl-xl--15-i{
padding-left: -15px !important; }
.ml-xl--15{
margin-left: -15px; }
.ml-xl--15-i{
margin-left: -15px !important; }
.pl-xl--10{
padding-left: -10px; }
.pl-xl--10-i{
padding-left: -10px !important; }
.ml-xl--10{
margin-left: -10px; }
.ml-xl--10-i{
margin-left: -10px !important; }
.pl-xl--5{
padding-left: -5px; }
.pl-xl--5-i{
padding-left: -5px !important; }
.ml-xl--5{
margin-left: -5px; }
.ml-xl--5-i{
margin-left: -5px !important; }
.pl-xl-0{
padding-left: 0px; }
.pl-xl-0-i{
padding-left: 0px !important; }
.ml-xl-0{
margin-left: 0px; }
.ml-xl-0-i{
margin-left: 0px !important; }
.pl-xl-5{
padding-left: 5px; }
.pl-xl-5-i{
padding-left: 5px !important; }
.ml-xl-5{
margin-left: 5px; }
.ml-xl-5-i{
margin-left: 5px !important; }
.pl-xl-10{
padding-left: 10px; }
.pl-xl-10-i{
padding-left: 10px !important; }
.ml-xl-10{
margin-left: 10px; }
.ml-xl-10-i{
margin-left: 10px !important; }
.pl-xl-15{
padding-left: 15px; }
.pl-xl-15-i{
padding-left: 15px !important; }
.ml-xl-15{
margin-left: 15px; }
.ml-xl-15-i{
margin-left: 15px !important; }
.pl-xl-20{
padding-left: 20px; }
.pl-xl-20-i{
padding-left: 20px !important; }
.ml-xl-20{
margin-left: 20px; }
.ml-xl-20-i{
margin-left: 20px !important; }
.pl-xl-25{
padding-left: 25px; }
.pl-xl-25-i{
padding-left: 25px !important; }
.ml-xl-25{
margin-left: 25px; }
.ml-xl-25-i{
margin-left: 25px !important; }
.pl-xl-30{
padding-left: 30px; }
.pl-xl-30-i{
padding-left: 30px !important; }
.ml-xl-30{
margin-left: 30px; }
.ml-xl-30-i{
margin-left: 30px !important; }
.pl-xl-35{
padding-left: 35px; }
.pl-xl-35-i{
padding-left: 35px !important; }
.ml-xl-35{
margin-left: 35px; }
.ml-xl-35-i{
margin-left: 35px !important; }
.pl-xl-40{
padding-left: 40px; }
.pl-xl-40-i{
padding-left: 40px !important; }
.ml-xl-40{
margin-left: 40px; }
.ml-xl-40-i{
margin-left: 40px !important; }
.pl-xl-45{
padding-left: 45px; }
.pl-xl-45-i{
padding-left: 45px !important; }
.ml-xl-45{
margin-left: 45px; }
.ml-xl-45-i{
margin-left: 45px !important; }
.pl-xl-50{
padding-left: 50px; }
.pl-xl-50-i{
padding-left: 50px !important; }
.ml-xl-50{
margin-left: 50px; }
.ml-xl-50-i{
margin-left: 50px !important; }
.pl-xl-55{
padding-left: 55px; }
.pl-xl-55-i{
padding-left: 55px !important; }
.ml-xl-55{
margin-left: 55px; }
.ml-xl-55-i{
margin-left: 55px !important; }
.pl-xl-60{
padding-left: 60px; }
.pl-xl-60-i{
padding-left: 60px !important; }
.ml-xl-60{
margin-left: 60px; }
.ml-xl-60-i{
margin-left: 60px !important; }
.pl-xl-65{
padding-left: 65px; }
.pl-xl-65-i{
padding-left: 65px !important; }
.ml-xl-65{
margin-left: 65px; }
.ml-xl-65-i{
margin-left: 65px !important; }
.pl-xl-70{
padding-left: 70px; }
.pl-xl-70-i{
padding-left: 70px !important; }
.ml-xl-70{
margin-left: 70px; }
.ml-xl-70-i{
margin-left: 70px !important; }
.pl-xl-75{
padding-left: 75px; }
.pl-xl-75-i{
padding-left: 75px !important; }
.ml-xl-75{
margin-left: 75px; }
.ml-xl-75-i{
margin-left: 75px !important; }
.pl-xl-80{
padding-left: 80px; }
.pl-xl-80-i{
padding-left: 80px !important; }
.ml-xl-80{
margin-left: 80px; }
.ml-xl-80-i{
margin-left: 80px !important; }
.pl-xl-85{
padding-left: 85px; }
.pl-xl-85-i{
padding-left: 85px !important; }
.ml-xl-85{
margin-left: 85px; }
.ml-xl-85-i{
margin-left: 85px !important; }
.pl-xl-90{
padding-left: 90px; }
.pl-xl-90-i{
padding-left: 90px !important; }
.ml-xl-90{
margin-left: 90px; }
.ml-xl-90-i{
margin-left: 90px !important; }
.pl-xl-95{
padding-left: 95px; }
.pl-xl-95-i{
padding-left: 95px !important; }
.ml-xl-95{
margin-left: 95px; }
.ml-xl-95-i{
margin-left: 95px !important; }
.pl-xl-100{
padding-left: 100px; }
.pl-xl-100-i{
padding-left: 100px !important; }
.ml-xl-100{
margin-left: 100px; }
.ml-xl-100-i{
margin-left: 100px !important; }
.pa-xl--100{
padding: -100px; }
.ma-xl--100{
margin: -100px; }
.pv-xl--100{
padding-top: -100px;
padding-bottom: -100px; }
.mv-xl--100{
margin-top: -100px;
margin-bottom: -100px; }
.ph-xl--100{
padding-left: -100px;
padding-right: -100px; }
.mh-xl--100{
margin-left: -100px;
padding-right: -100px; }
.pa-xl--95{
padding: -95px; }
.ma-xl--95{
margin: -95px; }
.pv-xl--95{
padding-top: -95px;
padding-bottom: -95px; }
.mv-xl--95{
margin-top: -95px;
margin-bottom: -95px; }
.ph-xl--95{
padding-left: -95px;
padding-right: -95px; }
.mh-xl--95{
margin-left: -95px;
padding-right: -95px; }
.pa-xl--90{
padding: -90px; }
.ma-xl--90{
margin: -90px; }
.pv-xl--90{
padding-top: -90px;
padding-bottom: -90px; }
.mv-xl--90{
margin-top: -90px;
margin-bottom: -90px; }
.ph-xl--90{
padding-left: -90px;
padding-right: -90px; }
.mh-xl--90{
margin-left: -90px;
padding-right: -90px; }
.pa-xl--85{
padding: -85px; }
.ma-xl--85{
margin: -85px; }
.pv-xl--85{
padding-top: -85px;
padding-bottom: -85px; }
.mv-xl--85{
margin-top: -85px;
margin-bottom: -85px; }
.ph-xl--85{
padding-left: -85px;
padding-right: -85px; }
.mh-xl--85{
margin-left: -85px;
padding-right: -85px; }
.pa-xl--80{
padding: -80px; }
.ma-xl--80{
margin: -80px; }
.pv-xl--80{
padding-top: -80px;
padding-bottom: -80px; }
.mv-xl--80{
margin-top: -80px;
margin-bottom: -80px; }
.ph-xl--80{
padding-left: -80px;
padding-right: -80px; }
.mh-xl--80{
margin-left: -80px;
padding-right: -80px; }
.pa-xl--75{
padding: -75px; }
.ma-xl--75{
margin: -75px; }
.pv-xl--75{
padding-top: -75px;
padding-bottom: -75px; }
.mv-xl--75{
margin-top: -75px;
margin-bottom: -75px; }
.ph-xl--75{
padding-left: -75px;
padding-right: -75px; }
.mh-xl--75{
margin-left: -75px;
padding-right: -75px; }
.pa-xl--70{
padding: -70px; }
.ma-xl--70{
margin: -70px; }
.pv-xl--70{
padding-top: -70px;
padding-bottom: -70px; }
.mv-xl--70{
margin-top: -70px;
margin-bottom: -70px; }
.ph-xl--70{
padding-left: -70px;
padding-right: -70px; }
.mh-xl--70{
margin-left: -70px;
padding-right: -70px; }
.pa-xl--65{
padding: -65px; }
.ma-xl--65{
margin: -65px; }
.pv-xl--65{
padding-top: -65px;
padding-bottom: -65px; }
.mv-xl--65{
margin-top: -65px;
margin-bottom: -65px; }
.ph-xl--65{
padding-left: -65px;
padding-right: -65px; }
.mh-xl--65{
margin-left: -65px;
padding-right: -65px; }
.pa-xl--60{
padding: -60px; }
.ma-xl--60{
margin: -60px; }
.pv-xl--60{
padding-top: -60px;
padding-bottom: -60px; }
.mv-xl--60{
margin-top: -60px;
margin-bottom: -60px; }
.ph-xl--60{
padding-left: -60px;
padding-right: -60px; }
.mh-xl--60{
margin-left: -60px;
padding-right: -60px; }
.pa-xl--55{
padding: -55px; }
.ma-xl--55{
margin: -55px; }
.pv-xl--55{
padding-top: -55px;
padding-bottom: -55px; }
.mv-xl--55{
margin-top: -55px;
margin-bottom: -55px; }
.ph-xl--55{
padding-left: -55px;
padding-right: -55px; }
.mh-xl--55{
margin-left: -55px;
padding-right: -55px; }
.pa-xl--50{
padding: -50px; }
.ma-xl--50{
margin: -50px; }
.pv-xl--50{
padding-top: -50px;
padding-bottom: -50px; }
.mv-xl--50{
margin-top: -50px;
margin-bottom: -50px; }
.ph-xl--50{
padding-left: -50px;
padding-right: -50px; }
.mh-xl--50{
margin-left: -50px;
padding-right: -50px; }
.pa-xl--45{
padding: -45px; }
.ma-xl--45{
margin: -45px; }
.pv-xl--45{
padding-top: -45px;
padding-bottom: -45px; }
.mv-xl--45{
margin-top: -45px;
margin-bottom: -45px; }
.ph-xl--45{
padding-left: -45px;
padding-right: -45px; }
.mh-xl--45{
margin-left: -45px;
padding-right: -45px; }
.pa-xl--40{
padding: -40px; }
.ma-xl--40{
margin: -40px; }
.pv-xl--40{
padding-top: -40px;
padding-bottom: -40px; }
.mv-xl--40{
margin-top: -40px;
margin-bottom: -40px; }
.ph-xl--40{
padding-left: -40px;
padding-right: -40px; }
.mh-xl--40{
margin-left: -40px;
padding-right: -40px; }
.pa-xl--35{
padding: -35px; }
.ma-xl--35{
margin: -35px; }
.pv-xl--35{
padding-top: -35px;
padding-bottom: -35px; }
.mv-xl--35{
margin-top: -35px;
margin-bottom: -35px; }
.ph-xl--35{
padding-left: -35px;
padding-right: -35px; }
.mh-xl--35{
margin-left: -35px;
padding-right: -35px; }
.pa-xl--30{
padding: -30px; }
.ma-xl--30{
margin: -30px; }
.pv-xl--30{
padding-top: -30px;
padding-bottom: -30px; }
.mv-xl--30{
margin-top: -30px;
margin-bottom: -30px; }
.ph-xl--30{
padding-left: -30px;
padding-right: -30px; }
.mh-xl--30{
margin-left: -30px;
padding-right: -30px; }
.pa-xl--25{
padding: -25px; }
.ma-xl--25{
margin: -25px; }
.pv-xl--25{
padding-top: -25px;
padding-bottom: -25px; }
.mv-xl--25{
margin-top: -25px;
margin-bottom: -25px; }
.ph-xl--25{
padding-left: -25px;
padding-right: -25px; }
.mh-xl--25{
margin-left: -25px;
padding-right: -25px; }
.pa-xl--20{
padding: -20px; }
.ma-xl--20{
margin: -20px; }
.pv-xl--20{
padding-top: -20px;
padding-bottom: -20px; }
.mv-xl--20{
margin-top: -20px;
margin-bottom: -20px; }
.ph-xl--20{
padding-left: -20px;
padding-right: -20px; }
.mh-xl--20{
margin-left: -20px;
padding-right: -20px; }
.pa-xl--15{
padding: -15px; }
.ma-xl--15{
margin: -15px; }
.pv-xl--15{
padding-top: -15px;
padding-bottom: -15px; }
.mv-xl--15{
margin-top: -15px;
margin-bottom: -15px; }
.ph-xl--15{
padding-left: -15px;
padding-right: -15px; }
.mh-xl--15{
margin-left: -15px;
padding-right: -15px; }
.pa-xl--10{
padding: -10px; }
.ma-xl--10{
margin: -10px; }
.pv-xl--10{
padding-top: -10px;
padding-bottom: -10px; }
.mv-xl--10{
margin-top: -10px;
margin-bottom: -10px; }
.ph-xl--10{
padding-left: -10px;
padding-right: -10px; }
.mh-xl--10{
margin-left: -10px;
padding-right: -10px; }
.pa-xl--5{
padding: -5px; }
.ma-xl--5{
margin: -5px; }
.pv-xl--5{
padding-top: -5px;
padding-bottom: -5px; }
.mv-xl--5{
margin-top: -5px;
margin-bottom: -5px; }
.ph-xl--5{
padding-left: -5px;
padding-right: -5px; }
.mh-xl--5{
margin-left: -5px;
padding-right: -5px; }
.pa-xl-0{
padding: 0px; }
.ma-xl-0{
margin: 0px; }
.pv-xl-0{
padding-top: 0px;
padding-bottom: 0px; }
.mv-xl-0{
margin-top: 0px;
margin-bottom: 0px; }
.ph-xl-0{
padding-left: 0px;
padding-right: 0px; }
.mh-xl-0{
margin-left: 0px;
padding-right: 0px; }
.pa-xl-5{
padding: 5px; }
.ma-xl-5{
margin: 5px; }
.pv-xl-5{
padding-top: 5px;
padding-bottom: 5px; }
.mv-xl-5{
margin-top: 5px;
margin-bottom: 5px; }
.ph-xl-5{
padding-left: 5px;
padding-right: 5px; }
.mh-xl-5{
margin-left: 5px;
padding-right: 5px; }
.pa-xl-10{
padding: 10px; }
.ma-xl-10{
margin: 10px; }
.pv-xl-10{
padding-top: 10px;
padding-bottom: 10px; }
.mv-xl-10{
margin-top: 10px;
margin-bottom: 10px; }
.ph-xl-10{
padding-left: 10px;
padding-right: 10px; }
.mh-xl-10{
margin-left: 10px;
padding-right: 10px; }
.pa-xl-15{
padding: 15px; }
.ma-xl-15{
margin: 15px; }
.pv-xl-15{
padding-top: 15px;
padding-bottom: 15px; }
.mv-xl-15{
margin-top: 15px;
margin-bottom: 15px; }
.ph-xl-15{
padding-left: 15px;
padding-right: 15px; }
.mh-xl-15{
margin-left: 15px;
padding-right: 15px; }
.pa-xl-20{
padding: 20px; }
.ma-xl-20{
margin: 20px; }
.pv-xl-20{
padding-top: 20px;
padding-bottom: 20px; }
.mv-xl-20{
margin-top: 20px;
margin-bottom: 20px; }
.ph-xl-20{
padding-left: 20px;
padding-right: 20px; }
.mh-xl-20{
margin-left: 20px;
padding-right: 20px; }
.pa-xl-25{
padding: 25px; }
.ma-xl-25{
margin: 25px; }
.pv-xl-25{
padding-top: 25px;
padding-bottom: 25px; }
.mv-xl-25{
margin-top: 25px;
margin-bottom: 25px; }
.ph-xl-25{
padding-left: 25px;
padding-right: 25px; }
.mh-xl-25{
margin-left: 25px;
padding-right: 25px; }
.pa-xl-30{
padding: 30px; }
.ma-xl-30{
margin: 30px; }
.pv-xl-30{
padding-top: 30px;
padding-bottom: 30px; }
.mv-xl-30{
margin-top: 30px;
margin-bottom: 30px; }
.ph-xl-30{
padding-left: 30px;
padding-right: 30px; }
.mh-xl-30{
margin-left: 30px;
padding-right: 30px; }
.pa-xl-35{
padding: 35px; }
.ma-xl-35{
margin: 35px; }
.pv-xl-35{
padding-top: 35px;
padding-bottom: 35px; }
.mv-xl-35{
margin-top: 35px;
margin-bottom: 35px; }
.ph-xl-35{
padding-left: 35px;
padding-right: 35px; }
.mh-xl-35{
margin-left: 35px;
padding-right: 35px; }
.pa-xl-40{
padding: 40px; }
.ma-xl-40{
margin: 40px; }
.pv-xl-40{
padding-top: 40px;
padding-bottom: 40px; }
.mv-xl-40{
margin-top: 40px;
margin-bottom: 40px; }
.ph-xl-40{
padding-left: 40px;
padding-right: 40px; }
.mh-xl-40{
margin-left: 40px;
padding-right: 40px; }
.pa-xl-45{
padding: 45px; }
.ma-xl-45{
margin: 45px; }
.pv-xl-45{
padding-top: 45px;
padding-bottom: 45px; }
.mv-xl-45{
margin-top: 45px;
margin-bottom: 45px; }
.ph-xl-45{
padding-left: 45px;
padding-right: 45px; }
.mh-xl-45{
margin-left: 45px;
padding-right: 45px; }
.pa-xl-50{
padding: 50px; }
.ma-xl-50{
margin: 50px; }
.pv-xl-50{
padding-top: 50px;
padding-bottom: 50px; }
.mv-xl-50{
margin-top: 50px;
margin-bottom: 50px; }
.ph-xl-50{
padding-left: 50px;
padding-right: 50px; }
.mh-xl-50{
margin-left: 50px;
padding-right: 50px; }
.pa-xl-55{
padding: 55px; }
.ma-xl-55{
margin: 55px; }
.pv-xl-55{
padding-top: 55px;
padding-bottom: 55px; }
.mv-xl-55{
margin-top: 55px;
margin-bottom: 55px; }
.ph-xl-55{
padding-left: 55px;
padding-right: 55px; }
.mh-xl-55{
margin-left: 55px;
padding-right: 55px; }
.pa-xl-60{
padding: 60px; }
.ma-xl-60{
margin: 60px; }
.pv-xl-60{
padding-top: 60px;
padding-bottom: 60px; }
.mv-xl-60{
margin-top: 60px;
margin-bottom: 60px; }
.ph-xl-60{
padding-left: 60px;
padding-right: 60px; }
.mh-xl-60{
margin-left: 60px;
padding-right: 60px; }
.pa-xl-65{
padding: 65px; }
.ma-xl-65{
margin: 65px; }
.pv-xl-65{
padding-top: 65px;
padding-bottom: 65px; }
.mv-xl-65{
margin-top: 65px;
margin-bottom: 65px; }
.ph-xl-65{
padding-left: 65px;
padding-right: 65px; }
.mh-xl-65{
margin-left: 65px;
padding-right: 65px; }
.pa-xl-70{
padding: 70px; }
.ma-xl-70{
margin: 70px; }
.pv-xl-70{
padding-top: 70px;
padding-bottom: 70px; }
.mv-xl-70{
margin-top: 70px;
margin-bottom: 70px; }
.ph-xl-70{
padding-left: 70px;
padding-right: 70px; }
.mh-xl-70{
margin-left: 70px;
padding-right: 70px; }
.pa-xl-75{
padding: 75px; }
.ma-xl-75{
margin: 75px; }
.pv-xl-75{
padding-top: 75px;
padding-bottom: 75px; }
.mv-xl-75{
margin-top: 75px;
margin-bottom: 75px; }
.ph-xl-75{
padding-left: 75px;
padding-right: 75px; }
.mh-xl-75{
margin-left: 75px;
padding-right: 75px; }
.pa-xl-80{
padding: 80px; }
.ma-xl-80{
margin: 80px; }
.pv-xl-80{
padding-top: 80px;
padding-bottom: 80px; }
.mv-xl-80{
margin-top: 80px;
margin-bottom: 80px; }
.ph-xl-80{
padding-left: 80px;
padding-right: 80px; }
.mh-xl-80{
margin-left: 80px;
padding-right: 80px; }
.pa-xl-85{
padding: 85px; }
.ma-xl-85{
margin: 85px; }
.pv-xl-85{
padding-top: 85px;
padding-bottom: 85px; }
.mv-xl-85{
margin-top: 85px;
margin-bottom: 85px; }
.ph-xl-85{
padding-left: 85px;
padding-right: 85px; }
.mh-xl-85{
margin-left: 85px;
padding-right: 85px; }
.pa-xl-90{
padding: 90px; }
.ma-xl-90{
margin: 90px; }
.pv-xl-90{
padding-top: 90px;
padding-bottom: 90px; }
.mv-xl-90{
margin-top: 90px;
margin-bottom: 90px; }
.ph-xl-90{
padding-left: 90px;
padding-right: 90px; }
.mh-xl-90{
margin-left: 90px;
padding-right: 90px; }
.pa-xl-95{
padding: 95px; }
.ma-xl-95{
margin: 95px; }
.pv-xl-95{
padding-top: 95px;
padding-bottom: 95px; }
.mv-xl-95{
margin-top: 95px;
margin-bottom: 95px; }
.ph-xl-95{
padding-left: 95px;
padding-right: 95px; }
.mh-xl-95{
margin-left: 95px;
padding-right: 95px; }
.pa-xl-100{
padding: 100px; }
.ma-xl-100{
margin: 100px; }
.pv-xl-100{
padding-top: 100px;
padding-bottom: 100px; }
.mv-xl-100{
margin-top: 100px;
margin-bottom: 100px; }
.ph-xl-100{
padding-left: 100px;
padding-right: 100px; }
.mh-xl-100{
margin-left: 100px;
padding-right: 100px; }
.container{
max-width: 1200px; }
.col-xl{
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-xl-1{
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-xl-2{
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-xl-3{
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-xl-4{
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-xl-5{
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-xl-6{
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-xl-7{
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-xl-8{
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-xl-9{
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-xl-10{
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-xl-11{
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-xl-12{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-xl-0{
right: auto; }
.pull-xl-1{
right: 8.33333%; }
.pull-xl-2{
right: 16.66667%; }
.pull-xl-3{
right: 25%; }
.pull-xl-4{
right: 33.33333%; }
.pull-xl-5{
right: 41.66667%; }
.pull-xl-6{
right: 50%; }
.pull-xl-7{
right: 58.33333%; }
.pull-xl-8{
right: 66.66667%; }
.pull-xl-9{
right: 75%; }
.pull-xl-10{
right: 83.33333%; }
.pull-xl-11{
right: 91.66667%; }
.pull-xl-12{
right: 100%; }
.push-xl-0{
left: auto; }
.push-xl-1{
left: 8.33333%; }
.push-xl-2{
left: 16.66667%; }
.push-xl-3{
left: 25%; }
.push-xl-4{
left: 33.33333%; }
.push-xl-5{
left: 41.66667%; }
.push-xl-6{
left: 50%; }
.push-xl-7{
left: 58.33333%; }
.push-xl-8{
left: 66.66667%; }
.push-xl-9{
left: 75%; }
.push-xl-10{
left: 83.33333%; }
.push-xl-11{
left: 91.66667%; }
.push-xl-12{
left: 100%; }
.offset-xl-0{
margin-left: 0%; }
.offset-xl-1{
margin-left: 8.33333%; }
.offset-xl-2{
margin-left: 16.66667%; }
.offset-xl-3{
margin-left: 25%; }
.offset-xl-4{
margin-left: 33.33333%; }
.offset-xl-5{
margin-left: 41.66667%; }
.offset-xl-6{
margin-left: 50%; }
.offset-xl-7{
margin-left: 58.33333%; }
.offset-xl-8{
margin-left: 66.66667%; }
.offset-xl-9{
margin-left: 75%; }
.offset-xl-10{
margin-left: 83.33333%; }
.offset-xl-11{
margin-left: 91.66667%; }
.site-header.header-split .site-logo{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: auto;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center; }
.site-header.header-split .left-col{
position: relative;
display: table-cell;
vertical-align: middle;
width: 150px; }
.site-header.header-split .right-col{
width: 150px; }
.site-header.header-menu-bottom:not(.sticky-header) .site-logo{
text-align: center;
width: 20%; }
.site-header.header-menu-bottom:not(.sticky-header) .header-tools{
width: 40%; }
.site-header.header-menu-bottom .left-col{
display: table-cell;
vertical-align: middle;
width: 40%; }
.site-header.header-menu-bottom.sticky-header .site-logo{
width: 20%; }
.site-header.header-menu-bottom.sticky-header .left-col{
width: auto; }
.site-header.header-menu-bottom .site-menu-wrap{
display: block; }
.site-header.header-menu-bottom .site-menu-wrap > .container{
display: table;
width: 100%; }
.site-header.header-menu-left .site-logo{
text-align: center;
width: 10%; }
.site-header.header-menu-left .left-col{
display: table-cell;
vertical-align: middle;
width: 45%; }
.site-header.header-menu-left .right-col{
width: 45%; }
.site-header.header-vertical{
position: fixed;
top: 0;
left: 0;
height: 100% !important;
min-width: 200px;
z-index: 1000;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05); }
.admin-bar .site-header.header-vertical{
top: 32px; }
.site-header.header-vertical > .container{
height: 100%;
width: 100%;
max-width: none;
padding: 50px 40px 0; }
.site-header.header-vertical > .container > .row{
display: block;
position: relative;
height: 100%; }
.site-header.header-vertical .menu-wrapper{
margin-top: 50px;
margin-bottom: 30px; }
.site-header.header-vertical .header-tools{
text-align: left; }
.header-minicart.minicart-open .minicart-dropdown-wrapper{
top: 150%;
visibility: visible;
opacity: 1; }
.sticky-header.is-sticky .header-minicart.minicart-open .minicart-dropdown-wrapper{
top: 100%; }
.site-header.header-vertical .header-minicart .minicart-dropdown-wrapper{
position: fixed;
top: 0;
right: auto;
height: 100%;
z-index: 1000; }
.site-header.header-vertical .header-minicart .product_list_widget{
max-height: 300px; }
.admin-bar .site-header.header-vertical .header-minicart .minicart-dropdown-wrapper{
top: 32px; }
.site-mobile-menu{
display: none; }
body.mobile-menu-opened #page-container:after,
body.mobile-wishlist-opened #page-container:after,
body.mobile-minicart-opened #page-container:after{
display: none; }
.post-quote{
padding: 63px 70px 52px; }
.post-related .post-quote{
padding: 20px 15px;
min-height: 182px; }
.site-menu .menu > li.mega-menu{
position: static; }
.site-menu .menu > li.mega-menu.mega-menu-custom{
position: relative; }
.site-menu .menu > li.mega-menu .sub-menu{
width: 100%; }
.site-menu .menu > li.mega-menu .mega-menu-content{
padding: 30px; }
.site-header.header-vertical .site-menu .menu > ul > li,
.site-header.header-vertical .site-menu .menu > li{
display: block;
text-align: left;
height: auto !important;
line-height: 1 !important;
padding: 0;
margin-bottom: 30px; }
.site-header.header-vertical .site-menu .menu > ul > li > a,
.site-header.header-vertical .site-menu .menu > li > a{
letter-spacing: 0;
padding: 0; }
.site-header.header-vertical .site-menu .menu > ul > li > a:before,
.site-header.header-vertical .site-menu .menu > ul > li > a:after,
.site-header.header-vertical .site-menu .menu > li > a:before,
.site-header.header-vertical .site-menu .menu > li > a:after{
display: none; }
.site-header.header-vertical .site-menu .menu > ul > li .children,
.site-header.header-vertical .site-menu .menu > li .sub-menu{
min-width: 250px; }
.site-header.header-vertical .site-menu .menu > ul > li .children li,
.site-header.header-vertical .site-menu .menu > li .sub-menu li{
font-size: 14px;
font-weight: 400;
text-transform: uppercase; }
.site-header.header-vertical .site-menu .menu > ul > li .children li:after,
.site-header.header-vertical .site-menu .menu > li .sub-menu li:after{
color: #333333 !important; }
.site-header.header-vertical .site-menu .menu > ul > li .children li:before,
.site-header.header-vertical .site-menu .menu > li .sub-menu li:before{
background-color: #333333 !important; }
.site-header.header-vertical .site-menu .menu > ul > li .children li > a:after,
.site-header.header-vertical .site-menu .menu > li .sub-menu li > a:after{
display: none; }
.site-header.header-vertical .site-menu .menu > li.menu-item-has-children{
position: relative; }
.site-header.header-vertical .site-menu .menu > li.menu-item-has-children:after{
position: absolute;
top: 50%;
right: 10px;
color: #ababab;
font-size: 16px;
background-color: transparent !important;
margin: -1px;
transform: translateY(-50%);
content: ""; }
.header-overlap .topbar{
position: absolute;
width: 100%;
top: 0;
z-index: 1001; }
.header-wishlist.wishlist-open .wishlist-dropdown-wrapper{
top: 150%;
visibility: visible;
opacity: 1; }
.sticky-header.is-sticky .header-wishlist.wishlist-open .wishlist-dropdown-wrapper{
top: 100%; }
.site-header.header-vertical .header-wishlist .wishlist-dropdown-wrapper{
position: fixed;
top: 0;
right: auto;
height: 100%;
z-index: 1000; }
.site-header.header-vertical .header-wishlist .product_list_widget{
max-height: 500px; }
.admin-bar .site-header.header-vertical .header-wishlist .wishlist-dropdown-wrapper{
top: 32px; }
.archive.woocommerce .main-container .container.wide .product.col-xl-3{
-ms-flex: 0 0 24.99%;
flex: 0 0 24.99%;
max-width: 24.99%; }
.amely-banner2 .banner-button{
padding: 18px 60px; }
.amely-banner4 img{
display: block;
width: auto; }
.amely-banner4 .banner-image{
display: inline-block; }
.amely-banner4 .banner-image:after{
display: block;
left: -80%; }
.amely-banner4 .banner-hashtag{
display: block;
font-size: 150px;
margin-top: 30px;
margin-bottom: 18px; }
.amely-banner4 .banner-desc{
font-size: 18px;
line-height: 24px;
letter-spacing: .3em;
margin-bottom: 35px; }
.amely-banner4 .banner-content h1{
font-size: 90px; }
.amely-banner4 .banner-content h2{
font-size: 80px; }
.amely-banner4 .banner-content h3{
font-size: 70px; }
.amely-banner4 .banner-content h4{
font-size: 60px; }
.amely-banner4 .banner-content h5{
font-size: 50px; }
.amely-banner4 .banner-content h6{
font-size: 40px; }
.amely-banner4 .banner-button{
margin-top: 50px; }
.amely-product-category-banner .banner-content{
padding: 40px; }
.amely-product-carousel .products .slick-arrow.slick-next{
right: -50px; }
.amely-product-carousel .products .slick-arrow.slick-prev{
left: -50px; }
.amely-product-carousel .products:hover .slick-arrow.slick-next{
right: -30px; }
.amely-product-carousel .products:hover .slick-arrow.slick-prev{
left: -30px; }
.megamenu-home .wpb_column:nth-child(7) .wpb_single_image,
.megamenu-home .wpb_column:nth-child(8) .wpb_single_image,
.megamenu-home .wpb_column:nth-child(9) .wpb_single_image{
margin-bottom: 10px; } }
@media (min-width: 1440px){
.header-minicart .product_list_widget{
max-height: 400px; }
.header-wishlist .product_list_widget{
max-height: 400px; }
.archive.woocommerce .main-container .container.wide .has-no-sidebars .col-switcher a[data-col="6"]{
display: inline-block; }
.amely-banner3.font-size-64 .banner-content h2{
font-size: 64px; }
.amely-banner3.font-size-100 .banner-content h2{
font-size: 100px; }
.amely-banner3.font-size-150 .banner-content h2{
font-size: 150px; }
.amely-banner3.content-padding-70 .banner-content{
padding: 70px; }
.amely-banner3.content-padding-100 .banner-content{
padding: 100px; } }
@media (min-width: 1440px) and (max-width: 1919px){
.site-header.header-split .left-col,
.site-header.header-split .right-col{
width: 15%; } }
@media (min-width: 1920px){
.flex-xxl-first{
-ms-flex-order: -1;
order: -1; }
.flex-xxl-last{
-ms-flex-order: 1;
order: 1; }
.flex-xxl-unordered{
-ms-flex-order: 0;
order: 0; }
.flex-items-xxl-top{
-ms-flex-align: start;
align-items: flex-start; }
.flex-items-xxl-middle{
-ms-flex-align: center;
align-items: center; }
.flex-items-xxl-bottom{
-ms-flex-align: end;
align-items: flex-end; }
.flex-xxl-top{
-ms-flex-item-align: start;
align-self: flex-start; }
.flex-xxl-middle{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; }
.flex-xxl-bottom{
-ms-flex-item-align: end;
align-self: flex-end; }
.flex-items-xxl-left{
-ms-flex-pack: start;
justify-content: flex-start; }
.flex-items-xxl-center{
-ms-flex-pack: center;
justify-content: center; }
.flex-items-xxl-right{
-ms-flex-pack: end;
justify-content: flex-end; }
.flex-items-xxl-around{
-ms-flex-pack: distribute;
justify-content: space-around; }
.flex-items-xxl-between{
-ms-flex-pack: justify;
justify-content: space-between; }
.pull-xxl-left{
float: left !important; }
.pull-xxl-right{
float: right !important; }
.pull-xxl-none{
float: none !important; }
.text-xxl-left{
text-align: left !important; }
.text-xxl-right{
text-align: right !important; }
.text-xxl-center{
text-align: center !important; }
.hidden-xxl-up{
display: none !important; }
.col-xxl-is-5{
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%; }
.col-xxl-pull-is-5{
right: 20%; }
.col-xxl-push-is-5{
left: 20%; }
.col-xxl-offset-is-5{
margin-left: 20%; }
.pt-xxl--100{
padding-top: -100px; }
.pt-xxl--100-i{
padding-top: -100px !important; }
.mt-xxl--100{
margin-top: -100px; }
.mt-xxl--100-i{
margin-top: -100px !important; }
.pt-xxl--95{
padding-top: -95px; }
.pt-xxl--95-i{
padding-top: -95px !important; }
.mt-xxl--95{
margin-top: -95px; }
.mt-xxl--95-i{
margin-top: -95px !important; }
.pt-xxl--90{
padding-top: -90px; }
.pt-xxl--90-i{
padding-top: -90px !important; }
.mt-xxl--90{
margin-top: -90px; }
.mt-xxl--90-i{
margin-top: -90px !important; }
.pt-xxl--85{
padding-top: -85px; }
.pt-xxl--85-i{
padding-top: -85px !important; }
.mt-xxl--85{
margin-top: -85px; }
.mt-xxl--85-i{
margin-top: -85px !important; }
.pt-xxl--80{
padding-top: -80px; }
.pt-xxl--80-i{
padding-top: -80px !important; }
.mt-xxl--80{
margin-top: -80px; }
.mt-xxl--80-i{
margin-top: -80px !important; }
.pt-xxl--75{
padding-top: -75px; }
.pt-xxl--75-i{
padding-top: -75px !important; }
.mt-xxl--75{
margin-top: -75px; }
.mt-xxl--75-i{
margin-top: -75px !important; }
.pt-xxl--70{
padding-top: -70px; }
.pt-xxl--70-i{
padding-top: -70px !important; }
.mt-xxl--70{
margin-top: -70px; }
.mt-xxl--70-i{
margin-top: -70px !important; }
.pt-xxl--65{
padding-top: -65px; }
.pt-xxl--65-i{
padding-top: -65px !important; }
.mt-xxl--65{
margin-top: -65px; }
.mt-xxl--65-i{
margin-top: -65px !important; }
.pt-xxl--60{
padding-top: -60px; }
.pt-xxl--60-i{
padding-top: -60px !important; }
.mt-xxl--60{
margin-top: -60px; }
.mt-xxl--60-i{
margin-top: -60px !important; }
.pt-xxl--55{
padding-top: -55px; }
.pt-xxl--55-i{
padding-top: -55px !important; }
.mt-xxl--55{
margin-top: -55px; }
.mt-xxl--55-i{
margin-top: -55px !important; }
.pt-xxl--50{
padding-top: -50px; }
.pt-xxl--50-i{
padding-top: -50px !important; }
.mt-xxl--50{
margin-top: -50px; }
.mt-xxl--50-i{
margin-top: -50px !important; }
.pt-xxl--45{
padding-top: -45px; }
.pt-xxl--45-i{
padding-top: -45px !important; }
.mt-xxl--45{
margin-top: -45px; }
.mt-xxl--45-i{
margin-top: -45px !important; }
.pt-xxl--40{
padding-top: -40px; }
.pt-xxl--40-i{
padding-top: -40px !important; }
.mt-xxl--40{
margin-top: -40px; }
.mt-xxl--40-i{
margin-top: -40px !important; }
.pt-xxl--35{
padding-top: -35px; }
.pt-xxl--35-i{
padding-top: -35px !important; }
.mt-xxl--35{
margin-top: -35px; }
.mt-xxl--35-i{
margin-top: -35px !important; }
.pt-xxl--30{
padding-top: -30px; }
.pt-xxl--30-i{
padding-top: -30px !important; }
.mt-xxl--30{
margin-top: -30px; }
.mt-xxl--30-i{
margin-top: -30px !important; }
.pt-xxl--25{
padding-top: -25px; }
.pt-xxl--25-i{
padding-top: -25px !important; }
.mt-xxl--25{
margin-top: -25px; }
.mt-xxl--25-i{
margin-top: -25px !important; }
.pt-xxl--20{
padding-top: -20px; }
.pt-xxl--20-i{
padding-top: -20px !important; }
.mt-xxl--20{
margin-top: -20px; }
.mt-xxl--20-i{
margin-top: -20px !important; }
.pt-xxl--15{
padding-top: -15px; }
.pt-xxl--15-i{
padding-top: -15px !important; }
.mt-xxl--15{
margin-top: -15px; }
.mt-xxl--15-i{
margin-top: -15px !important; }
.pt-xxl--10{
padding-top: -10px; }
.pt-xxl--10-i{
padding-top: -10px !important; }
.mt-xxl--10{
margin-top: -10px; }
.mt-xxl--10-i{
margin-top: -10px !important; }
.pt-xxl--5{
padding-top: -5px; }
.pt-xxl--5-i{
padding-top: -5px !important; }
.mt-xxl--5{
margin-top: -5px; }
.mt-xxl--5-i{
margin-top: -5px !important; }
.pt-xxl-0{
padding-top: 0px; }
.pt-xxl-0-i{
padding-top: 0px !important; }
.mt-xxl-0{
margin-top: 0px; }
.mt-xxl-0-i{
margin-top: 0px !important; }
.pt-xxl-5{
padding-top: 5px; }
.pt-xxl-5-i{
padding-top: 5px !important; }
.mt-xxl-5{
margin-top: 5px; }
.mt-xxl-5-i{
margin-top: 5px !important; }
.pt-xxl-10{
padding-top: 10px; }
.pt-xxl-10-i{
padding-top: 10px !important; }
.mt-xxl-10{
margin-top: 10px; }
.mt-xxl-10-i{
margin-top: 10px !important; }
.pt-xxl-15{
padding-top: 15px; }
.pt-xxl-15-i{
padding-top: 15px !important; }
.mt-xxl-15{
margin-top: 15px; }
.mt-xxl-15-i{
margin-top: 15px !important; }
.pt-xxl-20{
padding-top: 20px; }
.pt-xxl-20-i{
padding-top: 20px !important; }
.mt-xxl-20{
margin-top: 20px; }
.mt-xxl-20-i{
margin-top: 20px !important; }
.pt-xxl-25{
padding-top: 25px; }
.pt-xxl-25-i{
padding-top: 25px !important; }
.mt-xxl-25{
margin-top: 25px; }
.mt-xxl-25-i{
margin-top: 25px !important; }
.pt-xxl-30{
padding-top: 30px; }
.pt-xxl-30-i{
padding-top: 30px !important; }
.mt-xxl-30{
margin-top: 30px; }
.mt-xxl-30-i{
margin-top: 30px !important; }
.pt-xxl-35{
padding-top: 35px; }
.pt-xxl-35-i{
padding-top: 35px !important; }
.mt-xxl-35{
margin-top: 35px; }
.mt-xxl-35-i{
margin-top: 35px !important; }
.pt-xxl-40{
padding-top: 40px; }
.pt-xxl-40-i{
padding-top: 40px !important; }
.mt-xxl-40{
margin-top: 40px; }
.mt-xxl-40-i{
margin-top: 40px !important; }
.pt-xxl-45{
padding-top: 45px; }
.pt-xxl-45-i{
padding-top: 45px !important; }
.mt-xxl-45{
margin-top: 45px; }
.mt-xxl-45-i{
margin-top: 45px !important; }
.pt-xxl-50{
padding-top: 50px; }
.pt-xxl-50-i{
padding-top: 50px !important; }
.mt-xxl-50{
margin-top: 50px; }
.mt-xxl-50-i{
margin-top: 50px !important; }
.pt-xxl-55{
padding-top: 55px; }
.pt-xxl-55-i{
padding-top: 55px !important; }
.mt-xxl-55{
margin-top: 55px; }
.mt-xxl-55-i{
margin-top: 55px !important; }
.pt-xxl-60{
padding-top: 60px; }
.pt-xxl-60-i{
padding-top: 60px !important; }
.mt-xxl-60{
margin-top: 60px; }
.mt-xxl-60-i{
margin-top: 60px !important; }
.pt-xxl-65{
padding-top: 65px; }
.pt-xxl-65-i{
padding-top: 65px !important; }
.mt-xxl-65{
margin-top: 65px; }
.mt-xxl-65-i{
margin-top: 65px !important; }
.pt-xxl-70{
padding-top: 70px; }
.pt-xxl-70-i{
padding-top: 70px !important; }
.mt-xxl-70{
margin-top: 70px; }
.mt-xxl-70-i{
margin-top: 70px !important; }
.pt-xxl-75{
padding-top: 75px; }
.pt-xxl-75-i{
padding-top: 75px !important; }
.mt-xxl-75{
margin-top: 75px; }
.mt-xxl-75-i{
margin-top: 75px !important; }
.pt-xxl-80{
padding-top: 80px; }
.pt-xxl-80-i{
padding-top: 80px !important; }
.mt-xxl-80{
margin-top: 80px; }
.mt-xxl-80-i{
margin-top: 80px !important; }
.pt-xxl-85{
padding-top: 85px; }
.pt-xxl-85-i{
padding-top: 85px !important; }
.mt-xxl-85{
margin-top: 85px; }
.mt-xxl-85-i{
margin-top: 85px !important; }
.pt-xxl-90{
padding-top: 90px; }
.pt-xxl-90-i{
padding-top: 90px !important; }
.mt-xxl-90{
margin-top: 90px; }
.mt-xxl-90-i{
margin-top: 90px !important; }
.pt-xxl-95{
padding-top: 95px; }
.pt-xxl-95-i{
padding-top: 95px !important; }
.mt-xxl-95{
margin-top: 95px; }
.mt-xxl-95-i{
margin-top: 95px !important; }
.pt-xxl-100{
padding-top: 100px; }
.pt-xxl-100-i{
padding-top: 100px !important; }
.mt-xxl-100{
margin-top: 100px; }
.mt-xxl-100-i{
margin-top: 100px !important; }
.pr-xxl--100{
padding-right: -100px; }
.pr-xxl--100-i{
padding-right: -100px !important; }
.mr-xxl--100{
margin-right: -100px; }
.mr-xxl--100-i{
margin-right: -100px !important; }
.pr-xxl--95{
padding-right: -95px; }
.pr-xxl--95-i{
padding-right: -95px !important; }
.mr-xxl--95{
margin-right: -95px; }
.mr-xxl--95-i{
margin-right: -95px !important; }
.pr-xxl--90{
padding-right: -90px; }
.pr-xxl--90-i{
padding-right: -90px !important; }
.mr-xxl--90{
margin-right: -90px; }
.mr-xxl--90-i{
margin-right: -90px !important; }
.pr-xxl--85{
padding-right: -85px; }
.pr-xxl--85-i{
padding-right: -85px !important; }
.mr-xxl--85{
margin-right: -85px; }
.mr-xxl--85-i{
margin-right: -85px !important; }
.pr-xxl--80{
padding-right: -80px; }
.pr-xxl--80-i{
padding-right: -80px !important; }
.mr-xxl--80{
margin-right: -80px; }
.mr-xxl--80-i{
margin-right: -80px !important; }
.pr-xxl--75{
padding-right: -75px; }
.pr-xxl--75-i{
padding-right: -75px !important; }
.mr-xxl--75{
margin-right: -75px; }
.mr-xxl--75-i{
margin-right: -75px !important; }
.pr-xxl--70{
padding-right: -70px; }
.pr-xxl--70-i{
padding-right: -70px !important; }
.mr-xxl--70{
margin-right: -70px; }
.mr-xxl--70-i{
margin-right: -70px !important; }
.pr-xxl--65{
padding-right: -65px; }
.pr-xxl--65-i{
padding-right: -65px !important; }
.mr-xxl--65{
margin-right: -65px; }
.mr-xxl--65-i{
margin-right: -65px !important; }
.pr-xxl--60{
padding-right: -60px; }
.pr-xxl--60-i{
padding-right: -60px !important; }
.mr-xxl--60{
margin-right: -60px; }
.mr-xxl--60-i{
margin-right: -60px !important; }
.pr-xxl--55{
padding-right: -55px; }
.pr-xxl--55-i{
padding-right: -55px !important; }
.mr-xxl--55{
margin-right: -55px; }
.mr-xxl--55-i{
margin-right: -55px !important; }
.pr-xxl--50{
padding-right: -50px; }
.pr-xxl--50-i{
padding-right: -50px !important; }
.mr-xxl--50{
margin-right: -50px; }
.mr-xxl--50-i{
margin-right: -50px !important; }
.pr-xxl--45{
padding-right: -45px; }
.pr-xxl--45-i{
padding-right: -45px !important; }
.mr-xxl--45{
margin-right: -45px; }
.mr-xxl--45-i{
margin-right: -45px !important; }
.pr-xxl--40{
padding-right: -40px; }
.pr-xxl--40-i{
padding-right: -40px !important; }
.mr-xxl--40{
margin-right: -40px; }
.mr-xxl--40-i{
margin-right: -40px !important; }
.pr-xxl--35{
padding-right: -35px; }
.pr-xxl--35-i{
padding-right: -35px !important; }
.mr-xxl--35{
margin-right: -35px; }
.mr-xxl--35-i{
margin-right: -35px !important; }
.pr-xxl--30{
padding-right: -30px; }
.pr-xxl--30-i{
padding-right: -30px !important; }
.mr-xxl--30{
margin-right: -30px; }
.mr-xxl--30-i{
margin-right: -30px !important; }
.pr-xxl--25{
padding-right: -25px; }
.pr-xxl--25-i{
padding-right: -25px !important; }
.mr-xxl--25{
margin-right: -25px; }
.mr-xxl--25-i{
margin-right: -25px !important; }
.pr-xxl--20{
padding-right: -20px; }
.pr-xxl--20-i{
padding-right: -20px !important; }
.mr-xxl--20{
margin-right: -20px; }
.mr-xxl--20-i{
margin-right: -20px !important; }
.pr-xxl--15{
padding-right: -15px; }
.pr-xxl--15-i{
padding-right: -15px !important; }
.mr-xxl--15{
margin-right: -15px; }
.mr-xxl--15-i{
margin-right: -15px !important; }
.pr-xxl--10{
padding-right: -10px; }
.pr-xxl--10-i{
padding-right: -10px !important; }
.mr-xxl--10{
margin-right: -10px; }
.mr-xxl--10-i{
margin-right: -10px !important; }
.pr-xxl--5{
padding-right: -5px; }
.pr-xxl--5-i{
padding-right: -5px !important; }
.mr-xxl--5{
margin-right: -5px; }
.mr-xxl--5-i{
margin-right: -5px !important; }
.pr-xxl-0{
padding-right: 0px; }
.pr-xxl-0-i{
padding-right: 0px !important; }
.mr-xxl-0{
margin-right: 0px; }
.mr-xxl-0-i{
margin-right: 0px !important; }
.pr-xxl-5{
padding-right: 5px; }
.pr-xxl-5-i{
padding-right: 5px !important; }
.mr-xxl-5{
margin-right: 5px; }
.mr-xxl-5-i{
margin-right: 5px !important; }
.pr-xxl-10{
padding-right: 10px; }
.pr-xxl-10-i{
padding-right: 10px !important; }
.mr-xxl-10{
margin-right: 10px; }
.mr-xxl-10-i{
margin-right: 10px !important; }
.pr-xxl-15{
padding-right: 15px; }
.pr-xxl-15-i{
padding-right: 15px !important; }
.mr-xxl-15{
margin-right: 15px; }
.mr-xxl-15-i{
margin-right: 15px !important; }
.pr-xxl-20{
padding-right: 20px; }
.pr-xxl-20-i{
padding-right: 20px !important; }
.mr-xxl-20{
margin-right: 20px; }
.mr-xxl-20-i{
margin-right: 20px !important; }
.pr-xxl-25{
padding-right: 25px; }
.pr-xxl-25-i{
padding-right: 25px !important; }
.mr-xxl-25{
margin-right: 25px; }
.mr-xxl-25-i{
margin-right: 25px !important; }
.pr-xxl-30{
padding-right: 30px; }
.pr-xxl-30-i{
padding-right: 30px !important; }
.mr-xxl-30{
margin-right: 30px; }
.mr-xxl-30-i{
margin-right: 30px !important; }
.pr-xxl-35{
padding-right: 35px; }
.pr-xxl-35-i{
padding-right: 35px !important; }
.mr-xxl-35{
margin-right: 35px; }
.mr-xxl-35-i{
margin-right: 35px !important; }
.pr-xxl-40{
padding-right: 40px; }
.pr-xxl-40-i{
padding-right: 40px !important; }
.mr-xxl-40{
margin-right: 40px; }
.mr-xxl-40-i{
margin-right: 40px !important; }
.pr-xxl-45{
padding-right: 45px; }
.pr-xxl-45-i{
padding-right: 45px !important; }
.mr-xxl-45{
margin-right: 45px; }
.mr-xxl-45-i{
margin-right: 45px !important; }
.pr-xxl-50{
padding-right: 50px; }
.pr-xxl-50-i{
padding-right: 50px !important; }
.mr-xxl-50{
margin-right: 50px; }
.mr-xxl-50-i{
margin-right: 50px !important; }
.pr-xxl-55{
padding-right: 55px; }
.pr-xxl-55-i{
padding-right: 55px !important; }
.mr-xxl-55{
margin-right: 55px; }
.mr-xxl-55-i{
margin-right: 55px !important; }
.pr-xxl-60{
padding-right: 60px; }
.pr-xxl-60-i{
padding-right: 60px !important; }
.mr-xxl-60{
margin-right: 60px; }
.mr-xxl-60-i{
margin-right: 60px !important; }
.pr-xxl-65{
padding-right: 65px; }
.pr-xxl-65-i{
padding-right: 65px !important; }
.mr-xxl-65{
margin-right: 65px; }
.mr-xxl-65-i{
margin-right: 65px !important; }
.pr-xxl-70{
padding-right: 70px; }
.pr-xxl-70-i{
padding-right: 70px !important; }
.mr-xxl-70{
margin-right: 70px; }
.mr-xxl-70-i{
margin-right: 70px !important; }
.pr-xxl-75{
padding-right: 75px; }
.pr-xxl-75-i{
padding-right: 75px !important; }
.mr-xxl-75{
margin-right: 75px; }
.mr-xxl-75-i{
margin-right: 75px !important; }
.pr-xxl-80{
padding-right: 80px; }
.pr-xxl-80-i{
padding-right: 80px !important; }
.mr-xxl-80{
margin-right: 80px; }
.mr-xxl-80-i{
margin-right: 80px !important; }
.pr-xxl-85{
padding-right: 85px; }
.pr-xxl-85-i{
padding-right: 85px !important; }
.mr-xxl-85{
margin-right: 85px; }
.mr-xxl-85-i{
margin-right: 85px !important; }
.pr-xxl-90{
padding-right: 90px; }
.pr-xxl-90-i{
padding-right: 90px !important; }
.mr-xxl-90{
margin-right: 90px; }
.mr-xxl-90-i{
margin-right: 90px !important; }
.pr-xxl-95{
padding-right: 95px; }
.pr-xxl-95-i{
padding-right: 95px !important; }
.mr-xxl-95{
margin-right: 95px; }
.mr-xxl-95-i{
margin-right: 95px !important; }
.pr-xxl-100{
padding-right: 100px; }
.pr-xxl-100-i{
padding-right: 100px !important; }
.mr-xxl-100{
margin-right: 100px; }
.mr-xxl-100-i{
margin-right: 100px !important; }
.pb-xxl--100{
padding-bottom: -100px; }
.pb-xxl--100-i{
padding-bottom: -100px !important; }
.mb-xxl--100{
margin-bottom: -100px; }
.mb-xxl--100-i{
margin-bottom: -100px !important; }
.pb-xxl--95{
padding-bottom: -95px; }
.pb-xxl--95-i{
padding-bottom: -95px !important; }
.mb-xxl--95{
margin-bottom: -95px; }
.mb-xxl--95-i{
margin-bottom: -95px !important; }
.pb-xxl--90{
padding-bottom: -90px; }
.pb-xxl--90-i{
padding-bottom: -90px !important; }
.mb-xxl--90{
margin-bottom: -90px; }
.mb-xxl--90-i{
margin-bottom: -90px !important; }
.pb-xxl--85{
padding-bottom: -85px; }
.pb-xxl--85-i{
padding-bottom: -85px !important; }
.mb-xxl--85{
margin-bottom: -85px; }
.mb-xxl--85-i{
margin-bottom: -85px !important; }
.pb-xxl--80{
padding-bottom: -80px; }
.pb-xxl--80-i{
padding-bottom: -80px !important; }
.mb-xxl--80{
margin-bottom: -80px; }
.mb-xxl--80-i{
margin-bottom: -80px !important; }
.pb-xxl--75{
padding-bottom: -75px; }
.pb-xxl--75-i{
padding-bottom: -75px !important; }
.mb-xxl--75{
margin-bottom: -75px; }
.mb-xxl--75-i{
margin-bottom: -75px !important; }
.pb-xxl--70{
padding-bottom: -70px; }
.pb-xxl--70-i{
padding-bottom: -70px !important; }
.mb-xxl--70{
margin-bottom: -70px; }
.mb-xxl--70-i{
margin-bottom: -70px !important; }
.pb-xxl--65{
padding-bottom: -65px; }
.pb-xxl--65-i{
padding-bottom: -65px !important; }
.mb-xxl--65{
margin-bottom: -65px; }
.mb-xxl--65-i{
margin-bottom: -65px !important; }
.pb-xxl--60{
padding-bottom: -60px; }
.pb-xxl--60-i{
padding-bottom: -60px !important; }
.mb-xxl--60{
margin-bottom: -60px; }
.mb-xxl--60-i{
margin-bottom: -60px !important; }
.pb-xxl--55{
padding-bottom: -55px; }
.pb-xxl--55-i{
padding-bottom: -55px !important; }
.mb-xxl--55{
margin-bottom: -55px; }
.mb-xxl--55-i{
margin-bottom: -55px !important; }
.pb-xxl--50{
padding-bottom: -50px; }
.pb-xxl--50-i{
padding-bottom: -50px !important; }
.mb-xxl--50{
margin-bottom: -50px; }
.mb-xxl--50-i{
margin-bottom: -50px !important; }
.pb-xxl--45{
padding-bottom: -45px; }
.pb-xxl--45-i{
padding-bottom: -45px !important; }
.mb-xxl--45{
margin-bottom: -45px; }
.mb-xxl--45-i{
margin-bottom: -45px !important; }
.pb-xxl--40{
padding-bottom: -40px; }
.pb-xxl--40-i{
padding-bottom: -40px !important; }
.mb-xxl--40{
margin-bottom: -40px; }
.mb-xxl--40-i{
margin-bottom: -40px !important; }
.pb-xxl--35{
padding-bottom: -35px; }
.pb-xxl--35-i{
padding-bottom: -35px !important; }
.mb-xxl--35{
margin-bottom: -35px; }
.mb-xxl--35-i{
margin-bottom: -35px !important; }
.pb-xxl--30{
padding-bottom: -30px; }
.pb-xxl--30-i{
padding-bottom: -30px !important; }
.mb-xxl--30{
margin-bottom: -30px; }
.mb-xxl--30-i{
margin-bottom: -30px !important; }
.pb-xxl--25{
padding-bottom: -25px; }
.pb-xxl--25-i{
padding-bottom: -25px !important; }
.mb-xxl--25{
margin-bottom: -25px; }
.mb-xxl--25-i{
margin-bottom: -25px !important; }
.pb-xxl--20{
padding-bottom: -20px; }
.pb-xxl--20-i{
padding-bottom: -20px !important; }
.mb-xxl--20{
margin-bottom: -20px; }
.mb-xxl--20-i{
margin-bottom: -20px !important; }
.pb-xxl--15{
padding-bottom: -15px; }
.pb-xxl--15-i{
padding-bottom: -15px !important; }
.mb-xxl--15{
margin-bottom: -15px; }
.mb-xxl--15-i{
margin-bottom: -15px !important; }
.pb-xxl--10{
padding-bottom: -10px; }
.pb-xxl--10-i{
padding-bottom: -10px !important; }
.mb-xxl--10{
margin-bottom: -10px; }
.mb-xxl--10-i{
margin-bottom: -10px !important; }
.pb-xxl--5{
padding-bottom: -5px; }
.pb-xxl--5-i{
padding-bottom: -5px !important; }
.mb-xxl--5{
margin-bottom: -5px; }
.mb-xxl--5-i{
margin-bottom: -5px !important; }
.pb-xxl-0{
padding-bottom: 0px; }
.pb-xxl-0-i{
padding-bottom: 0px !important; }
.mb-xxl-0{
margin-bottom: 0px; }
.mb-xxl-0-i{
margin-bottom: 0px !important; }
.pb-xxl-5{
padding-bottom: 5px; }
.pb-xxl-5-i{
padding-bottom: 5px !important; }
.mb-xxl-5{
margin-bottom: 5px; }
.mb-xxl-5-i{
margin-bottom: 5px !important; }
.pb-xxl-10{
padding-bottom: 10px; }
.pb-xxl-10-i{
padding-bottom: 10px !important; }
.mb-xxl-10{
margin-bottom: 10px; }
.mb-xxl-10-i{
margin-bottom: 10px !important; }
.pb-xxl-15{
padding-bottom: 15px; }
.pb-xxl-15-i{
padding-bottom: 15px !important; }
.mb-xxl-15{
margin-bottom: 15px; }
.mb-xxl-15-i{
margin-bottom: 15px !important; }
.pb-xxl-20{
padding-bottom: 20px; }
.pb-xxl-20-i{
padding-bottom: 20px !important; }
.mb-xxl-20{
margin-bottom: 20px; }
.mb-xxl-20-i{
margin-bottom: 20px !important; }
.pb-xxl-25{
padding-bottom: 25px; }
.pb-xxl-25-i{
padding-bottom: 25px !important; }
.mb-xxl-25{
margin-bottom: 25px; }
.mb-xxl-25-i{
margin-bottom: 25px !important; }
.pb-xxl-30{
padding-bottom: 30px; }
.pb-xxl-30-i{
padding-bottom: 30px !important; }
.mb-xxl-30{
margin-bottom: 30px; }
.mb-xxl-30-i{
margin-bottom: 30px !important; }
.pb-xxl-35{
padding-bottom: 35px; }
.pb-xxl-35-i{
padding-bottom: 35px !important; }
.mb-xxl-35{
margin-bottom: 35px; }
.mb-xxl-35-i{
margin-bottom: 35px !important; }
.pb-xxl-40{
padding-bottom: 40px; }
.pb-xxl-40-i{
padding-bottom: 40px !important; }
.mb-xxl-40{
margin-bottom: 40px; }
.mb-xxl-40-i{
margin-bottom: 40px !important; }
.pb-xxl-45{
padding-bottom: 45px; }
.pb-xxl-45-i{
padding-bottom: 45px !important; }
.mb-xxl-45{
margin-bottom: 45px; }
.mb-xxl-45-i{
margin-bottom: 45px !important; }
.pb-xxl-50{
padding-bottom: 50px; }
.pb-xxl-50-i{
padding-bottom: 50px !important; }
.mb-xxl-50{
margin-bottom: 50px; }
.mb-xxl-50-i{
margin-bottom: 50px !important; }
.pb-xxl-55{
padding-bottom: 55px; }
.pb-xxl-55-i{
padding-bottom: 55px !important; }
.mb-xxl-55{
margin-bottom: 55px; }
.mb-xxl-55-i{
margin-bottom: 55px !important; }
.pb-xxl-60{
padding-bottom: 60px; }
.pb-xxl-60-i{
padding-bottom: 60px !important; }
.mb-xxl-60{
margin-bottom: 60px; }
.mb-xxl-60-i{
margin-bottom: 60px !important; }
.pb-xxl-65{
padding-bottom: 65px; }
.pb-xxl-65-i{
padding-bottom: 65px !important; }
.mb-xxl-65{
margin-bottom: 65px; }
.mb-xxl-65-i{
margin-bottom: 65px !important; }
.pb-xxl-70{
padding-bottom: 70px; }
.pb-xxl-70-i{
padding-bottom: 70px !important; }
.mb-xxl-70{
margin-bottom: 70px; }
.mb-xxl-70-i{
margin-bottom: 70px !important; }
.pb-xxl-75{
padding-bottom: 75px; }
.pb-xxl-75-i{
padding-bottom: 75px !important; }
.mb-xxl-75{
margin-bottom: 75px; }
.mb-xxl-75-i{
margin-bottom: 75px !important; }
.pb-xxl-80{
padding-bottom: 80px; }
.pb-xxl-80-i{
padding-bottom: 80px !important; }
.mb-xxl-80{
margin-bottom: 80px; }
.mb-xxl-80-i{
margin-bottom: 80px !important; }
.pb-xxl-85{
padding-bottom: 85px; }
.pb-xxl-85-i{
padding-bottom: 85px !important; }
.mb-xxl-85{
margin-bottom: 85px; }
.mb-xxl-85-i{
margin-bottom: 85px !important; }
.pb-xxl-90{
padding-bottom: 90px; }
.pb-xxl-90-i{
padding-bottom: 90px !important; }
.mb-xxl-90{
margin-bottom: 90px; }
.mb-xxl-90-i{
margin-bottom: 90px !important; }
.pb-xxl-95{
padding-bottom: 95px; }
.pb-xxl-95-i{
padding-bottom: 95px !important; }
.mb-xxl-95{
margin-bottom: 95px; }
.mb-xxl-95-i{
margin-bottom: 95px !important; }
.pb-xxl-100{
padding-bottom: 100px; }
.pb-xxl-100-i{
padding-bottom: 100px !important; }
.mb-xxl-100{
margin-bottom: 100px; }
.mb-xxl-100-i{
margin-bottom: 100px !important; }
.pl-xxl--100{
padding-left: -100px; }
.pl-xxl--100-i{
padding-left: -100px !important; }
.ml-xxl--100{
margin-left: -100px; }
.ml-xxl--100-i{
margin-left: -100px !important; }
.pl-xxl--95{
padding-left: -95px; }
.pl-xxl--95-i{
padding-left: -95px !important; }
.ml-xxl--95{
margin-left: -95px; }
.ml-xxl--95-i{
margin-left: -95px !important; }
.pl-xxl--90{
padding-left: -90px; }
.pl-xxl--90-i{
padding-left: -90px !important; }
.ml-xxl--90{
margin-left: -90px; }
.ml-xxl--90-i{
margin-left: -90px !important; }
.pl-xxl--85{
padding-left: -85px; }
.pl-xxl--85-i{
padding-left: -85px !important; }
.ml-xxl--85{
margin-left: -85px; }
.ml-xxl--85-i{
margin-left: -85px !important; }
.pl-xxl--80{
padding-left: -80px; }
.pl-xxl--80-i{
padding-left: -80px !important; }
.ml-xxl--80{
margin-left: -80px; }
.ml-xxl--80-i{
margin-left: -80px !important; }
.pl-xxl--75{
padding-left: -75px; }
.pl-xxl--75-i{
padding-left: -75px !important; }
.ml-xxl--75{
margin-left: -75px; }
.ml-xxl--75-i{
margin-left: -75px !important; }
.pl-xxl--70{
padding-left: -70px; }
.pl-xxl--70-i{
padding-left: -70px !important; }
.ml-xxl--70{
margin-left: -70px; }
.ml-xxl--70-i{
margin-left: -70px !important; }
.pl-xxl--65{
padding-left: -65px; }
.pl-xxl--65-i{
padding-left: -65px !important; }
.ml-xxl--65{
margin-left: -65px; }
.ml-xxl--65-i{
margin-left: -65px !important; }
.pl-xxl--60{
padding-left: -60px; }
.pl-xxl--60-i{
padding-left: -60px !important; }
.ml-xxl--60{
margin-left: -60px; }
.ml-xxl--60-i{
margin-left: -60px !important; }
.pl-xxl--55{
padding-left: -55px; }
.pl-xxl--55-i{
padding-left: -55px !important; }
.ml-xxl--55{
margin-left: -55px; }
.ml-xxl--55-i{
margin-left: -55px !important; }
.pl-xxl--50{
padding-left: -50px; }
.pl-xxl--50-i{
padding-left: -50px !important; }
.ml-xxl--50{
margin-left: -50px; }
.ml-xxl--50-i{
margin-left: -50px !important; }
.pl-xxl--45{
padding-left: -45px; }
.pl-xxl--45-i{
padding-left: -45px !important; }
.ml-xxl--45{
margin-left: -45px; }
.ml-xxl--45-i{
margin-left: -45px !important; }
.pl-xxl--40{
padding-left: -40px; }
.pl-xxl--40-i{
padding-left: -40px !important; }
.ml-xxl--40{
margin-left: -40px; }
.ml-xxl--40-i{
margin-left: -40px !important; }
.pl-xxl--35{
padding-left: -35px; }
.pl-xxl--35-i{
padding-left: -35px !important; }
.ml-xxl--35{
margin-left: -35px; }
.ml-xxl--35-i{
margin-left: -35px !important; }
.pl-xxl--30{
padding-left: -30px; }
.pl-xxl--30-i{
padding-left: -30px !important; }
.ml-xxl--30{
margin-left: -30px; }
.ml-xxl--30-i{
margin-left: -30px !important; }
.pl-xxl--25{
padding-left: -25px; }
.pl-xxl--25-i{
padding-left: -25px !important; }
.ml-xxl--25{
margin-left: -25px; }
.ml-xxl--25-i{
margin-left: -25px !important; }
.pl-xxl--20{
padding-left: -20px; }
.pl-xxl--20-i{
padding-left: -20px !important; }
.ml-xxl--20{
margin-left: -20px; }
.ml-xxl--20-i{
margin-left: -20px !important; }
.pl-xxl--15{
padding-left: -15px; }
.pl-xxl--15-i{
padding-left: -15px !important; }
.ml-xxl--15{
margin-left: -15px; }
.ml-xxl--15-i{
margin-left: -15px !important; }
.pl-xxl--10{
padding-left: -10px; }
.pl-xxl--10-i{
padding-left: -10px !important; }
.ml-xxl--10{
margin-left: -10px; }
.ml-xxl--10-i{
margin-left: -10px !important; }
.pl-xxl--5{
padding-left: -5px; }
.pl-xxl--5-i{
padding-left: -5px !important; }
.ml-xxl--5{
margin-left: -5px; }
.ml-xxl--5-i{
margin-left: -5px !important; }
.pl-xxl-0{
padding-left: 0px; }
.pl-xxl-0-i{
padding-left: 0px !important; }
.ml-xxl-0{
margin-left: 0px; }
.ml-xxl-0-i{
margin-left: 0px !important; }
.pl-xxl-5{
padding-left: 5px; }
.pl-xxl-5-i{
padding-left: 5px !important; }
.ml-xxl-5{
margin-left: 5px; }
.ml-xxl-5-i{
margin-left: 5px !important; }
.pl-xxl-10{
padding-left: 10px; }
.pl-xxl-10-i{
padding-left: 10px !important; }
.ml-xxl-10{
margin-left: 10px; }
.ml-xxl-10-i{
margin-left: 10px !important; }
.pl-xxl-15{
padding-left: 15px; }
.pl-xxl-15-i{
padding-left: 15px !important; }
.ml-xxl-15{
margin-left: 15px; }
.ml-xxl-15-i{
margin-left: 15px !important; }
.pl-xxl-20{
padding-left: 20px; }
.pl-xxl-20-i{
padding-left: 20px !important; }
.ml-xxl-20{
margin-left: 20px; }
.ml-xxl-20-i{
margin-left: 20px !important; }
.pl-xxl-25{
padding-left: 25px; }
.pl-xxl-25-i{
padding-left: 25px !important; }
.ml-xxl-25{
margin-left: 25px; }
.ml-xxl-25-i{
margin-left: 25px !important; }
.pl-xxl-30{
padding-left: 30px; }
.pl-xxl-30-i{
padding-left: 30px !important; }
.ml-xxl-30{
margin-left: 30px; }
.ml-xxl-30-i{
margin-left: 30px !important; }
.pl-xxl-35{
padding-left: 35px; }
.pl-xxl-35-i{
padding-left: 35px !important; }
.ml-xxl-35{
margin-left: 35px; }
.ml-xxl-35-i{
margin-left: 35px !important; }
.pl-xxl-40{
padding-left: 40px; }
.pl-xxl-40-i{
padding-left: 40px !important; }
.ml-xxl-40{
margin-left: 40px; }
.ml-xxl-40-i{
margin-left: 40px !important; }
.pl-xxl-45{
padding-left: 45px; }
.pl-xxl-45-i{
padding-left: 45px !important; }
.ml-xxl-45{
margin-left: 45px; }
.ml-xxl-45-i{
margin-left: 45px !important; }
.pl-xxl-50{
padding-left: 50px; }
.pl-xxl-50-i{
padding-left: 50px !important; }
.ml-xxl-50{
margin-left: 50px; }
.ml-xxl-50-i{
margin-left: 50px !important; }
.pl-xxl-55{
padding-left: 55px; }
.pl-xxl-55-i{
padding-left: 55px !important; }
.ml-xxl-55{
margin-left: 55px; }
.ml-xxl-55-i{
margin-left: 55px !important; }
.pl-xxl-60{
padding-left: 60px; }
.pl-xxl-60-i{
padding-left: 60px !important; }
.ml-xxl-60{
margin-left: 60px; }
.ml-xxl-60-i{
margin-left: 60px !important; }
.pl-xxl-65{
padding-left: 65px; }
.pl-xxl-65-i{
padding-left: 65px !important; }
.ml-xxl-65{
margin-left: 65px; }
.ml-xxl-65-i{
margin-left: 65px !important; }
.pl-xxl-70{
padding-left: 70px; }
.pl-xxl-70-i{
padding-left: 70px !important; }
.ml-xxl-70{
margin-left: 70px; }
.ml-xxl-70-i{
margin-left: 70px !important; }
.pl-xxl-75{
padding-left: 75px; }
.pl-xxl-75-i{
padding-left: 75px !important; }
.ml-xxl-75{
margin-left: 75px; }
.ml-xxl-75-i{
margin-left: 75px !important; }
.pl-xxl-80{
padding-left: 80px; }
.pl-xxl-80-i{
padding-left: 80px !important; }
.ml-xxl-80{
margin-left: 80px; }
.ml-xxl-80-i{
margin-left: 80px !important; }
.pl-xxl-85{
padding-left: 85px; }
.pl-xxl-85-i{
padding-left: 85px !important; }
.ml-xxl-85{
margin-left: 85px; }
.ml-xxl-85-i{
margin-left: 85px !important; }
.pl-xxl-90{
padding-left: 90px; }
.pl-xxl-90-i{
padding-left: 90px !important; }
.ml-xxl-90{
margin-left: 90px; }
.ml-xxl-90-i{
margin-left: 90px !important; }
.pl-xxl-95{
padding-left: 95px; }
.pl-xxl-95-i{
padding-left: 95px !important; }
.ml-xxl-95{
margin-left: 95px; }
.ml-xxl-95-i{
margin-left: 95px !important; }
.pl-xxl-100{
padding-left: 100px; }
.pl-xxl-100-i{
padding-left: 100px !important; }
.ml-xxl-100{
margin-left: 100px; }
.ml-xxl-100-i{
margin-left: 100px !important; }
.pa-xxl--100{
padding: -100px; }
.ma-xxl--100{
margin: -100px; }
.pv-xxl--100{
padding-top: -100px;
padding-bottom: -100px; }
.mv-xxl--100{
margin-top: -100px;
margin-bottom: -100px; }
.ph-xxl--100{
padding-left: -100px;
padding-right: -100px; }
.mh-xxl--100{
margin-left: -100px;
padding-right: -100px; }
.pa-xxl--95{
padding: -95px; }
.ma-xxl--95{
margin: -95px; }
.pv-xxl--95{
padding-top: -95px;
padding-bottom: -95px; }
.mv-xxl--95{
margin-top: -95px;
margin-bottom: -95px; }
.ph-xxl--95{
padding-left: -95px;
padding-right: -95px; }
.mh-xxl--95{
margin-left: -95px;
padding-right: -95px; }
.pa-xxl--90{
padding: -90px; }
.ma-xxl--90{
margin: -90px; }
.pv-xxl--90{
padding-top: -90px;
padding-bottom: -90px; }
.mv-xxl--90{
margin-top: -90px;
margin-bottom: -90px; }
.ph-xxl--90{
padding-left: -90px;
padding-right: -90px; }
.mh-xxl--90{
margin-left: -90px;
padding-right: -90px; }
.pa-xxl--85{
padding: -85px; }
.ma-xxl--85{
margin: -85px; }
.pv-xxl--85{
padding-top: -85px;
padding-bottom: -85px; }
.mv-xxl--85{
margin-top: -85px;
margin-bottom: -85px; }
.ph-xxl--85{
padding-left: -85px;
padding-right: -85px; }
.mh-xxl--85{
margin-left: -85px;
padding-right: -85px; }
.pa-xxl--80{
padding: -80px; }
.ma-xxl--80{
margin: -80px; }
.pv-xxl--80{
padding-top: -80px;
padding-bottom: -80px; }
.mv-xxl--80{
margin-top: -80px;
margin-bottom: -80px; }
.ph-xxl--80{
padding-left: -80px;
padding-right: -80px; }
.mh-xxl--80{
margin-left: -80px;
padding-right: -80px; }
.pa-xxl--75{
padding: -75px; }
.ma-xxl--75{
margin: -75px; }
.pv-xxl--75{
padding-top: -75px;
padding-bottom: -75px; }
.mv-xxl--75{
margin-top: -75px;
margin-bottom: -75px; }
.ph-xxl--75{
padding-left: -75px;
padding-right: -75px; }
.mh-xxl--75{
margin-left: -75px;
padding-right: -75px; }
.pa-xxl--70{
padding: -70px; }
.ma-xxl--70{
margin: -70px; }
.pv-xxl--70{
padding-top: -70px;
padding-bottom: -70px; }
.mv-xxl--70{
margin-top: -70px;
margin-bottom: -70px; }
.ph-xxl--70{
padding-left: -70px;
padding-right: -70px; }
.mh-xxl--70{
margin-left: -70px;
padding-right: -70px; }
.pa-xxl--65{
padding: -65px; }
.ma-xxl--65{
margin: -65px; }
.pv-xxl--65{
padding-top: -65px;
padding-bottom: -65px; }
.mv-xxl--65{
margin-top: -65px;
margin-bottom: -65px; }
.ph-xxl--65{
padding-left: -65px;
padding-right: -65px; }
.mh-xxl--65{
margin-left: -65px;
padding-right: -65px; }
.pa-xxl--60{
padding: -60px; }
.ma-xxl--60{
margin: -60px; }
.pv-xxl--60{
padding-top: -60px;
padding-bottom: -60px; }
.mv-xxl--60{
margin-top: -60px;
margin-bottom: -60px; }
.ph-xxl--60{
padding-left: -60px;
padding-right: -60px; }
.mh-xxl--60{
margin-left: -60px;
padding-right: -60px; }
.pa-xxl--55{
padding: -55px; }
.ma-xxl--55{
margin: -55px; }
.pv-xxl--55{
padding-top: -55px;
padding-bottom: -55px; }
.mv-xxl--55{
margin-top: -55px;
margin-bottom: -55px; }
.ph-xxl--55{
padding-left: -55px;
padding-right: -55px; }
.mh-xxl--55{
margin-left: -55px;
padding-right: -55px; }
.pa-xxl--50{
padding: -50px; }
.ma-xxl--50{
margin: -50px; }
.pv-xxl--50{
padding-top: -50px;
padding-bottom: -50px; }
.mv-xxl--50{
margin-top: -50px;
margin-bottom: -50px; }
.ph-xxl--50{
padding-left: -50px;
padding-right: -50px; }
.mh-xxl--50{
margin-left: -50px;
padding-right: -50px; }
.pa-xxl--45{
padding: -45px; }
.ma-xxl--45{
margin: -45px; }
.pv-xxl--45{
padding-top: -45px;
padding-bottom: -45px; }
.mv-xxl--45{
margin-top: -45px;
margin-bottom: -45px; }
.ph-xxl--45{
padding-left: -45px;
padding-right: -45px; }
.mh-xxl--45{
margin-left: -45px;
padding-right: -45px; }
.pa-xxl--40{
padding: -40px; }
.ma-xxl--40{
margin: -40px; }
.pv-xxl--40{
padding-top: -40px;
padding-bottom: -40px; }
.mv-xxl--40{
margin-top: -40px;
margin-bottom: -40px; }
.ph-xxl--40{
padding-left: -40px;
padding-right: -40px; }
.mh-xxl--40{
margin-left: -40px;
padding-right: -40px; }
.pa-xxl--35{
padding: -35px; }
.ma-xxl--35{
margin: -35px; }
.pv-xxl--35{
padding-top: -35px;
padding-bottom: -35px; }
.mv-xxl--35{
margin-top: -35px;
margin-bottom: -35px; }
.ph-xxl--35{
padding-left: -35px;
padding-right: -35px; }
.mh-xxl--35{
margin-left: -35px;
padding-right: -35px; }
.pa-xxl--30{
padding: -30px; }
.ma-xxl--30{
margin: -30px; }
.pv-xxl--30{
padding-top: -30px;
padding-bottom: -30px; }
.mv-xxl--30{
margin-top: -30px;
margin-bottom: -30px; }
.ph-xxl--30{
padding-left: -30px;
padding-right: -30px; }
.mh-xxl--30{
margin-left: -30px;
padding-right: -30px; }
.pa-xxl--25{
padding: -25px; }
.ma-xxl--25{
margin: -25px; }
.pv-xxl--25{
padding-top: -25px;
padding-bottom: -25px; }
.mv-xxl--25{
margin-top: -25px;
margin-bottom: -25px; }
.ph-xxl--25{
padding-left: -25px;
padding-right: -25px; }
.mh-xxl--25{
margin-left: -25px;
padding-right: -25px; }
.pa-xxl--20{
padding: -20px; }
.ma-xxl--20{
margin: -20px; }
.pv-xxl--20{
padding-top: -20px;
padding-bottom: -20px; }
.mv-xxl--20{
margin-top: -20px;
margin-bottom: -20px; }
.ph-xxl--20{
padding-left: -20px;
padding-right: -20px; }
.mh-xxl--20{
margin-left: -20px;
padding-right: -20px; }
.pa-xxl--15{
padding: -15px; }
.ma-xxl--15{
margin: -15px; }
.pv-xxl--15{
padding-top: -15px;
padding-bottom: -15px; }
.mv-xxl--15{
margin-top: -15px;
margin-bottom: -15px; }
.ph-xxl--15{
padding-left: -15px;
padding-right: -15px; }
.mh-xxl--15{
margin-left: -15px;
padding-right: -15px; }
.pa-xxl--10{
padding: -10px; }
.ma-xxl--10{
margin: -10px; }
.pv-xxl--10{
padding-top: -10px;
padding-bottom: -10px; }
.mv-xxl--10{
margin-top: -10px;
margin-bottom: -10px; }
.ph-xxl--10{
padding-left: -10px;
padding-right: -10px; }
.mh-xxl--10{
margin-left: -10px;
padding-right: -10px; }
.pa-xxl--5{
padding: -5px; }
.ma-xxl--5{
margin: -5px; }
.pv-xxl--5{
padding-top: -5px;
padding-bottom: -5px; }
.mv-xxl--5{
margin-top: -5px;
margin-bottom: -5px; }
.ph-xxl--5{
padding-left: -5px;
padding-right: -5px; }
.mh-xxl--5{
margin-left: -5px;
padding-right: -5px; }
.pa-xxl-0{
padding: 0px; }
.ma-xxl-0{
margin: 0px; }
.pv-xxl-0{
padding-top: 0px;
padding-bottom: 0px; }
.mv-xxl-0{
margin-top: 0px;
margin-bottom: 0px; }
.ph-xxl-0{
padding-left: 0px;
padding-right: 0px; }
.mh-xxl-0{
margin-left: 0px;
padding-right: 0px; }
.pa-xxl-5{
padding: 5px; }
.ma-xxl-5{
margin: 5px; }
.pv-xxl-5{
padding-top: 5px;
padding-bottom: 5px; }
.mv-xxl-5{
margin-top: 5px;
margin-bottom: 5px; }
.ph-xxl-5{
padding-left: 5px;
padding-right: 5px; }
.mh-xxl-5{
margin-left: 5px;
padding-right: 5px; }
.pa-xxl-10{
padding: 10px; }
.ma-xxl-10{
margin: 10px; }
.pv-xxl-10{
padding-top: 10px;
padding-bottom: 10px; }
.mv-xxl-10{
margin-top: 10px;
margin-bottom: 10px; }
.ph-xxl-10{
padding-left: 10px;
padding-right: 10px; }
.mh-xxl-10{
margin-left: 10px;
padding-right: 10px; }
.pa-xxl-15{
padding: 15px; }
.ma-xxl-15{
margin: 15px; }
.pv-xxl-15{
padding-top: 15px;
padding-bottom: 15px; }
.mv-xxl-15{
margin-top: 15px;
margin-bottom: 15px; }
.ph-xxl-15{
padding-left: 15px;
padding-right: 15px; }
.mh-xxl-15{
margin-left: 15px;
padding-right: 15px; }
.pa-xxl-20{
padding: 20px; }
.ma-xxl-20{
margin: 20px; }
.pv-xxl-20{
padding-top: 20px;
padding-bottom: 20px; }
.mv-xxl-20{
margin-top: 20px;
margin-bottom: 20px; }
.ph-xxl-20{
padding-left: 20px;
padding-right: 20px; }
.mh-xxl-20{
margin-left: 20px;
padding-right: 20px; }
.pa-xxl-25{
padding: 25px; }
.ma-xxl-25{
margin: 25px; }
.pv-xxl-25{
padding-top: 25px;
padding-bottom: 25px; }
.mv-xxl-25{
margin-top: 25px;
margin-bottom: 25px; }
.ph-xxl-25{
padding-left: 25px;
padding-right: 25px; }
.mh-xxl-25{
margin-left: 25px;
padding-right: 25px; }
.pa-xxl-30{
padding: 30px; }
.ma-xxl-30{
margin: 30px; }
.pv-xxl-30{
padding-top: 30px;
padding-bottom: 30px; }
.mv-xxl-30{
margin-top: 30px;
margin-bottom: 30px; }
.ph-xxl-30{
padding-left: 30px;
padding-right: 30px; }
.mh-xxl-30{
margin-left: 30px;
padding-right: 30px; }
.pa-xxl-35{
padding: 35px; }
.ma-xxl-35{
margin: 35px; }
.pv-xxl-35{
padding-top: 35px;
padding-bottom: 35px; }
.mv-xxl-35{
margin-top: 35px;
margin-bottom: 35px; }
.ph-xxl-35{
padding-left: 35px;
padding-right: 35px; }
.mh-xxl-35{
margin-left: 35px;
padding-right: 35px; }
.pa-xxl-40{
padding: 40px; }
.ma-xxl-40{
margin: 40px; }
.pv-xxl-40{
padding-top: 40px;
padding-bottom: 40px; }
.mv-xxl-40{
margin-top: 40px;
margin-bottom: 40px; }
.ph-xxl-40{
padding-left: 40px;
padding-right: 40px; }
.mh-xxl-40{
margin-left: 40px;
padding-right: 40px; }
.pa-xxl-45{
padding: 45px; }
.ma-xxl-45{
margin: 45px; }
.pv-xxl-45{
padding-top: 45px;
padding-bottom: 45px; }
.mv-xxl-45{
margin-top: 45px;
margin-bottom: 45px; }
.ph-xxl-45{
padding-left: 45px;
padding-right: 45px; }
.mh-xxl-45{
margin-left: 45px;
padding-right: 45px; }
.pa-xxl-50{
padding: 50px; }
.ma-xxl-50{
margin: 50px; }
.pv-xxl-50{
padding-top: 50px;
padding-bottom: 50px; }
.mv-xxl-50{
margin-top: 50px;
margin-bottom: 50px; }
.ph-xxl-50{
padding-left: 50px;
padding-right: 50px; }
.mh-xxl-50{
margin-left: 50px;
padding-right: 50px; }
.pa-xxl-55{
padding: 55px; }
.ma-xxl-55{
margin: 55px; }
.pv-xxl-55{
padding-top: 55px;
padding-bottom: 55px; }
.mv-xxl-55{
margin-top: 55px;
margin-bottom: 55px; }
.ph-xxl-55{
padding-left: 55px;
padding-right: 55px; }
.mh-xxl-55{
margin-left: 55px;
padding-right: 55px; }
.pa-xxl-60{
padding: 60px; }
.ma-xxl-60{
margin: 60px; }
.pv-xxl-60{
padding-top: 60px;
padding-bottom: 60px; }
.mv-xxl-60{
margin-top: 60px;
margin-bottom: 60px; }
.ph-xxl-60{
padding-left: 60px;
padding-right: 60px; }
.mh-xxl-60{
margin-left: 60px;
padding-right: 60px; }
.pa-xxl-65{
padding: 65px; }
.ma-xxl-65{
margin: 65px; }
.pv-xxl-65{
padding-top: 65px;
padding-bottom: 65px; }
.mv-xxl-65{
margin-top: 65px;
margin-bottom: 65px; }
.ph-xxl-65{
padding-left: 65px;
padding-right: 65px; }
.mh-xxl-65{
margin-left: 65px;
padding-right: 65px; }
.pa-xxl-70{
padding: 70px; }
.ma-xxl-70{
margin: 70px; }
.pv-xxl-70{
padding-top: 70px;
padding-bottom: 70px; }
.mv-xxl-70{
margin-top: 70px;
margin-bottom: 70px; }
.ph-xxl-70{
padding-left: 70px;
padding-right: 70px; }
.mh-xxl-70{
margin-left: 70px;
padding-right: 70px; }
.pa-xxl-75{
padding: 75px; }
.ma-xxl-75{
margin: 75px; }
.pv-xxl-75{
padding-top: 75px;
padding-bottom: 75px; }
.mv-xxl-75{
margin-top: 75px;
margin-bottom: 75px; }
.ph-xxl-75{
padding-left: 75px;
padding-right: 75px; }
.mh-xxl-75{
margin-left: 75px;
padding-right: 75px; }
.pa-xxl-80{
padding: 80px; }
.ma-xxl-80{
margin: 80px; }
.pv-xxl-80{
padding-top: 80px;
padding-bottom: 80px; }
.mv-xxl-80{
margin-top: 80px;
margin-bottom: 80px; }
.ph-xxl-80{
padding-left: 80px;
padding-right: 80px; }
.mh-xxl-80{
margin-left: 80px;
padding-right: 80px; }
.pa-xxl-85{
padding: 85px; }
.ma-xxl-85{
margin: 85px; }
.pv-xxl-85{
padding-top: 85px;
padding-bottom: 85px; }
.mv-xxl-85{
margin-top: 85px;
margin-bottom: 85px; }
.ph-xxl-85{
padding-left: 85px;
padding-right: 85px; }
.mh-xxl-85{
margin-left: 85px;
padding-right: 85px; }
.pa-xxl-90{
padding: 90px; }
.ma-xxl-90{
margin: 90px; }
.pv-xxl-90{
padding-top: 90px;
padding-bottom: 90px; }
.mv-xxl-90{
margin-top: 90px;
margin-bottom: 90px; }
.ph-xxl-90{
padding-left: 90px;
padding-right: 90px; }
.mh-xxl-90{
margin-left: 90px;
padding-right: 90px; }
.pa-xxl-95{
padding: 95px; }
.ma-xxl-95{
margin: 95px; }
.pv-xxl-95{
padding-top: 95px;
padding-bottom: 95px; }
.mv-xxl-95{
margin-top: 95px;
margin-bottom: 95px; }
.ph-xxl-95{
padding-left: 95px;
padding-right: 95px; }
.mh-xxl-95{
margin-left: 95px;
padding-right: 95px; }
.pa-xxl-100{
padding: 100px; }
.ma-xxl-100{
margin: 100px; }
.pv-xxl-100{
padding-top: 100px;
padding-bottom: 100px; }
.mv-xxl-100{
margin-top: 100px;
margin-bottom: 100px; }
.ph-xxl-100{
padding-left: 100px;
padding-right: 100px; }
.mh-xxl-100{
margin-left: 100px;
padding-right: 100px; }
.col-xxl{
position: relative;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
.col-xxl-1{
-ms-flex: 0 0 8.33333%;
flex: 0 0 8.33333%;
max-width: 8.33333%; }
.col-xxl-2{
-ms-flex: 0 0 16.66667%;
flex: 0 0 16.66667%;
max-width: 16.66667%; }
.col-xxl-3{
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; }
.col-xxl-4{
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.col-xxl-5{
-ms-flex: 0 0 41.66667%;
flex: 0 0 41.66667%;
max-width: 41.66667%; }
.col-xxl-6{
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.col-xxl-7{
-ms-flex: 0 0 58.33333%;
flex: 0 0 58.33333%;
max-width: 58.33333%; }
.col-xxl-8{
-ms-flex: 0 0 66.66667%;
flex: 0 0 66.66667%;
max-width: 66.66667%; }
.col-xxl-9{
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%; }
.col-xxl-10{
-ms-flex: 0 0 83.33333%;
flex: 0 0 83.33333%;
max-width: 83.33333%; }
.col-xxl-11{
-ms-flex: 0 0 91.66667%;
flex: 0 0 91.66667%;
max-width: 91.66667%; }
.col-xxl-12{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%; }
.pull-xxl-0{
right: auto; }
.pull-xxl-1{
right: 8.33333%; }
.pull-xxl-2{
right: 16.66667%; }
.pull-xxl-3{
right: 25%; }
.pull-xxl-4{
right: 33.33333%; }
.pull-xxl-5{
right: 41.66667%; }
.pull-xxl-6{
right: 50%; }
.pull-xxl-7{
right: 58.33333%; }
.pull-xxl-8{
right: 66.66667%; }
.pull-xxl-9{
right: 75%; }
.pull-xxl-10{
right: 83.33333%; }
.pull-xxl-11{
right: 91.66667%; }
.pull-xxl-12{
right: 100%; }
.push-xxl-0{
left: auto; }
.push-xxl-1{
left: 8.33333%; }
.push-xxl-2{
left: 16.66667%; }
.push-xxl-3{
left: 25%; }
.push-xxl-4{
left: 33.33333%; }
.push-xxl-5{
left: 41.66667%; }
.push-xxl-6{
left: 50%; }
.push-xxl-7{
left: 58.33333%; }
.push-xxl-8{
left: 66.66667%; }
.push-xxl-9{
left: 75%; }
.push-xxl-10{
left: 83.33333%; }
.push-xxl-11{
left: 91.66667%; }
.push-xxl-12{
left: 100%; }
.offset-xxl-0{
margin-left: 0%; }
.offset-xxl-1{
margin-left: 8.33333%; }
.offset-xxl-2{
margin-left: 16.66667%; }
.offset-xxl-3{
margin-left: 25%; }
.offset-xxl-4{
margin-left: 33.33333%; }
.offset-xxl-5{
margin-left: 41.66667%; }
.offset-xxl-6{
margin-left: 50%; }
.offset-xxl-7{
margin-left: 58.33333%; }
.offset-xxl-8{
margin-left: 66.66667%; }
.offset-xxl-9{
margin-left: 75%; }
.offset-xxl-10{
margin-left: 83.33333%; }
.offset-xxl-11{
margin-left: 91.66667%; }
.site-header.header-split .left-col,
.site-header.header-split .right-col{
width: 20%; }
.site-header.header-vertical .header-minicart .product_list_widget{
max-height: 500px; }
.header-search.search-style-input input.fake-input{
display: inline-block;
width: 250px; }
.site-header.header-vertical .header-wishlist .product_list_widget{
max-height: 600px; } }
@media (max-width: 1919px){
.hidden-xl-down{
display: none !important; }
.site-footer.site-footer--dark .col-offset{
padding-left: 15px; } }
@media print{
.visible-print-block{
display: block !important; }
.visible-print-inline{
display: inline !important; }
.visible-print-inline-block{
display: inline-block !important; }
.hidden-print{
display: none !important; }
*,
*::before,
*::after,
*::first-letter,
*::first-line{
text-shadow: none !important;
box-shadow: none !important; }
a,
a:visited{
text-decoration: underline; }
abbr[title]::after{
content: " (" attr(title) ")"; }
pre,
blockquote{
border: 1px solid #999;
page-break-inside: avoid; }
thead{
display: table-header-group; }
tr,
img{
page-break-inside: avoid; }
p,
h2,
h3{
orphans: 3;
widows: 3; }
h2,
h3{
page-break-after: avoid; }
.navbar{
display: none; }
.btn > .caret,
.dropup > .btn > .caret{
border-top-color: #000 !important; }
.tag{
border: 1px solid #000; }
.table{
border-collapse: collapse !important; }
.table td,
.table th{
background-color: #fff !important; }
.table-bordered th,
.table-bordered td{
border: 1px solid #ddd !important; } }
@media (max-width: 543px){
.hidden-xs-down{
display: none !important; }
.site-footer .mc4wp-form input[type="email"]{
width: 100%; }
.site-footer .mc4wp-form button[type="submit"], .site-footer .mc4wp-form [type="submit"].amely-button{
margin-top: 20px;
margin-left: 0; }
.header-tools .header-login{
display: none !important; }
.site-mobile-menu .header-login{
display: block;
font-size: 15px; }
form.woocommerce-ResetPassword{
max-width: none;
width: 80%; }
.woocommerce form .form-row.form-row-last{
margin-bottom: 20px; }
.amely-banner-grid-5 .banners-column-1 .tm-shortcode:nth-child(2),
.amely-banner-grid-5 .banners-column-1 .tm-shortcode:nth-child(3){
width: 100%; }
.amely-banner-grid-6 .banners-column-1 .tm-shortcode:nth-child(2),
.amely-banner-grid-6 .banners-column-1 .tm-shortcode:nth-child(3){
width: 100%; }
.amely-banner4.text-position-custom{
bottom: 0 !important;
right: 0 !important;
left: auto !important;
top: auto !important; }
.amely-banner4.text-position-custom h1, .amely-banner4.text-position-custom h2, .amely-banner4.text-position-custom h3, .amely-banner4.text-position-custom h4, .amely-banner4.text-position-custom h5, .amely-banner4.text-position-custom h6{
font-size: 30px !important; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-next{
right: 10px; }
.amely-blog .slick-arrow.post-carousel-arrow.slick-prev{
left: 10px; }
.amely-blog .slick-slide{
opacity: .5; }
.amely-blog .slick-active,
.amely-blog .slick-current{
opacity: 1; }
.amely-brands-carousel .tm-carousel-item{
margin: 0; }
.amely-brands-carousel .slick-arrow.slick-next{
right: 10px; }
.amely-brands-carousel .slick-arrow.slick-prev{
left: 10px; }
.amely-brands-carousel .slick-slide{
opacity: .5; }
.amely-brands-carousel .slick-active{
opacity: 1; }
.amely-image-carousel .slick-arrow.slick-next{
right: 10px; }
.amely-image-carousel .slick-arrow.slick-prev{
left: 10px; }
.amely-image-carousel .slick-slide{
opacity: .5; }
.amely-image-carousel .slick-active{
opacity: 1; }
.amely-product-categories.categories-layout-carousel .slick-arrow.slick-next{
right: 10px; }
.amely-product-categories.categories-layout-carousel .slick-arrow.slick-prev{
left: 10px; }
.amely-product-categories.categories-layout-carousel .slick-slide{
opacity: .5; }
.amely-product-categories.categories-layout-carousel .slick-active{
opacity: 1; }
.amely-product-carousel .products .slick-arrow.slick-next{
right: 10px; }
.amely-product-carousel .products .slick-arrow.slick-prev{
left: 10px; }
.amely-product-carousel .products .slick-slide{
opacity: .5; }
.amely-product-carousel .products .slick-active,
.amely-product-carousel .products .slick-current{
opacity: 1; } }
@media (max-width: 991px){
.hidden-md-down{
display: none !important; }
.comment-text span.date{
display: block;
margin: 0; }
.comment-text span.date:before{
display: none; }
.topbar{
display: table;
width: 100%;
text-align: center; }
.topbar > .container{
display: table-cell;
vertical-align: middle; }
.topbar .topbar-left > div{
float: none; }
.topbar .topbar-left,
.topbar .topbar-right,
.topbar .topbar-center{
line-height: 1.5 !important; }
.topbar .topbar-text{
padding: 5px 0; }
.widget_tm .tm-social{
float: left; }
.widget_tm h3.widget-title{
text-align: left; }
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content{
width: 100%;
padding: 0; }
a.show-categories-menu{
display: inline-block; }
ul.product-categories-menu{
width: auto !important;
display: none;
max-height: 300px; }
ul.product-categories-menu li.cat-item{
display: block;
padding-top: 10px;
border: none; }
ul.product-categories-menu li.cat-item > a:after{
display: none; }
ul.product-categories-menu .ps-scrollbar-x-rail,
ul.product-categories-menu .ps-scrollbar-y-rail{
opacity: .6; }
.cart-collaterals .cart_totals{
float: none;
width: 100%;
margin-top: 30px; }
.cart-collaterals table.shop_table.shop_table th{
display: none; }
.cart-collaterals table.shop_table.shop_table tr{
text-align: right;
padding: 0; }
.cart-collaterals table.shop_table.shop_table tr:nth-child(2n) td{
background-color: rgba(0, 0, 0, 0.025); }
.cart-collaterals table.shop_table.shop_table td{
text-align: right;
padding: 10px !important; }
.cart-collaterals table.shop_table.shop_table td:before{
content: attr(data-title);
color: #333333;
font-weight: 600;
float: left; }
.cross-sells{
float: none;
width: 100%; }
.isw-swatches--in-loop{
display: none; }
.product-loop .hover-image{
display: none; }
.product-loop .product-buttons .add-to-cart-btn{
font-size: 12px;
letter-spacing: .05em; }
.product-loop .product-buttons > div,
.product-loop .yith-wcwl-add-to-wishlist{
opacity: 1;
visibility: visible;
transform: translateY(0); }
.product-loop .product-buttons .quick-view-btn,
.product-loop .product-buttons .compare-btn{
display: none; }
.product-loop .product-buttons .add-to-cart-btn{
height: 44px;
width: 100%; }
.product-loop .product-buttons .add-to-cart-btn a{
height: 44px;
line-height: 44px; }
.product-loop .product-buttons .add-to-cart-btn a:before{
line-height: 44px !important; }
.woocommerce.single-product .product.product-layout-sticky .summary{
position: relative !important;
left: auto !important;
top: auto !important;
bottom: auto !important; }
.woocommerce.single-product .product.product-layout-sticky .summary + div{
display: none !important; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-thumbnail a{
max-width: none; }
#yith-wcwl-form table.shop_table.wishlist_table td.product-thumbnail a img{
width: auto; }
.woocommerce table.shop_table_responsive thead, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table thead, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table thead{
display: none; }
.woocommerce table.shop_table_responsive tr, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table tr, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table tr{
position: relative;
display: block;
text-align: center;
border: 1px solid #ededed;
border-bottom: none;
padding: 30px 0; }
.woocommerce table.shop_table_responsive tr:last-of-type, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table tr:last-of-type, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table tr:last-of-type{
border-bottom: 1px solid #ededed; }
.woocommerce table.shop_table_responsive td, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td{
text-align: center;
display: block;
width: 100% !important;
margin: 0 auto;
padding: 0 !important;
border: none; }
.woocommerce table.shop_table_responsive td.product-remove, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-remove, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-remove{
position: absolute;
top: 10px;
right: 10px;
width: auto !important; }
.woocommerce table.shop_table_responsive td.product-thumbnail, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-thumbnail, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-thumbnail{
padding-top: 30px; }
.woocommerce table.shop_table_responsive td.product-name, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-name, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-name{
margin-top: 20px; }
.woocommerce table.shop_table_responsive td.product-price, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-price, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-price,
.woocommerce table.shop_table_responsive td.product-quantity,
.woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-quantity, #yith-wcwl-form
.woocommerce table.shop_table.wishlist_table td.product-quantity,
.woocommerce table.shop_table_responsive td.product-subtotal,
.woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-subtotal, #yith-wcwl-form
.woocommerce table.shop_table.wishlist_table td.product-subtotal,
.woocommerce table.shop_table_responsive td.product-stock-status,
.woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-stock-status, #yith-wcwl-form
.woocommerce table.shop_table.wishlist_table td.product-stock-status,
.woocommerce table.shop_table_responsive td.product-add-to-cart,
.woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-add-to-cart, #yith-wcwl-form
.woocommerce table.shop_table.wishlist_table td.product-add-to-cart{
margin-top: 10px; }
.woocommerce table.shop_table_responsive td.product-remove a, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-remove a, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-remove a{
border: none;
width: auto;
height: auto; }
.woocommerce table.shop_table_responsive td.product-remove a:before, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table td.product-remove a:before, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table td.product-remove a:before{
line-height: 1; }
.woocommerce table.shop_table_responsive dl.variation, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table dl.variation, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table dl.variation{
margin-bottom: 10px; }
.woocommerce table.shop_table_responsive dl.variation dt, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table dl.variation dt, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table dl.variation dt, .woocommerce table.shop_table_responsive dl.variation dd, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table dl.variation dd, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table dl.variation dd{
position: relative;
left: 50%;
transform: translateX(-50%); }
.woocommerce table.shop_table_responsive dl.variation dd:last-child, .woocommerce #yith-wcwl-form table.shop_table.wishlist_table dl.variation dd:last-child, #yith-wcwl-form .woocommerce table.shop_table.wishlist_table dl.variation dd:last-child{
margin-bottom: 10px; }
.amely-banner-grid-5 .banners{
width: 100%; }
.amely-banner3 .banner-button{
padding: 0;
border: none;
border-bottom: 2px solid; }
.amely-countdown .countdown-section{
border: none !important;
width: auto; }
.amely-countdown .countdown-amount{
font-size: 40px !important; }
.amely-countdown .countdown-period{
font-weight: 400 !important; }
.amely-testimonial-carousel .amely-testimonial-carousel__text{
padding: 0; }
.vc_row.coming-soon-row h2{
font-size: 40px !important;
margin-bottom: 25px !important; } }
@media (max-width: 1199px){
.hidden-lg-down{
display: none !important; }
body.mobile-menu-opened, body.mobile-wishlist-opened, body.mobile-minicart-opened, body.mobile-search-opened{
overflow: hidden !important; }
input[type='text'],
input[type='number'],
input[type='email'],
input[type='search'],
input[type='password'],
input[type='tel'],
textarea{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.header-login{
padding-right: 25px; }
.header-login i{
font-size: 18px !important; }
.header-login:after{
display: none !important; }
.site-header > .container > .row{
min-height: 60px; }
.site-header.header-menu-bottom.sticky-header > .container > .row{
min-height: 60px; }
.sticky-header{
z-index: 1000; }
.header-tools.layout-big .header-minicart > a.toggle .minicart-count{
left: 18px; }
.header-minicart{
padding-left: 0 !important;
padding-right: 10px; }
.header-minicart > a.toggle{
font-size: 18px !important;
padding-right: 0 !important; }
.header-minicart .minicart-dropdown-wrapper{
position: fixed;
top: 0;
left: 0;
z-index: 1000;
display: block;
visibility: visible;
overflow: hidden;
width: 270px;
height: 100vh;
box-shadow: none;
opacity: 1;
-webkit-overflow-scrolling: touch;
transform: translate3d(-100%, 0, 0);
transition: transform .3s ease-in-out; }
.mobile-minicart-opened .header-minicart .minicart-dropdown-wrapper{
transform: translate3d(0, 0, 0); }
.offcanvas-btn{
display: none !important; }
.offcanvas-sidebar{
display: none; }
.header-search{
display: none !important; }
.select2-container--default .select2-search--dropdown .select2-search__field{
font-size: 16px; }
.topbar .social-links{
display: none; }
.switcher-menu{
display: none !important; }
.topbar .switcher{
display: none; }
.header-wishlist{
padding-left: 0 !important;
padding-right: 30px !important; }
.header-wishlist > a.toggle{
font-size: 18px !important;
padding-right: 0 !important; }
.header-wishlist:after{
display: none !important; }
.header-wishlist .wishlist-dropdown-wrapper{
position: fixed;
top: 0;
left: 0;
z-index: 1000;
display: block;
visibility: visible;
overflow: hidden;
width: 270px;
height: 100vh;
box-shadow: none;
opacity: 1;
-webkit-overflow-scrolling: touch;
transform: translate3d(-100%, 0, 0);
transition: transform .3s ease-in-out; }
.mobile-wishlist-opened .header-wishlist .wishlist-dropdown-wrapper{
transform: translate3d(0, 0, 0); }
.up-sells .slick-arrow,
.related .slick-arrow{
background-color: #ffffff !important;
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); }
.amely-banner2 .banner-button{
min-width: 0; }
.amely-feature-product .product-image{
padding-top: 60px; }
.showcase-product .title{
display: none; }
.showcase-product .number-squence{
display: none; }
.gray-box .amely-testimonial-carousel{
padding: 0; }
.vc_row.coming-soon-row h2{
font-size: 60px !important;
margin-bottom: 60px !important; }
.vc_row.row-overflow-visible.row-slider .text-slider{
top: 30%; }
.vc_row.row-overflow-visible.row-slider .text-slider .wpb_single_image{
margin-bottom: 10px !important; } }
@media only screen and (max-width: 1440px){
.amely-banner .banner-text{
font-size: 14px !important; } }
@media (max-width: 424px){
.amely-banner3 .banner-content{
padding: 15px; }
.amely-banner4 .banner-content{
padding: 15px; } }
@media screen and (max-width: 600px){
.admin-bar .sticky-header.is-sticky{
top: 0; } }
@media (max-width: 767px){
.hidden-sm-down{
display: none !important; }
.thecomment .reply{
position: absolute;
top: -40px;
right: 0; }
.comments-area .author{
display: block;
text-align: center;
margin-bottom: 10px; }
.comment-text span.date{
text-align: center;
margin-top: 5px;
margin-bottom: 5px; }
.site-header .site-logo{
width: 50%; }
.site-header .header-tools{
width: 50%; }
.site-header .header-tools .header-widget{
display: none; }
.topbar .topbar-text li{
margin-right: 10px; }
.header-wishlist > a.toggle > i{
margin-left: 0; }
#customer_login .col-1,
#customer_login .col-2{
padding: 50px 15px; }
#customer_login .woocommerce-LostPassword{
float: none;
text-align: left;
margin-top: -20px; }
.woocommerce-table--order-downloads thead{
display: none; }
.woocommerce-table--order-downloads tbody{
text-align: center; }
.woocommerce-table--order-downloads tbody,
.woocommerce-table--order-downloads tr,
.woocommerce-table--order-downloads td{
display: block; }
.woocommerce-table--order-downloads tr{
text-align: right; }
.woocommerce-table--order-downloads td{
border-bottom: 1px solid #eeeeee !important;
padding-left: 10px; }
.woocommerce-table--order-downloads tr:last-child td{
border-top: none; }
.woocommerce-table--order-downloads tr:nth-child(2n) td{
background-color: rgba(0, 0, 0, 0.025); }
.woocommerce-table--order-downloads td:before{
content: attr(data-title) ": ";
font-weight: 600;
float: left; }
.shop-filter{
margin-top: 10px; }
.shop-filter .nice-select{
padding-left: 0; }
.shop-filter .woocommerce-ordering{
text-align: left;
display: block; }
.wb-allview-lettercnt .wb-wb-allview-letters{
font-size: 30px;
margin-right: 15px;
margin-bottom: 15px; }
.cart-actions #coupon_code{
width: 100%;
margin-right: 0;
margin-bottom: 20px; }
.cart-actions button[name='update_cart'], .cart-actions [name='update_cart'].amely-button{
float: none;
margin-top: 20px; }
.cart-collaterals{
margin-top: 60px; }
.cart-collaterals .cart_totals{
padding: 30px 20px; }
.cart-collaterals .checkout-button{
letter-spacing: 0; }
.woocommerce-checkout form.checkout_coupon .form-row-last{
margin-left: 0; }
.woocommerce-checkout form.checkout_coupon .form-row-last .button{
width: 100%; }
.woocommerce-checkout form.login .lost_password{
text-align: left;
margin-top: -15px; }
.category-grid-item mark{
display: block; }
.product-loop .yith-wcwl-add-to-wishlist{
top: 15px;
right: 15px; }
.product-loop .product-description{
display: none !important; }
.woocommerce.single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image{
margin-bottom: 30px; }
.woocommerce.single-product .product .woocommerce-product-gallery .lightbox-btn{
bottom: 30px; }
.woocommerce.single-product .product .summary .compare-btn{
display: none !important; }
.woocommerce.single-product .product .summary form.variations_form table td{
vertical-align: top; }
.woocommerce.single-product .product .summary form.variations_form table td.label{
width: 40%; }
.woocommerce.single-product .product .summary table.group_table{
text-align: center;
border: 1px solid #ededed; }
.woocommerce.single-product .product .summary table.group_table tr{
display: block;
padding-top: 18px;
padding-bottom: 10px;
border-bottom: 1px solid #ededed; }
.woocommerce.single-product .product .summary table.group_table td{
display: block;
width: 100% !important;
padding: 0; }
.woocommerce.single-product .product .summary table.group_table td:first-of-type{
margin-bottom: 10px; }
.woocommerce.single-product .product .summary table.group_table td.price{
margin: 0; }
.woocommerce.single-product .product .summary table.product_meta,
.woocommerce.single-product .product .summary table.product-share{
width: 100%; }
.woocommerce.single-product .product .summary table.product_meta tr,
.woocommerce.single-product .product .summary table.product-share tr{
display: block;
margin-bottom: 10px; }
.woocommerce.single-product .product .summary table.product_meta td,
.woocommerce.single-product .product .summary table.product-share td{
display: inline-block;
width: auto !important;
padding: 0; }
.woocommerce.single-product .product .summary table.product_meta td.label,
.woocommerce.single-product .product .summary table.product-share td.label{
margin-right: 5px; }
.woocommerce form .form-row.form-row-first, .woocommerce form .form-row.form-row-last{
float: none;
width: 100%; }
.woocommerce-message .button, .woocommerce-order-received .woocommerce-thankyou-order-received .button,
.woocommerce-error .button,
.woocommerce-info .button{
float: none; }
.amely-banner.text-position-left .banner-content{
left: 20px; }
.amely-banner.text-position-right .banner-content{
right: 20px; }
.amely-banner .banner-text{
font-size: 14px !important;
margin-bottom: 0; }
.amely-banner3 .banner-content h1,
.amely-banner3 .banner-content h2,
.amely-banner3 .banner-content h3,
.amely-banner3 .banner-content h4,
.amely-banner3 .banner-content h5,
.amely-banner3 .banner-content h6{
margin-bottom: 10px; }
.amely-countdown .countdown-section{
padding: 0 18px 0 0;
margin: 0; }
.amely-countdown .countdown-period{
letter-spacing: 0.3em; }
.amely-icon-box{
border: none !important; }
.amely-product-tabs .product-filter{
margin-bottom: 30px; }
.amely-product-tabs .product-filter li{
padding-top: 10px;
border: none; }
.amely-product-tabs .product-filter li > a{
display: inline-block;
padding-bottom: 5px; }
.vc_tta-panel-body .tm-shortcode .products{
margin-left: -5px;
margin-right: -5px; }
.amely-product .product-title{
margin-bottom: 15px; }
.amely-product .product-info{
bottom: 30px; }
.gray-box .amely-testimonial-carousel .amely-testimonial-carousel__text{
padding: 0; }
.amely-banner3.big-text .banner-text p{
font-size: 24px !important; }
.vc_row.lookbook-video h1{
font-size: 50px !important;
line-height: 50px !important; }
.vc_row.product-tabs .tm-shortcode.amely-button{
display: none; }
.vc_row.footer-vc-copyright .wpb_single_image{
text-align: left !important; }
.vc_row.row-overflow-visible.row-slider .text-slider{
left: 0; }
.vc_row.row-overflow-visible.row-slider .text-slider p{
font-size: 14px !important;
line-height: 14px !important; }
.growl{
margin: 15px auto !important; } }
@media screen and (max-width: 782px){
.admin-bar #growls.tr{
top: 56px; } }