/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    border: solid 1px #BBB;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #F2F2F2;
    background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F8F8F8', endColorstr='#E1E1E1', GradientType=0);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    cursor: default;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding: 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.gif) 50% center no-repeat;
    border-left: solid 1px #BBB;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options LI A {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #C8DEF4;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}

/**
 * Main YITH WooCommerce Wishlist CSS
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 1.1.5
 */

/* Selectbox style */
.wblw a.selectBox {
    background: #ffffff;
    min-width: 100px;
    margin-right: 10px;
    color: inherit;
}

.wblw a.selectBox,
.wblw a.selectBox:hover {
    border-bottom: 1px solid #bbb !important;
}

.wblw a.selectBox:hover {
    color: inherit;
}

.wblw a.selectBox:focus {
    border: 1px solid #ccc;
}

.selectBox-dropdown .selectBox-label {
    vertical-align: middle;
    padding: 3px 8px;
}

.selectBox-dropdown .selectBox-arrow {
    border: none;
    background: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.png) center right no-repeat;
}

.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow {
    background: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.png) center left no-repeat;
}

.selectBox-dropdown-menu {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 5px;
    font-size: 80%;
}

.selectBox-label.public-visibility:before,
.selectBox-dropdown-menu li.public-visibility a:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f0ac";
    margin-right: 5px;
}

.selectBox-label.shared-visibility:before,
.selectBox-dropdown-menu li.shared-visibility a:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f0c1";
    margin-right: 5px;
}

.selectBox-label.private-visibility:before,
.selectBox-dropdown-menu li.private-visibility a:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f023";
    margin-right: 5px;
}

.selectBox-dropdown-menu li a {
    color: inherit;
    padding: 5px 8px;
    border-radius: 3px;
}

.selectBox-dropdown-menu a:hover {
    color: inherit;
    text-decoration: none;
}

/* Wishlist table */
.wblw .wishlist_table td.product-add-to-cart a {
    display: block !important;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
}

.wblw .wishlist_table td.product-add-to-cart span.dateadded {
    display: block;
}

/* Popup add to wishlist */
.yith-wcwl-add-button a.open-pretty-photo {
    display: none;
}

.yes-js .yith-wcwl-add-button a.open-pretty-photo {
    display: inline-block;
}

.yes-js .yith-wcwl-popup {
    display: none;
    text-align: center;
}

.yes-js .yith-wcwl-popup-content {

}

.yes-js .yith-wcwl-popup-content {
    display: table;
    width: 100%;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-first-row {
    display: table-header-group;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-second-row {
    display: none;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container,
.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb,
.yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new,
.yes-js .yith-wcwl-popup-content .yith-wcwl-visibility {
    display: table-cell;
    vertical-align: bottom;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container {
    width: 80%;
    padding-bottom: 20px;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container select,
.yes-js .yith-wcwl-popup-content .yith-wcwl-visibility select,
.yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new input {
    border: 1px solid #ccc;
    height: 35px;
    border-radius: 3px;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container select {
    width: 100%;
    font-weight: 700;
    padding-left: 10px;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb {
    width: 20%;
    padding-bottom: 20px;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb img {
    float: right;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new {
    text-align: right;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new label {
    font-weight: 700;
}

.yes-js .yith-wcwl-popup-content .yith-wcwl-visibility select {
    float: right;
    min-width: 90px;
}

.yes-js .yith-wcwl-popup-footer {
    border-top: 1px solid #CCC;
    padding: 20px 20px 0 20px;
    margin: 20px -20px 0;
    text-align: right;
}

/* Popup message */
#yith-wcwl-popup-message {
    background: white;
    border: 1px solid #CCC;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    line-height: 50px;
    padding: 15px;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    z-index: 10000; /* Thanks WP -.- */
}

/*Wishlist title form*/
.wishlist-title {
    display: inline-block;
}

.wishlist-title h2 {
    display: inline-block;
    padding: 5px;
}

.wishlist-title.wishlist-title-with-form h2:hover {
    background: #efefef;
}

.wishlist-title a.show-title-form {
    cursor: pointer;
    visibility: hidden;
}

.wishlist-title:hover a.show-title-form {
    visibility: visible;
}

.yes-js #yith-wcwl-form .hidden-title-form {
    display: none;
    margin: 25px 0 39px;
}

/* Wishlist table template */

.wblw table.wishlist_table {
    font-size: 80%;
}

.wblw table.wishlist_table thead th {
    border-top: 1px solid;
    padding: 16px 12px;
}

.wblw table.wishlist_table tbody td {
    padding: 16px 12px;
}

.wblw table.wishlist_table thead th,
.wblw table.wishlist_table tbody td {
    border-color: #e7e7e7;
}

.wishlist_table tr td, .wishlist_table tr th.wishlist-delete, .wishlist_table tr th.product-checkbox {
    text-align: center;
}

.wishlist_table tr th.product-checkbox {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-remove {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-thumbnail {
    width: 80px;
}

.wishlist_table tr td.product-thumbnail, .wishlist_table tr td.product-name, .wishlist_table tr td.wishlist-name, .wishlist_table tr td.wishlist-privacy, .wblw table.wishlist_table tfoot td {
    text-align: left;
}

.wblw table.wishlist_table tr td.product-remove {
    padding: 16px 0
}

.wishlist_table tr td.product-thumbnail a {
    display: block;
    border: none;
    max-width: 80px;
}

.wishlist_table tr td.product-thumbnail a img {
    width: 100%;
}

.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    color: #297E29;
}

.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
    color: #F00;
}

.wishlist_table tr td a.button {
    white-space: normal;
}

/* Wishlist buttons */
a.add_to_wishlist {
    cursor: pointer;
}

.summary .single_add_to_wishlist.button,
div.product .wblw-price-and-add .single_add_to_wishlist.button {
    margin: 0px;
}

.wishlist_table .add_to_cart.button {
    padding: 7px 12px;
    line-height: normal;
}

.yith-wcwl-add-to-wishlist {
    margin-top: 10px;
}

.yith-wcwl-add-button > a i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i,
.wishlist-title a.show-title-form i,
.hidden-title-form a.hide-title-form i,
.hidden-title-form button i,
.yith-wcwl-wishlist-new button i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.yith-wcwl-wishlist-search-form button.wishlist-search-button i {
    margin-right: 10px;
}

.wishlist_table .add_to_cart.button,
.yith-wcwl-add-button a.add_to_wishlist,
.yith-wcwl-popup-button a.add_to_wishlist,
.wishlist_table a.ask-an-estimate-button,
.wishlist-title a.show-title-form,
.hidden-title-form a.hide-title-form,
.wblw .yith-wcwl-wishlist-new button,
.wishlist_manage_table a.create-new-wishlist,
.wishlist_manage_table button.submit-wishlist-changes,
.yith-wcwl-wishlist-search-form button.wishlist-search-button {
    margin: 0px;
    box-shadow: none;
    text-shadow: none;
    border-radius: 3px;
}

/* Wishlist title */
.wblw .wishlist-title h2 {
    vertical-align: middle;
}

.wblw .wishlist-title a.show-title-form {
    vertical-align: middle;
    margin-left: 15px;
}

.wblw .hidden-title-form input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    min-width: 250px;
    vertical-align: middle;
}

.wblw .hidden-title-form button {
    padding: 7px 24px;
    vertical-align: middle;
    border: none;
    position: relative;
}

.wblw .hidden-title-form button:active {
    top: 1px;
}

.wblw .hidden-title-form a.hide-title-form {
    vertical-align: middle;
    line-height: normal;
}

/* Remove buttons */
.wblw #content table.wishlist_table.cart a.remove {
    color: #c3c3c3;
    margin: 0 auto;
}

.wblw #content table.wishlist_table.cart a.remove:hover {
    background-color: #c3c3c3;
    color: #fff;
}

/* Share buttons */
.yith-wcwl-share {
    margin-bottom: 35px;
}

.yith-wcwl-share h4.yith-wcwl-share-title {
    margin: 10px 0;
}

.yith-wcwl-share ul {
    margin: 5px 0;
    padding: 0;
}

.yith-wcwl-share ul, .yith-wcwl-share li {
    height: 21px;
}

.yith-wcwl-share li, .entry-content .yith-wcwl-share li {
    margin-left: 0px;
    margin-right: 0px;
}

.yith-wcwl-share li a {
    background-position: left top;
    display: inline-block;
    width: 21px;
    height: 21px;
    border: none;
}

.yith-wcwl-share li a:hover {
    background-position: left bottom;
}

.yith-wcwl-share li a.facebook {
    background-image: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/facebook.png);
}

.yith-wcwl-share li a.twitter {
    background-image: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/twitter.png);
}

.yith-wcwl-share li a.pinterest {
    background-image: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/pinterest.jpg);
}

.yith-wcwl-share li a.googleplus {
    background-image: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/googleplus.jpg);
}

.yith-wcwl-share li a.email {
    background-image: url(/wp-content/plugins/yith-woocommerce-wishlist/assets/images/email.jpg);
}

/* Ask an estimate button */
.wblw .wishlist_table.cart .ask-an-estimate-button,
.wblw .wishlist_table.cart #custom_add_to_cart {
    margin: 10px 0;
    display: inline-block;
}

.wblw .wishlist_table.cart .ask-an-estimate-button {
    padding: 7px 12px;
    line-height: normal;
}

#ask_an_estimate_popup {
    display: none;
}

.ask-an-estimate-button-popup {
    margin-top: 30px !important;
    float: right;
    text-transform: none;
}

#additional_notes {
    min-height: 150px;
}

/* Create new wishlist*/
.yith-wcwl-wishlist-new {
    padding: 20px 30px;
    border-bottom: 1px solid #e7e7e7;
}

.yith-wcwl-wishlist-new label {
    vertical-align: middle;
    margin-right: 20px;
}

.yith-wcwl-wishlist-new input {
    min-width: 190px;
}

.yith-wcwl-wishlist-new input[type="text"],
.yith-wcwl-wishlist-new select {
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.wblw .yith-wcwl-wishlist-new button {
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    position: relative;
}

.wblw .yith-wcwl-wishlist-new button:active {
    top: 1px;
}

/* Manage wishlists */
.wblw .wishlist_manage_table select {
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.wblw table.wishlist_manage_table tfoot td {
    text-align: right;
    padding: 24px 12px;
}

.wblw .wishlist_manage_table tfoot button.submit-wishlist-changes {
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 3px;
    position: relative;
    line-height: normal;
}

.wblw .wishlist_manage_table tfoot button.submit-wishlist-changes:active {
    top: 1px;
}

.wblw .wishlist_manage_table tfoot a.create-new-wishlist {
    vertical-align: middle;
    line-height: normal;
    padding: 7px 24px;
}

/* Search wishlist */
.wblw .yith-wcwl-wishlist-search-form {
    padding: 20px 80px;
    border-bottom: 1px solid #e7e7e7;
}

.wblw .yith-wcwl-wishlist-search-form:after {
    content: '';
    display: block;
    clear: both;
}

.wblw .yith-wcwl-wishlist-search-form #wishlist_search {
    min-width: 300px;
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    vertical-align: middle;
    float: left;
}

.wblw .yith-wcwl-wishlist-search-form button.wishlist-search-button {
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 3px;
    position: relative;
    line-height: normal;
    float: right;
}

.wblw p.yith-wcwl-empty-search-result {
    padding: 50px 0;
    text-align: center;
}

.wblw .yith-wcwl-wishlist-search-form button.wishlist-search-button:active {
    top: 1px;
}

.wblw ul.yith-wcwl-search-results,
.wblw ul.user-wishlists {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wblw ul.yith-wcwl-search-results > li {
    padding: 50px 80px;
    border-bottom: 1px solid #e7e7e7;
}

.wblw ul.yith-wcwl-search-results > li:after {
    content: '';
    display: block;
    clear: both;
}

.wblw ul.yith-wcwl-search-results .thumb {
    float: left;
    margin-right: 15px;
}

.wblw ul.yith-wcwl-search-results .user-details {
    overflow: hidden;
    padding-top: 15px;
}

.wblw ul.yith-wcwl-search-results .user-details span {
    display: block;
}

.wblw ul.yith-wcwl-search-results .user-details span.name {
    font-weight: 700;
}

.wblw ul.yith-wcwl-search-results .reuslt-details {
    float: left;
    width: 50%;
}

.wblw ul.yith-wcwl-search-results .result-wishlists {
    float: right;
    max-width: 50%;
    padding-top: 15px;
}

.wblw .yith-wcwl-search-pagination {
    padding: 5px 0;
    text-align: center;
}

/* AJAX loading gif */
.yith-wcwl-add-to-wishlist .ajax-loading {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    display: inline !important;
    margin-left: 5px;
    vertical-align: middle;
    visibility: hidden;
    width: 16px !important;
    height: 16px !important;
}

/* Widget wishlist */
.widget_yith-wcwl-lists ul.dropdown li {
    padding: 0;
}

.widget_yith-wcwl-lists ul.dropdown > li a,
.widget_yith-wcwl-lists ul.dropdown ul.lists > li a {
    display: block;
    padding: 5px 15px;
}

.widget_yith-wcwl-lists ul.dropdown ul.lists > li a {
    padding: 5px 25px;
}

.widget_yith-wcwl-lists ul.dropdown > li.lists-section {
    border-bottom: 1px solid #e7e7e7;
}

.widget_yith-wcwl-lists ul.dropdown ul.lists {
    margin: 0;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

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

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul > li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before, .fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before, .fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before, .fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before, .fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before, .fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before, .fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before, .fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before, .fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.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
}

/*
Theme Name: Onea
Theme URI: http://onea.elated-themes.com
Description: Multipurpose WooCommerce Theme
Author: Elated Themes
Author URI: http://themeforest.net/user/elated-themes
Text Domain: onea
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-menu, featured-images, flexible-header, post-formats, sticky-post, threaded-comments, translation-ready
Version: 1.0.1
License: GNU General Public License
License URI: licence/GPL.txt

CSS changes can be made in files in the /css/ folder. This is a placeholder file required by WordPress, so do not delete it.

*/
table td, table th {
    text-align: center
}

h4, h5 {
    line-height: 1.33em;
    color: #000
}

a, body, h1, h2, h3, h4, h5, h6, p a {
    color: #000
}

iframe, pre {
    max-width: 100%
}

.aligncenter, .alignfull, .alignwide, .clearfix:after, .wblm-container:after {
    clear: both
}

.wblm-countdown .countdown-rtl, .wblm-owl-custom-slider.owl-rtl, .wblm-owl-slider.owl-rtl, .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-rtl {
    direction: rtl
}

.wblm-owl-custom-slider .owl-item, .wblm-owl-slider .owl-item {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

a, abbr, acronym, address, applet, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var {
    background: 0 0;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline
}

body, pre {
    background-color: #fff
}

.wblm-section-title-holder .wblm-st-title .wblm-st-title-background, blockquote > * {
    background-image: linear-gradient(to right, #f8e6e1 0, #f8e6e1 100%);
    background-repeat: repeat-x
}

a img, table {
    border: none
}

ol, pre, ul {
    margin: 15px 0
}

article, aside, details, figcaption, figure, footer, header, nav, section {
    display: block
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: middle;
    width: 100%
}

table th {
    border: 0;
    padding: 5px 7px
}

table td {
    padding: 5px 10px
}

.wp-caption, img {
    height: auto;
    max-width: 101%;
}

.clearfix:after, .clearfix:before {
    content: " ";
    display: table
}

.clear:after {
    clear: both;
    content: "";
    display: block
}

html {
    overflow-y: scroll !important
}

body {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased
}

h1 {
    font-size: 48px;
    line-height: 1.3em
}

h2 {
    font-size: 38px;
    line-height: 1.1em
}

h3 {
    font-size: 25px;
    line-height: 1.12em
}

h4 {
    font-size: 18px
}

h5 {
    font-size: 15px
}

h6 {
    font-size: 14px;
    line-height: 1.8em
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-family: Poppins, sans-serif;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover {
    color: rgba(0, 0, 0, .9)
}

a, p a {
    text-decoration: none;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

p {
    margin: 10px 0
}

.wblm-above-heading {
    font-size: 12px;
    line-height: 1.75em;
    letter-spacing: .42em;
    text-transform: uppercase
}

.wblm-subheading {
    font-size: 16px;
    line-height: 1.69em
}

input[type=submit] {
    -webkit-appearance: none
}

ol, ul {
    list-style-position: inside
}

ol ol, ol ul, ul ol, ul ul {
    margin: 0;
    padding: 0 0 0 15px
}

pre {
    padding: 15px;
    white-space: pre-wrap;
    word-wrap: break-word
}

dt {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700
}

dd {
    margin-bottom: 15px
}

sub, sup {
    position: relative;
    vertical-align: baseline;
    height: 0;
    line-height: 0;
    font-size: 75%
}

sub {
    top: .5ex
}

sup {
    bottom: .5ex
}

.wp-caption-text {
    font-style: italic;
    margin: 0
}

table tbody tr, table thead tr {
    border-bottom: 1px solid #ccc;
}

table tbody th {
    border-right: 1px solid #ccc
}

blockquote {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 28px 0 38px;
    padding: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    quotes: none;
    box-sizing: border-box
}

blockquote > * {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    margin: 0;
    display: inline;
    background-position: 0 100%;
    background-size: 100% 13px;
    padding: 0 4px
}

blockquote:after, blockquote:before {
    content: ''
}

blockquote cite {
    font-style: normal;
    font-weight: 400
}

::selection {
    background: #000;
    color: #fff
}

::-moz-selection {
    background: #000;
    color: #fff
}

.bypostauthor, .gallery-caption, .sticky, .wp-caption, .wp-caption-text {
    opacity: 1
}

.alignleft {
    display: inline;
    float: left;
    margin: 0 20px 20px 0
}

.alignright {
    display: inline;
    float: right;
    margin: 0 0 20px 20px
}

.aligncenter {
    display: block;
    margin: 10px auto
}

.alignwide {
    margin-left: auto;
    margin-right: auto
}

@media only screen and (max-width: 1024px) {
    .alignwide {
        width: 100%;
        max-width: 100%
    }
}

.alignfull {
    position: relative;
    left: -1rem;
    width: calc(100% + (2 * 1rem));
    max-width: calc(100% + (2 * 1rem))
}

@media only screen and (max-width: 1024px) {
    .alignfull {
        left: calc(-12.5% - 75px);
        width: calc(125% + 150px);
        max-width: calc(125% + 150px);
        margin-top: calc(2 * 1rem);
        margin-bottom: calc(2 * 1rem)
    }
}

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

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

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

.wblm-wrapper {
    position: relative;
    left: 0;
    z-index: 1000;
    -webkit-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
    -moz-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
    transition: left .33s cubic-bezier(.694, .0482, .335, 1)
}

.wblm-wrapper .wblm-wrapper-inner {
    width: 100%;
    overflow: hidden
}

.wblm-content {
    position: relative;
    margin-top: 0;
    background-color: #fff;
    z-index: 100
}

.wblm-boxed {
    overflow: hidden !important
}

.wblm-boxed .wblm-wrapper {
    width: 100%;
    display: inline-block;
    vertical-align: middle
}

.touch .wblm-boxed .wblm-wrapper {
    background-repeat: repeat
}

.wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
    width: 1150px;
    margin: auto;
    overflow: visible
}

.wblm-boxed .wblm-content {
    overflow: hidden
}

.wblm-boxed .wblm-footer-inner {
    width: 1150px;
    margin: auto
}

.wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-boxed .wblm-page-header .wblm-sticky-header {
    left: auto;
    width: 1150px
}

.wblm-paspartu-enabled .wblm-fullscreen-menu-holder, .wblm-paspartu-enabled .wblm-mobile-header.mobile-header-appear .wblm-mobile-header-inner, .wblm-paspartu-enabled .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-paspartu-enabled .wblm-sticky-header {
    left: 10px;
    width: calc(100% - 20px)
}

.wblm-paspartu-enabled .wblm-wrapper {
    padding: 10px;
    background-color: #fff;
    box-sizing: border-box
}

.wblm-paspartu-enabled.wblm-top-paspartu-disabled .wblm-wrapper {
    padding-top: 0 !important
}

.wblm-paspartu-enabled.wblm-fixed-paspartu-enabled.admin-bar .wblm-wrapper:before {
    top: 32px
}

.wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-wrapper:after, .wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-wrapper:before {
    content: '';
    position: fixed;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: inherit;
    background-color: inherit;
    z-index: 99999
}

.wblm-container:after, .wblm-container:before {
    content: " ";
    display: table
}

.wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-wrapper:before {
    top: 0
}

.wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-wrapper:after {
    bottom: 0
}

.wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-mobile-header.mobile-header-appear .wblm-mobile-header-inner, .wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-paspartu-enabled.wblm-fixed-paspartu-enabled .wblm-sticky-header.header-appear {
    margin-top: 10px
}

.wblm-smooth-transition-loader {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 2000
}

.wblm-container, .wblm-full-width {
    z-index: 100;
    position: relative
}

.wblm-container {
    width: 100%;
    padding: 0;
    min-height:60vh;
}

.wblm-rev-has-paspartu, .wblm-vertical-align-containers .wblm-position-center-inner, .wblm-vertical-align-containers .wblm-position-left-inner, .wblm-vertical-align-containers .wblm-position-right-inner {
    display: inline-block;
    vertical-align: middle
}

.wblm-container-inner {
    width: 1100px;
    margin: 0 auto;
    box-sizing: border-box
}

.wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, .wblm-content .wblm-content-inner > .wblm-full-width > .wblm-full-width-inner {
    padding-top: 70px;
    padding-bottom: 40px
}

body.archive.tax-portfolio-category .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, body.archive.tax-portfolio-category .wblm-content .wblm-content-inner > .wblm-full-width > .wblm-full-width-inner {
    padding-top: 80px;
    padding-bottom: 80px
}

@media only screen and (min-width: 1400px) {
    .wblm-grid-1300 .wblm-container-inner, .wblm-grid-1300 .wblm-grid, .wblm-grid-1300 .wblm-row-grid-section {
        width: 1300px
    }

    .wblm-grid-1300.wblm-boxed .wblm-footer-inner, .wblm-grid-1300.wblm-boxed .wblm-wrapper-inner {
        width: 1350px
    }

    .wblm-grid-1300.wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-grid-1300.wblm-boxed .wblm-page-header .wblm-sticky-header {
        left: auto;
        width: 1350px
    }
}

@media only screen and (min-width: 1367px) {
    .wblm-grid-1200 .wblm-container-inner, .wblm-grid-1200 .wblm-grid, .wblm-grid-1200 .wblm-row-grid-section {
        width: 1200px
    }

    .wblm-grid-1200.wblm-boxed .wblm-footer-inner, .wblm-grid-1200.wblm-boxed .wblm-wrapper-inner {
        width: 1250px
    }

    .wblm-grid-1200.wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-grid-1200.wblm-boxed .wblm-page-header .wblm-sticky-header {
        left: auto;
        width: 1250px
    }
}

@media only screen and (min-width: 1200px) {
    .wblm-grid-1000 .wblm-container-inner, .wblm-grid-1000 .wblm-grid, .wblm-grid-1000 .wblm-row-grid-section {
        width: 1000px
    }

    .wblm-grid-1000.wblm-boxed .wblm-footer-inner, .wblm-grid-1000.wblm-boxed .wblm-wrapper-inner {
        width: 1050px
    }

    .wblm-grid-1000.wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-grid-1000.wblm-boxed .wblm-page-header .wblm-sticky-header {
        width: 1050px;
        left: auto
    }
}

@media only screen and (min-width: 1024px) {
    .wblm-grid-800 .wblm-container-inner, .wblm-grid-800 .wblm-grid, .wblm-grid-800 .wblm-row-grid-section {
        width: 800px
    }

    .wblm-grid-800.wblm-boxed .wblm-footer-inner, .wblm-grid-800.wblm-boxed .wblm-wrapper-inner {
        width: 850px
    }

    .wblm-grid-800.wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed, .wblm-grid-800.wblm-boxed .wblm-page-header .wblm-sticky-header {
        width: 850px;
        left: auto
    }
}

@-webkit-keyframes preload-background {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}

@keyframes preload-background {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}

.wblm-preload-background {
    background: url(/wp-content/themes/onea/assets/img/preload_pattern.png) !important;
    -webkit-animation-name: preload-background;
    -webkit-animation-duration: 40s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: forwards;
    animation-name: preload-background;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-fill-mode: forwards
}

.wblm-grid {
    margin: 0 auto;
    width: 1100px
}

.wblm-vertical-align-containers {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box
}

.wblm-parallax-row-holder, .vc_row .wpb_gmaps_widget .wpb_wrapper {
    padding: 0;
    background-color: transparent
}

.wblm-vertical-align-containers.wblm-25-50-25 .wblm-position-left, .wblm-vertical-align-containers.wblm-25-50-25 .wblm-position-right {
    width: 25%
}

.wblm-vertical-align-containers.wblm-25-50-25 .wblm-position-center {
    left: 50%;
    width: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wblm-vertical-align-containers.wblm-33-33-33 .wblm-position-center, .wblm-vertical-align-containers.wblm-33-33-33 .wblm-position-left, .wblm-vertical-align-containers.wblm-33-33-33 .wblm-position-right {
    width: 33.33%
}

.wblm-vertical-align-containers.wblm-33-33-33 .wblm-position-center {
    left: 50%;
    width: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wblm-vertical-align-containers.wblm-50-50 .wblm-position-left, .wblm-vertical-align-containers.wblm-50-50 .wblm-position-right {
    width: 50%
}

.wblm-vertical-align-containers.wblm-33-66 .wblm-position-left {
    width: 33.33%
}

.wblm-vertical-align-containers.wblm-33-66 .wblm-position-right, .wblm-vertical-align-containers.wblm-66-33 .wblm-position-left {
    width: 66.66%
}

.wblm-vertical-align-containers.wblm-66-33 .wblm-position-right {
    width: 33.33%
}

.wblm-vertical-align-containers .wblm-position-left {
    position: relative;
    height: 100%;
    float: left;
    z-index: 2
}

.wblm-vertical-align-containers .wblm-position-center {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1
}

.wblm-vertical-align-containers .wblm-position-right {
    position: relative;
    height: 100%;
    float: right;
    text-align: right;
    z-index: 2
}

.wblm-vertical-align-containers .wblm-position-right.wblm-has-widget .wblm-position-right-inner {
    height: 100%
}

.wblm-vertical-align-containers .wblm-position-center:before, .wblm-vertical-align-containers .wblm-position-left:before, .wblm-vertical-align-containers .wblm-position-right:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0
}

.last_toggle_el_margin, .wpb_button, .wpb_content_element, .wpb_row, ul.wpb_thumbnails-fluid > li {
    margin-bottom: 0 !important
}

.wblm-row-grid-section {
    position: relative;
    width: 1100px;
    margin: 0 auto;
    z-index: 20
}

.wblm-content-aligment-left {
    text-align: left
}

.wblm-content-aligment-center {
    text-align: center
}

.wblm-content-aligment-right {
    text-align: right
}

.wblm-parallax-row-holder {
    position: static;
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden
}

@media only screen and (max-width: 1024px) {
    .wblm-disabled-bg-image-bellow-1024 {
        background-image: none !important
    }

    .wblm-parallax-row-holder {
        height: auto !important;
        min-height: 200px !important;
        background-attachment: scroll;
        background-position: center top !important;
        background-size: cover
    }
}

.wblm-rev-has-paspartu {
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box
}

.wblm-rev-has-paspartu.wblm-side-paspartu-disabled {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.wblm-rev-has-paspartu.wblm-paspartu-tiny {
    padding: 10px
}

.wblm-rev-has-paspartu.wblm-paspartu-tiny.wblm-top-paspartu-disabled {
    padding-top: 0
}

.wblm-rev-has-paspartu.wblm-paspartu-small {
    padding: 20px
}

.wblm-rev-has-paspartu.wblm-paspartu-small.wblm-top-paspartu-disabled {
    padding-top: 0
}

.wblm-rev-has-paspartu.wblm-paspartu-normal {
    padding: 30px
}

.wblm-rev-has-paspartu.wblm-paspartu-normal.wblm-top-paspartu-disabled {
    padding-top: 0
}

@media only screen and (max-width: 680px) {
    .wblm-disabled-bg-image-bellow-680 {
        background-image: none !important
    }

    .wblm-rev-has-paspartu.wblm-paspartu-normal {
        padding: 20px
    }

    .wblm-rev-has-paspartu.wblm-paspartu-normal.wblm-top-paspartu-disabled {
        padding-top: 0
    }
}

.wblm-rev-has-paspartu.wblm-paspartu-large {
    padding: 50px
}

.wblm-rev-has-paspartu.wblm-paspartu-large.wblm-top-paspartu-disabled {
    padding-top: 0
}

@media only screen and (max-width: 680px) {
    .wblm-rev-has-paspartu.wblm-paspartu-large {
        padding: 20px
    }

    .wblm-rev-has-paspartu.wblm-paspartu-large.wblm-top-paspartu-disabled {
        padding-top: 0
    }
}

.wblm-rev-has-paspartu .forcefullwidth_wrapper_tp_banner {
    left: 0 !important;
    width: 100% !important
}

.wblm-rev-has-paspartu .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
    left: 0 !important;
    width: 100% !important;
    height: 100% !important
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 0;
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    overflow: hidden
}

.screen-reader-text:focus {
    top: 5px;
    left: 5px;
    display: block;
    width: auto;
    height: auto;
    padding: 15px 23px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    color: #21759b;
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto !important;
    z-index: 100000
}

.wblm-social-share-text {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em;
    padding-right: 5px
}

.wblm-two-columns-form-without-space .wblm-column-left {
    display: table-cell;
    width: 99%;
    vertical-align: top
}

.wblm-two-columns-form-without-space .wblm-column-right {
    display: table-cell;
    width: 1%;
    text-align: left;
    vertical-align: top
}

.wblm-two-columns-form-with-space .wblm-column-left {
    display: table-cell;
    width: 99%;
    vertical-align: top;
    padding: 0 10px 0 0;
    box-sizing: border-box
}

.wblm-two-columns-form-with-space .wblm-column-right {
    display: table-cell;
    width: 1%;
    text-align: left;
    vertical-align: top;
    padding: 0 0 0 10px;
    box-sizing: border-box
}

.wblm-no-space .wblm-outer-space {
    margin: 0
}

.wblm-no-space .wblm-outer-space .wblm-item-space {
    padding: 0;
    margin: 0
}

.wblm-no-space.wblm-disable-bottom-space, .wblm-no-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-no-space.wblm-columns-has-side-space {
    padding: 0
}

.wblm-tiny-space .wblm-outer-space {
    margin: 0 -5px
}

.wblm-tiny-space .wblm-outer-space .wblm-item-space {
    padding: 0 5px;
    margin: 0 0 10px
}

.wblm-tiny-space.wblm-disable-bottom-space {
    margin-bottom: -10px
}

.wblm-tiny-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-tiny-space.wblm-columns-has-side-space {
    padding: 0 10px
}

.wblm-small-space .wblm-outer-space {
    margin: 0 -10px
}

.wblm-small-space .wblm-outer-space .wblm-item-space {
    padding: 0 10px;
    margin: 0 0 20px
}

.wblm-small-space.wblm-disable-bottom-space {
    margin-bottom: -20px
}

.wblm-small-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-small-space.wblm-columns-has-side-space {
    padding: 0 20px
}

.wblm-normal-space .wblm-outer-space {
    margin: 0 -15px
}

.wblm-normal-space .wblm-outer-space .wblm-item-space {
    padding: 0 15px;
    margin: 0 0 30px
}

.wblm-normal-space.wblm-disable-bottom-space {
    margin-bottom: -30px
}

.wblm-normal-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-normal-space.wblm-columns-has-side-space {
    padding: 0 30px
}

.wblm-medium-space .wblm-outer-space {
    margin: 0 -20px
}

.wblm-medium-space .wblm-outer-space .wblm-item-space {
    padding: 0 20px;
    margin: 0 0 40px
}

.wblm-medium-space.wblm-disable-bottom-space {
    margin-bottom: -40px
}

.wblm-medium-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-medium-space.wblm-columns-has-side-space {
    padding: 0 40px
}

.wblm-large-space .wblm-outer-space {
    margin: 0 -25px
}

.wblm-large-space .wblm-outer-space .wblm-item-space {
    padding: 0 25px;
    margin: 0 0 50px
}

.wblm-large-space.wblm-disable-bottom-space {
    margin-bottom: -50px
}

.wblm-large-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-large-space.wblm-columns-has-side-space {
    padding: 0 50px
}

.wblm-huge-space .wblm-outer-space {
    margin: 0 -40px
}

.wblm-huge-space .wblm-outer-space .wblm-item-space {
    padding: 0 40px;
    margin: 0 0 80px
}

.wblm-huge-space.wblm-disable-bottom-space {
    margin-bottom: -80px
}

.wblm-huge-space.wblm-disable-item-bottom-space .wblm-item-space {
    margin-bottom: 0
}

.wblm-huge-space.wblm-columns-has-side-space {
    padding: 0 80px
}

.wblm-grid-list .wblm-list-is-slider .wblm-outer-space {
    margin: 0 !important
}

.wblm-grid-list .wblm-list-is-slider .wblm-item-space {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important
}

.wblm-blog-holder, .wblm-comment-form, .wblm-grid-col-10:after, .wblm-grid-col-11:after, .wblm-grid-col-12:after, .wblm-grid-col-1:after, .wblm-grid-col-2:after, .wblm-grid-col-3:after, .wblm-grid-col-4:after, .wblm-grid-col-5:after, .wblm-grid-col-6:after, .wblm-grid-col-7:after, .wblm-grid-col-8:after, .wblm-grid-row:after, .wblm-owl-slider .owl-stage:after, .wblm-top-bar .widget.widget_nav_menu ul, .widget.wblm-single-line-form form, .widget.widget_search form, .widget.widget_shopping_cart .wblw-mini-cart__buttons:after {
    clear: both
}

.wblm-grid-list .wblm-item-space {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    box-sizing: border-box
}

.wblm-grid-col-10:after, .wblm-grid-col-10:before, .wblm-grid-col-11:after, .wblm-grid-col-11:before, .wblm-grid-col-12:after, .wblm-grid-col-12:before, .wblm-grid-col-1:after, .wblm-grid-col-1:before, .wblm-grid-col-2:after, .wblm-grid-col-2:before, .wblm-grid-col-3:after, .wblm-grid-col-3:before, .wblm-grid-col-4:after, .wblm-grid-col-4:before, .wblm-grid-col-5:after, .wblm-grid-col-5:before, .wblm-grid-col-7:after, .wblm-grid-col-7:before, .wblm-grid-col-8:after, .wblm-grid-col-8:before, .wblm-grid-col-9:after, .wblm-grid-col-9:before, .wblm-grid-row:after, .wblm-grid-row:before {
    /* content: " "; */
    /* display: table; */
}

.wblm-grid-list:not(.wblm-one-columns) .wblm-item-space {
    float: left
}

.wblm-grid-list.wblm-one-columns .wblm-item-space, .wblm-grid-list.wblm-one-columns .wblm-masonry-grid-sizer {
    width: 100%
}

.wblm-grid-list.wblm-two-columns .wblm-item-space, .wblm-grid-list.wblm-two-columns .wblm-masonry-grid-sizer {
    width: 50%
}

.wblm-grid-list.wblm-two-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-two-columns .wblm-item-space.wblm-masonry-size-large-width-height {
    width: 100%
}

@media only screen and (min-width: 681px) {
    .wblm-grid-list.wblm-two-columns .wblm-item-space:nth-child(2n+1) {
        clear: both
    }
}

.wblm-grid-list.wblm-three-columns .wblm-item-space, .wblm-grid-list.wblm-three-columns .wblm-masonry-grid-sizer {
    width: 33.33333%
}

.wblm-grid-list.wblm-three-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-three-columns .wblm-item-space.wblm-masonry-size-large-width-height {
    width: 66.66667%
}

.wblm-grid-list.wblm-four-columns .wblm-item-space, .wblm-grid-list.wblm-four-columns .wblm-masonry-grid-sizer {
    width: 25%
}

.wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width-height {
    width: 50%
}

@media only screen and (min-width: 1025px) {
    .wblm-grid-list.wblm-four-columns .wblm-item-space:nth-child(4n+1) {
        clear: both
    }
}

.wblm-grid-list.wblm-five-columns .wblm-item-space, .wblm-grid-list.wblm-five-columns .wblm-masonry-grid-sizer {
    width: 20%
}

.wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width-height {
    width: 40%
}

@media only screen and (min-width: 1367px) {
    .wblm-grid-list.wblm-five-columns .wblm-item-space:nth-child(5n+1) {
        clear: both
    }
}

.wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer {
    width: 16.66667%
}

.wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width-height {
    width: 33.33333%
}

@media only screen and (min-width: 1441px) {
    .wblm-grid-list.wblm-six-columns .wblm-item-space:nth-child(6n+1) {
        clear: both
    }
}

.wblm-grid-masonry-list.wblm-fixed-masonry-items img {
    height: 100%;
    width: 100%
}

.wblm-grid-masonry-list .wblm-masonry-list-wrapper {
    opacity: 0
}

.wblm-grid-masonry-list .wblm-masonry-grid-sizer {
    width: 100%;
    padding: 0;
    margin: 0
}

.wblm-grid-masonry-list .wblm-masonry-grid-gutter {
    width: 0;
    padding: 0;
    margin: 0
}

.wblm-grid-masonry-list .wblm-item-space.wblm-fixed-masonry-item img {
    height: 100%;
    width: 100%
}

.wblm-grid-row {
    margin-left: -15px;
    margin-right: -15px
}

.wblm-grid-no-gutter {
    margin-left: 0;
    margin-right: 0
}

.wblm-grid-no-gutter > div {
    padding-left: 0;
    padding-right: 0
}

.wblm-grid-tiny-gutter {
    margin-left: -5px;
    margin-right: -5px
}

.wblm-grid-tiny-gutter > div {
    padding-left: 5px;
    padding-right: 5px
}

.wblm-grid-small-gutter {
    margin-left: -10px;
    margin-right: -10px
}

.wblm-grid-small-gutter > div {
    padding-left: 10px;
    padding-right: 10px
}

.wblm-grid-normal-gutter {
    margin-left: -15px;
    margin-right: -15px
}

.wblm-grid-normal-gutter > div {
    padding-left: 15px;
    padding-right: 15px
}

.wblm-grid-medium-gutter {
    margin-left: -20px;
    margin-right: -20px
}

.wblm-grid-medium-gutter > div {
    padding-left: 20px;
    padding-right: 20px
}

.wblm-grid-large-gutter {
    margin-left: -25px;
    margin-right: -25px
}

.wblm-grid-large-gutter > div {
    padding-left: 25px;
    padding-right: 25px
}

.wblm-grid-huge-gutter {
    margin-left: -40px;
    margin-right: -40px
}

.wblm-grid-huge-gutter > div {
    padding-left: 40px;
    padding-right: 40px
}

.wblm-grid-col-1, .wblm-grid-col-10, .wblm-grid-col-11, .wblm-grid-col-12, .wblm-grid-col-2, .wblm-grid-col-3, .wblm-grid-col-4, .wblm-grid-col-5, .wblm-grid-col-7, .wblm-grid-col-8, .wblm-grid-col-9 {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    box-sizing: border-box
}

.wblm-grid-col-1 {
    float: left;
    width: 8.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-1 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-2 {
    float: left;
    width: 16.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-2 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-3 {
    float: left;
    width: 25%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-3 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-4 {
    float: left;
    width: 33.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-4 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-5 {
    float: left;
    width: 41.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-5 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-6 {
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box
}

.wblm-grid-col-6:after, .wblm-grid-col-6:before {
    content: " ";
    display: table
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-6 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-7 {
    float: left;
    width: 58.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-7 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-8 {
    float: left;
    width: 66.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-8 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-9 {
    float: left;
    width: 75%
}

.wblm-grid-col-9:after {
    clear: both
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-9 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-10 {
    float: left;
    width: 83.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-10 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-11 {
    float: left;
    width: 91.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-11 {
        width: 100%;
        float: none
    }
}

.wblm-grid-col-12 {
    float: left;
    width: 100%
}

.wblm-grid-col-push-1 {
    left: 8.33333%
}

.wblm-grid-col-pull-1 {
    right: 8.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-12 {
        width: 100%;
        float: none
    }

    .wblm-grid-col-push-1 {
        left: 0
    }

    .wblm-grid-col-pull-1 {
        right: 0
    }
}

.wblm-grid-col-push-2 {
    left: 16.66667%
}

.wblm-grid-col-pull-2 {
    right: 16.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-2 {
        left: 0
    }

    .wblm-grid-col-pull-2 {
        right: 0
    }
}

.wblm-grid-col-push-3 {
    left: 25%
}

.wblm-grid-col-pull-3 {
    right: 25%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-3 {
        left: 0
    }

    .wblm-grid-col-pull-3 {
        right: 0
    }
}

.wblm-grid-col-push-4 {
    left: 33.33333%
}

.wblm-grid-col-pull-4 {
    right: 33.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-4 {
        left: 0
    }

    .wblm-grid-col-pull-4 {
        right: 0
    }
}

.wblm-grid-col-push-5 {
    left: 41.66667%
}

.wblm-grid-col-pull-5 {
    right: 41.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-5 {
        left: 0
    }

    .wblm-grid-col-pull-5 {
        right: 0
    }
}

.wblm-grid-col-push-6 {
    left: 50%
}

.wblm-grid-col-pull-6 {
    right: 50%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-6 {
        left: 0
    }

    .wblm-grid-col-pull-6 {
        right: 0
    }
}

.wblm-grid-col-push-7 {
    left: 58.33333%
}

.wblm-grid-col-pull-7 {
    right: 58.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-7 {
        left: 0
    }

    .wblm-grid-col-pull-7 {
        right: 0
    }
}

.wblm-grid-col-push-8 {
    left: 66.66667%
}

.wblm-grid-col-pull-8 {
    right: 66.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-8 {
        left: 0
    }

    .wblm-grid-col-pull-8 {
        right: 0
    }
}

.wblm-grid-col-push-9 {
    left: 75%
}

.wblm-grid-col-pull-9 {
    right: 75%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-9 {
        left: 0
    }

    .wblm-grid-col-pull-9 {
        right: 0
    }
}

.wblm-grid-col-push-10 {
    left: 83.33333%
}

.wblm-grid-col-pull-10 {
    right: 83.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-10 {
        left: 0
    }

    .wblm-grid-col-pull-10 {
        right: 0
    }
}

.wblm-grid-col-push-11 {
    left: 91.66667%
}

.wblm-grid-col-pull-11 {
    right: 91.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-11 {
        left: 0
    }

    .wblm-grid-col-pull-11 {
        right: 0
    }
}

.wblm-grid-col-push-12 {
    left: 100%
}

.wblm-grid-col-pull-12 {
    right: 100%
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-disabled-bg-image-bellow-1280 {
        background-image: none !important
    }

    .wblm-grid-col-laptop-landscape-medium-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-push-12 {
        left: 0
    }

    .wblm-grid-col-pull-12 {
        right: 0
    }

    .wblm-grid-col-ipad-landscape-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .account-choices span, input[type='button'].continue{
        width:90%;

    }
    .wblm-disabled-bg-image-bellow-768 {
        background-image: none !important
    }

    .wblm-grid-col-ipad-portrait-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-disabled-bg-image-bellow-480 {
        background-image: none !important
    }
    .total_cart_line{
        text-align: center importatnt!;
    }
    .wblm-grid-col-phone-portrait-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-1 {
        width: 8.33333%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-1 {
        width: 8.33333%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-2 {
        width: 16.66667%;
        float: left
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-2 {
        width: 16.66667%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-mac-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-3 {
        width: 25%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-3 {
        width: 25%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-4 {
        width: 33.33333%;
        float: left
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-4 {
        width: 33.33333%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-mac-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-5 {
        width: 41.66667%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-5 {
        width: 41.66667%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-6 {
        width: 50%;
        float: left
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-6 {
        width: 50%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-mac-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-7 {
        width: 58.33333%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-7 {
        width: 58.33333%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-8 {
        width: 66.66667%;
        float: left
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-8 {
        width: 66.66667%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-mac-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-9 {
        width: 75%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-9 {
        width: 75%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-10 {
        width: 83.33333%;
        float: left
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-10 {
        width: 83.33333%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-mac-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-11 {
        width: 91.66667%;
        float: left
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-grid-col-laptop-landscape-large-11 {
        width: 91.66667%;
        float: left
    }

    .wblm-grid-col-laptop-landscape-large-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 1366px) {
    .wblm-grid-col-laptop-landscape-mac-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-grid-col-laptop-landscape-medium-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-grid-col-laptop-landscape-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-grid-col-ipad-landscape-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 768px) {
    .wblm-grid-col-ipad-portrait-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 680px) {
    .wblm-grid-col-phone-landscape-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 480px) {
    .wblm-grid-col-phone-portrait-12 {
        width: 100%;
        float: none
    }
}

@media only screen and (max-width: 320px) {
    .wblm-grid-col-smaller-phone-portrait-12 {
        width: 100%;
        float: none
    }
}

@-webkit-keyframes element-from-left {
    0% {
        opacity: 0;
        transform: translate(-20%, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes element-from-left {
    0% {
        opacity: 0;
        transform: translate(-20%, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@-webkit-keyframes element-from-right {
    0% {
        opacity: 0;
        transform: translate(20%, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes element-from-right {
    0% {
        opacity: 0;
        transform: translate(20%, 0)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@-webkit-keyframes element-from-top {
    0% {
        opacity: 0;
        transform: translate(0, -30%)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes element-from-top {
    0% {
        opacity: 0;
        transform: translate(0, -30%)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@-webkit-keyframes element-from-bottom {
    0% {
        opacity: 0;
        transform: translate(0, 30%)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

@keyframes element-from-bottom {
    0% {
        opacity: 0;
        transform: translate(0, 30%)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

.wblm-element-from-bottom, .wblm-element-from-fade, .wblm-element-from-left, .wblm-element-from-right, .wblm-element-from-top {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-element-from-bottom > div, .wblm-element-from-fade > div, .wblm-element-from-left > div, .wblm-element-from-right > div, .wblm-element-from-top > div {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    opacity: 0
}

.wblm-element-from-fade.wblm-element-from-fade-on > div {
    opacity: 1;
    -webkit-transition: opacity .8s ease 0s;
    -moz-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s
}

.wblm-element-from-left.wblm-element-from-left-on > div {
    -webkit-animation: element-from-left .55s 1 ease;
    -moz-animation: element-from-left .55s 1 ease;
    animation: element-from-left .55s 1 ease;
    opacity: 1
}

.wblm-element-from-right.wblm-element-from-right-on > div {
    -webkit-animation: element-from-right .55s 1 ease;
    -moz-animation: element-from-right .55s 1 ease;
    animation: element-from-right .55s 1 ease;
    opacity: 1
}

.wblm-element-from-top.wblm-element-from-top-on > div {
    -webkit-animation: element-from-top .55s 1 ease;
    -moz-animation: element-from-top .55s 1 ease;
    animation: element-from-top .55s 1 ease;
    opacity: 1
}

.wblm-element-from-bottom.wblm-element-from-bottom-on > div {
    -webkit-animation: element-from-bottom .55s 1 ease;
    -moz-animation: element-from-bottom .55s 1 ease;
    animation: element-from-bottom .55s 1 ease;
    opacity: 1
}

.wblm-flip-in {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(25deg);
    -moz-transform: perspective(1000px) rotateY(25deg);
    transform: perspective(1000px) rotateY(25deg);
    -webkit-transition: all 1.1s ease-in-out;
    -moz-transition: all 1.1s ease-in-out;
    transition: all 1.1s ease-in-out
}

.wblm-flip-in.wblm-flip-in-on {
    opacity: 1;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    transform: rotateY(0)
}

.wblm-grow-in {
    opacity: 0;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: all 1s cubic-bezier(0, 1, .5, 1);
    -moz-transition: all 1s cubic-bezier(0, 1, .5, 1);
    transition: all 1s cubic-bezier(0, 1, .5, 1)
}

.wblm-grow-in.wblm-grow-in-on {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
}

.wblm-z-rotate {
    opacity: 0;
    -webkit-transform: rotateZ(7deg);
    -moz-transform: rotateZ(7deg);
    transform: rotateZ(7deg);
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    transform-origin: top right
}

.wblm-z-rotate.wblm-z-rotate-on {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    transform: rotateZ(0)
}

.wblm-x-rotate {
    opacity: 0;
    -webkit-transform: perspective(900px) rotateX(-45deg);
    -moz-transform: perspective(900px) rotateX(-45deg);
    transform: perspective(900px) rotateX(-45deg);
    -webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
    -moz-transition: all .6s cubic-bezier(.785, .135, .15, .86);
    transition: all .6s cubic-bezier(.785, .135, .15, .86)
}

.wblm-x-rotate.wblm-x-rotate-on {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    transform: rotateX(0)
}

.wblm-y-translate {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: all .7s cubic-bezier(.68, -.65, .265, 1.65);
    -moz-transition: all .7s cubic-bezier(.68, -.65, .265, 1.65);
    transition: all .7s cubic-bezier(.68, -.65, .265, 1.65)
}

.wblm-y-translate.wblm-y-translate-on {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0)
}

.wblm-fade-in-down {
    opacity: 0;
    -webkit-transform: translate(0, -25px);
    -moz-transform: translate(0, -25px);
    transform: translate(0, -25px);
    -webkit-transition: all .9s cubic-bezier(0, 1, .5, 1);
    -moz-transition: all .9s cubic-bezier(0, 1, .5, 1);
    transition: all .9s cubic-bezier(0, 1, .5, 1)
}

.wblm-fade-in-down.wblm-fade-in-down-on {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0)
}

.wblm-fade-in-left-x-rotate {
    opacity: 0;
    -webkit-transform: rotateZ(-5deg) translate(-30px, 0);
    -moz-transform: rotateZ(-5deg) translate(-30px, 0);
    transform: rotateZ(-5deg) translate(-30px, 0);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease
}

.wblm-fade-in-left-x-rotate.wblm-fade-in-left-x-rotate-on {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    -moz-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0)
}

.wblm-fade-in {
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease
}

.wblm-fade-in.wblm-fade-in-on {
    opacity: 1
}

.wblm-st-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2100;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@-webkit-keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        -moz-transform: translateY(-145%);
        transform: translateY(-145%)
    }
    10%, 90% {
        opacity: .5
    }
    20%, 80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        -moz-transform: translateY(145%);
        transform: translateY(145%)
    }
}

@keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        -moz-transform: translateY(-145%);
        transform: translateY(-145%)
    }
    10%, 90% {
        opacity: .5
    }
    20%, 80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        -moz-transform: translateY(145%);
        transform: translateY(145%)
    }
}

.wblm-st-loader .wblm-rotate-circles {
    width: 60px;
    height: 20px
}

.wblm-st-loader .wblm-rotate-circles > div {
    background-color: #333;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 4px;
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: ball-fall 1.5s ease infinite both;
    -moz-animation: ball-fall 1.5s ease infinite both;
    animation: ball-fall 1.5s ease infinite both
}

.wblm-st-loader .wblm-rotate-circles > div:nth-last-of-type(1) {
    -webkit-animation-delay: calc((100ms) - 300ms);
    animation-delay: calc((100ms) - 300ms)
}

.wblm-st-loader .wblm-rotate-circles > div:nth-last-of-type(2) {
    -webkit-animation-delay: calc((200ms) - 300ms);
    animation-delay: calc((200ms) - 300ms)
}

.wblm-st-loader .wblm-rotate-circles > div:nth-last-of-type(3) {
    -webkit-animation-delay: calc((300ms) - 300ms);
    animation-delay: calc((300ms) - 300ms)
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

.wblm-st-loader .pulse {
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    background-color: #000;
    border-radius: 16px;
    -webkit-animation: scaleout 1s infinite ease-in-out;
    -moz-animation: scaleout 1s infinite ease-in-out;
    animation: scaleout 1s infinite ease-in-out
}

@-webkit-keyframes double-pulse {
    0%, 100% {
        transform: scale(0)
    }
    50% {
        transform: scale(1)
    }
}

@keyframes double-pulse {
    0%, 100% {
        transform: scale(0)
    }
    50% {
        transform: scale(1)
    }
}

.wblm-st-loader .double_pulse {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    position: relative
}

.wblm-st-loader .double_pulse .double-bounce1, .wblm-st-loader .double_pulse .double-bounce2 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: #000;
    opacity: .6;
    -webkit-animation: double-pulse 2s infinite ease-in-out;
    -moz-animation: double-pulse 2s infinite ease-in-out;
    animation: double-pulse 2s infinite ease-in-out
}

.wblm-st-loader .double_pulse .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes cube {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

@keyframes cube {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.wblm-st-loader .cube {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background-color: #000;
    -webkit-animation: cube 1.2s infinite ease-in-out;
    -moz-animation: cube 1.2s infinite ease-in-out;
    animation: cube 1.2s infinite ease-in-out
}

@-webkit-keyframes rotating-cubes {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(.5)
    }
    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg)
    }
    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg)
    }
    75% {
        transform: translateX(0) translateY(42px) rotate(-270deg) scale(.5)
    }
    100% {
        transform: rotate(-360deg)
    }
}

@keyframes rotating-cubes {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(.5)
    }
    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg)
    }
    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg)
    }
    75% {
        transform: translateX(0) translateY(42px) rotate(-270deg) scale(.5)
    }
    100% {
        transform: rotate(-360deg)
    }
}

.wblm-st-loader .rotating_cubes {
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    position: relative
}

.wblm-st-loader .rotating_cubes .cube1, .wblm-st-loader .rotating_cubes .cube2 {
    background-color: #000;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: rotating-cubes 1.8s infinite ease-in-out;
    -moz-animation: rotating-cubes 1.8s infinite ease-in-out;
    animation: rotating-cubes 1.8s infinite ease-in-out
}

.wblm-st-loader .rotating_cubes .cube2 {
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s
}

@-webkit-keyframes stretchdelay {
    0%, 100%, 40% {
        transform: scaleY(.4)
    }
    20% {
        transform: scaleY(1)
    }
}

@keyframes stretchdelay {
    0%, 100%, 40% {
        transform: scaleY(.4)
    }
    20% {
        transform: scaleY(1)
    }
}

.wblm-st-loader .stripes {
    width: 50px;
    height: 60px;
    margin: -30px 0 0 -25px;
    text-align: center;
    font-size: 10px
}

.wblm-st-loader .stripes > div {
    background-color: #000;
    height: 100%;
    width: 6px;
    display: inline-block;
    margin: 0 3px 0 0;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    -moz-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out
}

.wblm-st-loader .stripes .rect2 {
    -webkit-animation-delay: calc((200ms) - 1300ms);
    animation-delay: calc((200ms) - 1300ms)
}

.wblm-st-loader .stripes .rect3 {
    -webkit-animation-delay: calc((300ms) - 1300ms);
    animation-delay: calc((300ms) - 1300ms)
}

.wblm-st-loader .stripes .rect4 {
    -webkit-animation-delay: calc((400ms) - 1300ms);
    animation-delay: calc((400ms) - 1300ms)
}

.wblm-st-loader .stripes .rect5 {
    -webkit-animation-delay: calc((500ms) - 1300ms);
    animation-delay: calc((500ms) - 1300ms)
}

@-webkit-keyframes bouncedelay {
    0%, 100%, 80% {
        transform: scale(0)
    }
    40% {
        transform: scale(1)
    }
}

@keyframes bouncedelay {
    0%, 100%, 80% {
        transform: scale(0)
    }
    40% {
        transform: scale(1)
    }
}

.wblm-st-loader .wave {
    width: 72px;
    text-align: center;
    margin: -9px 0 0 -36px
}

.wblm-st-loader .wave > div {
    width: 18px;
    height: 18px;
    background-color: #000;
    margin: 0 3px 0 0;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both
}

.wblm-st-loader .wave .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.wblm-st-loader .wave .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes rotatecircles {
    to {
        transform: rotate(360deg)
    }
}

@keyframes rotatecircles {
    to {
        transform: rotate(360deg)
    }
}

.wblm-st-loader .two_rotating_circles {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    position: relative;
    text-align: center;
    -webkit-animation: rotatecircles 2s infinite linear;
    -moz-animation: rotatecircles 2s infinite linear;
    animation: rotatecircles 2s infinite linear
}

.wblm-st-loader .two_rotating_circles .dot1, .wblm-st-loader .two_rotating_circles .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: bounce 2s infinite ease-in-out;
    -moz-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out
}

.wblm-st-loader .two_rotating_circles .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.wblm-st-loader .five_rotating_circles {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    position: relative
}

.wblm-st-loader .five_rotating_circles .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%
}

.wblm-st-loader .five_rotating_circles .spinner-container > div {
    background-color: #000;
    border-radius: 100%;
    position: absolute;
    width: 12px;
    height: 12px;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out both;
    -moz-animation: bouncedelay 1.2s infinite ease-in-out both;
    animation: bouncedelay 1.2s infinite ease-in-out both
}

.wblm-st-loader .five_rotating_circles .spinner-container > div.circle1 {
    top: 0;
    left: 0
}

.wblm-st-loader .five_rotating_circles .spinner-container > div.circle2 {
    top: 0;
    right: 0
}

.wblm-st-loader .five_rotating_circles .spinner-container > div.circle3 {
    right: 0;
    bottom: 0
}

.wblm-st-loader .five_rotating_circles .spinner-container > div.circle4 {
    left: 0;
    bottom: 0
}

.wblm-st-loader .five_rotating_circles .spinner-container.container1 .circle2 {
    -webkit-animation-delay: calc((600ms) - 1500ms);
    animation-delay: calc((600ms) - 1500ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container1 .circle3 {
    -webkit-animation-delay: calc((900ms) - 1500ms);
    animation-delay: calc((900ms) - 1500ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container1 .circle4 {
    -webkit-animation-delay: calc((1200ms) - 1500ms);
    animation-delay: calc((1200ms) - 1500ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container2 {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    transform: rotateZ(45deg)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container2 .circle1 {
    -webkit-animation-delay: calc((300ms) - 1400ms);
    animation-delay: calc((300ms) - 1400ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container2 .circle2 {
    -webkit-animation-delay: calc((600ms) - 1400ms);
    animation-delay: calc((600ms) - 1400ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container2 .circle3 {
    -webkit-animation-delay: calc((900ms) - 1400ms);
    animation-delay: calc((900ms) - 1400ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container2 .circle4 {
    -webkit-animation-delay: calc((1200ms) - 1400ms);
    animation-delay: calc((1200ms) - 1400ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container3 {
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    transform: rotateZ(90deg)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container3 .circle1 {
    -webkit-animation-delay: calc((300ms) - 1300ms);
    animation-delay: calc((300ms) - 1300ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container3 .circle2 {
    -webkit-animation-delay: calc((600ms) - 1300ms);
    animation-delay: calc((600ms) - 1300ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container3 .circle3 {
    -webkit-animation-delay: calc((900ms) - 1300ms);
    animation-delay: calc((900ms) - 1300ms)
}

.wblm-st-loader .five_rotating_circles .spinner-container.container3 .circle4 {
    -webkit-animation-delay: calc((1200ms) - 1300ms);
    animation-delay: calc((1200ms) - 1300ms)
}

@-webkit-keyframes atom_position {
    50% {
        top: 80px;
        left: 80px
    }
}

@keyframes atom_position {
    50% {
        top: 80px;
        left: 80px
    }
}

@-webkit-keyframes atom_size {
    50% {
        transform: scale(.5)
    }
}

@keyframes atom_size {
    50% {
        transform: scale(.5)
    }
}

@-webkit-keyframes atom_zindex {
    100% {
        z-index: 10
    }
}

@keyframes atom_zindex {
    100% {
        z-index: 10
    }
}

@-webkit-keyframes atom_shrink {
    50% {
        transform: scale(.9)
    }
}

@keyframes atom_shrink {
    50% {
        transform: scale(.9)
    }
}

.wblm-st-loader .atom {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    position: relative
}

.wblm-st-loader .atom .ball-1 {
    height: 50%;
    width: 50%;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 1;
    -webkit-animation: atom_shrink 4.5s infinite linear;
    -moz-animation: atom_shrink 4.5s infinite linear;
    animation: atom_shrink 4.5s infinite linear
}

.wblm-st-loader .atom .ball-1:before {
    content: '';
    background: #000;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -50%;
    left: -50%
}

.wblm-st-loader .atom .ball-2 {
    -webkit-animation: atom_zindex 1.5s .75s infinite steps(2, end);
    -moz-animation: atom_zindex 1.5s .75s infinite steps(2, end);
    animation: atom_zindex 1.5s .75s infinite steps(2, end)
}

.wblm-st-loader .atom .ball-2:before {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    -webkit-animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
    -moz-animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
    animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease
}

.wblm-st-loader .atom .ball-3 {
    -webkit-transform: rotate(120deg);
    -moz-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation: atom_zindex 1.5s -.25s infinite steps(2, end);
    -moz-animation: atom_zindex 1.5s -.25s infinite steps(2, end);
    animation: atom_zindex 1.5s -.25s infinite steps(2, end)
}

.wblm-st-loader .atom .ball-3:before {
    -webkit-animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -.75s infinite ease;
    -moz-animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -.75s infinite ease;
    animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -.75s infinite ease
}

.wblm-st-loader .atom .ball-4 {
    -webkit-transform: rotate(240deg);
    -moz-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation: atom_zindex 1.5s .25s infinite steps(2, end);
    -moz-animation: atom_zindex 1.5s .25s infinite steps(2, end);
    animation: atom_zindex 1.5s .25s infinite steps(2, end)
}

.wblm-st-loader .atom .ball-4:before {
    -webkit-animation: atom_position 1.5s -.5s infinite ease, atom_size 1.5s -125ms infinite ease;
    -moz-animation: atom_position 1.5s -.5s infinite ease, atom_size 1.5s -125ms infinite ease;
    animation: atom_position 1.5s -.5s infinite ease, atom_size 1.5s -125ms infinite ease
}

.wblm-st-loader .atom .ball-2, .wblm-st-loader .atom .ball-3, .wblm-st-loader .atom .ball-4 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0
}

.wblm-st-loader .atom .ball-2:before, .wblm-st-loader .atom .ball-3:before, .wblm-st-loader .atom .ball-4:before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #000;
    top: 0;
    left: 0;
    margin: 0 auto;
    position: absolute
}

@-webkit-keyframes clock {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes clock {
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes clock1 {
    0% {
        transform: rotate(-135deg)
    }
    100%, 30% {
        transform: rotate(-450deg)
    }
}

@keyframes clock1 {
    0% {
        transform: rotate(-135deg)
    }
    100%, 30% {
        transform: rotate(-450deg)
    }
}

@-webkit-keyframes clock2 {
    5% {
        transform: rotate(-90deg)
    }
    100%, 35% {
        transform: rotate(-405deg)
    }
}

@keyframes clock2 {
    5% {
        transform: rotate(-90deg)
    }
    100%, 35% {
        transform: rotate(-405deg)
    }
}

@-webkit-keyframes clock3 {
    10% {
        transform: rotate(-45deg)
    }
    100%, 40% {
        transform: rotate(-360deg)
    }
}

@keyframes clock3 {
    10% {
        transform: rotate(-45deg)
    }
    100%, 40% {
        transform: rotate(-360deg)
    }
}

@-webkit-keyframes clock4 {
    15% {
        transform: rotate(0)
    }
    100%, 45% {
        transform: rotate(-315deg)
    }
}

@keyframes clock4 {
    15% {
        transform: rotate(0)
    }
    100%, 45% {
        transform: rotate(-315deg)
    }
}

.wblm-st-loader .clock {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    position: relative;
    -webkit-animation: clock 8s infinite steps(8);
    -moz-animation: clock 8s infinite steps(8);
    animation: clock 8s infinite steps(8)
}

.wblm-st-loader .clock .ball {
    height: 50px;
    width: 50px;
    position: absolute
}

.wblm-st-loader .clock .ball:before {
    content: '';
    border-radius: 50%;
    height: 18.32px;
    width: 18.32px;
    position: absolute;
    background: #000
}

.wblm-st-loader .clock .ball.ball-1 {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-animation: clock1 1s ease-in infinite;
    -moz-animation: clock1 1s ease-in infinite;
    animation: clock1 1s ease-in infinite
}

.wblm-st-loader .clock .ball.ball-2 {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-animation: clock2 1s ease-in infinite;
    -moz-animation: clock2 1s ease-in infinite;
    animation: clock2 1s ease-in infinite
}

.wblm-st-loader .clock .ball.ball-3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: clock3 1s ease-in infinite;
    -moz-animation: clock3 1s ease-in infinite;
    animation: clock3 1s ease-in infinite
}

.wblm-st-loader .clock .ball.ball-4 {
    -webkit-animation: clock4 1s ease-in infinite;
    -moz-animation: clock4 1s ease-in infinite;
    animation: clock4 1s ease-in infinite
}

@-webkit-keyframes mitosis_invert {
    100% {
        transform: rotate(180deg)
    }
}

@keyframes mitosis_invert {
    100% {
        transform: rotate(180deg)
    }
}

@-webkit-keyframes mitosis_ball1 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(50%) scale(.8, .8)
    }
    74% {
        transform: translate(50%, 25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(50%, 50%) scale(.6, .6)
    }
}

@keyframes mitosis_ball1 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(50%) scale(.8, .8)
    }
    74% {
        transform: translate(50%, 25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(50%, 50%) scale(.6, .6)
    }
}

@-webkit-keyframes mitosis_ball2 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(50%) scale(.8, .8)
    }
    74% {
        transform: translate(50%, -25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(50%, -50%) scale(.6, .6)
    }
}

@keyframes mitosis_ball2 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(50%) scale(.8, .8)
    }
    74% {
        transform: translate(50%, -25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(50%, -50%) scale(.6, .6)
    }
}

@-webkit-keyframes mitosis_ball3 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(-25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(-50%) scale(.8, .8)
    }
    74% {
        transform: translate(-50%, 25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(-50%, 50%) scale(.6, .6)
    }
}

@keyframes mitosis_ball3 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(-25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(-50%) scale(.8, .8)
    }
    74% {
        transform: translate(-50%, 25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(-50%, 50%) scale(.6, .6)
    }
}

@-webkit-keyframes mitosis_ball4 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(-25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(-50%) scale(.8, .8)
    }
    74% {
        transform: translate(-50%, -25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(-50%, -50%) scale(.6, .6)
    }
}

@keyframes mitosis_ball4 {
    12% {
        transform: none
    }
    26% {
        transform: translateX(-25%) scale(1, .8)
    }
    40%, 60% {
        transform: translateX(-50%) scale(.8, .8)
    }
    74% {
        transform: translate(-50%, -25%) scale(.6, .8)
    }
    100%, 88% {
        transform: translate(-50%, -50%) scale(.6, .6)
    }
}

.wblm-st-loader .mitosis {
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
    position: relative;
    -webkit-animation: mitosis_invert 2s infinite steps(2, end);
    -moz-animation: mitosis_invert 2s infinite steps(2, end);
    animation: mitosis_invert 2s infinite steps(2, end)
}

.wblm-st-loader .mitosis .ball {
    border-radius: 50%;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000
}

.wblm-st-loader .mitosis .ball.ball-1 {
    -webkit-animation: mitosis_ball1 1s infinite alternate linear;
    -moz-animation: mitosis_ball1 1s infinite alternate linear;
    animation: mitosis_ball1 1s infinite alternate linear
}

.wblm-st-loader .mitosis .ball.ball-2 {
    -webkit-animation: mitosis_ball2 1s infinite alternate linear;
    -moz-animation: mitosis_ball2 1s infinite alternate linear;
    animation: mitosis_ball2 1s infinite alternate linear
}

.wblm-st-loader .mitosis .ball.ball-3 {
    -webkit-animation: mitosis_ball3 1s infinite alternate linear;
    -moz-animation: mitosis_ball3 1s infinite alternate linear;
    animation: mitosis_ball3 1s infinite alternate linear
}

.wblm-st-loader .mitosis .ball.ball-4 {
    -webkit-animation: mitosis_ball4 1s infinite alternate linear;
    -moz-animation: mitosis_ball4 1s infinite alternate linear;
    animation: mitosis_ball4 1s infinite alternate linear
}

@-webkit-keyframes lines_spin {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes lines_spin {
    100% {
        transform: rotate(360deg)
    }
}

.wblm-st-loader .lines {
    width: 60px;
    height: 60px;
    margin: 0 0 0 -30px
}

.wblm-st-loader .lines .line1, .wblm-st-loader .lines .line2, .wblm-st-loader .lines .line3, .wblm-st-loader .lines .line4 {
    margin-left: 10px;
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #000
}

.wblm-st-loader .lines .line1 {
    -webkit-animation: lines_spin 1.5s infinite ease calc((100ms) - 100ms);
    -moz-animation: lines_spin 1.5s infinite ease calc((100ms) - 100ms);
    animation: lines_spin 1.5s infinite ease calc((100ms) - 100ms)
}

.wblm-st-loader .lines .line2 {
    -webkit-animation: lines_spin 1.5s infinite ease calc((200ms) - 100ms);
    -moz-animation: lines_spin 1.5s infinite ease calc((200ms) - 100ms);
    animation: lines_spin 1.5s infinite ease calc((200ms) - 100ms)
}

.wblm-st-loader .lines .line3 {
    -webkit-animation: lines_spin 1.5s infinite ease calc((300ms) - 100ms);
    -moz-animation: lines_spin 1.5s infinite ease calc((300ms) - 100ms);
    animation: lines_spin 1.5s infinite ease calc((300ms) - 100ms)
}

.wblm-st-loader .lines .line4 {
    -webkit-animation: lines_spin 1.5s infinite ease calc((400ms) - 100ms);
    -moz-animation: lines_spin 1.5s infinite ease calc((400ms) - 100ms);
    animation: lines_spin 1.5s infinite ease calc((400ms) - 100ms)
}

@-webkit-keyframes fussion_ball1 {
    50% {
        top: -100%;
        left: 200%
    }
    100% {
        top: 50%;
        left: 100%;
        z-index: 2
    }
}

@keyframes fussion_ball1 {
    50% {
        top: -100%;
        left: 200%
    }
    100% {
        top: 50%;
        left: 100%;
        z-index: 2
    }
}

@-webkit-keyframes fussion_ball2 {
    50% {
        top: 200%;
        left: 200%
    }
    100% {
        top: 100%;
        left: 50%;
        z-index: 1
    }
}

@keyframes fussion_ball2 {
    50% {
        top: 200%;
        left: 200%
    }
    100% {
        top: 100%;
        left: 50%;
        z-index: 1
    }
}

@-webkit-keyframes fussion_ball3 {
    50% {
        top: 200%;
        left: -100%
    }
    100% {
        top: 50%;
        left: 0;
        z-index: 2
    }
}

@keyframes fussion_ball3 {
    50% {
        top: 200%;
        left: -100%
    }
    100% {
        top: 50%;
        left: 0;
        z-index: 2
    }
}

@-webkit-keyframes fussion_ball4 {
    50% {
        top: -100%;
        left: -100%
    }
    100% {
        top: 0;
        left: 50%;
        z-index: 1
    }
}

@keyframes fussion_ball4 {
    50% {
        top: -100%;
        left: -100%
    }
    100% {
        top: 0;
        left: 50%;
        z-index: 1
    }
}

.wblm-st-loader .fussion {
    width: 30px;
    height: 30px;
    margin: -45px 0 0 -30px;
    position: relative
}

.wblm-st-loader .fussion .ball {
    height: 40px;
    width: 40px;
    left: 50%;
    top: 50%;
    background: #000;
    border-radius: 50%;
    float: left;
    position: absolute
}

.wblm-st-loader .fussion .ball.ball-1 {
    top: 0;
    left: 50%;
    -webkit-animation: fussion_ball1 1s 0s ease infinite;
    -moz-animation: fussion_ball1 1s 0s ease infinite;
    animation: fussion_ball1 1s 0s ease infinite;
    z-index: 1
}

.wblm-st-loader .fussion .ball.ball-2 {
    top: 50%;
    left: 100%;
    -webkit-animation: fussion_ball2 1s 0s ease infinite;
    -moz-animation: fussion_ball2 1s 0s ease infinite;
    animation: fussion_ball2 1s 0s ease infinite;
    z-index: 2
}

.wblm-st-loader .fussion .ball.ball-3 {
    top: 100%;
    left: 50%;
    -webkit-animation: fussion_ball3 1s 0s ease infinite;
    -moz-animation: fussion_ball3 1s 0s ease infinite;
    animation: fussion_ball3 1s 0s ease infinite;
    z-index: 1
}

.wblm-st-loader .fussion .ball.ball-4 {
    top: 50%;
    left: 0;
    -webkit-animation: fussion_ball4 1s 0s ease infinite;
    -moz-animation: fussion_ball4 1s 0s ease infinite;
    animation: fussion_ball4 1s 0s ease infinite;
    z-index: 2
}

@-webkit-keyframes wave_jump1 {
    12% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 24% {
        transform: translate(40px, 0)
    }
}

@keyframes wave_jump1 {
    12% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 24% {
        transform: translate(40px, 0)
    }
}

@-webkit-keyframes wave_jump2 {
    12% {
        transform: translate(0, 0)
    }
    24% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 36% {
        transform: translate(40px, 0)
    }
}

@keyframes wave_jump2 {
    12% {
        transform: translate(0, 0)
    }
    24% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 36% {
        transform: translate(40px, 0)
    }
}

@-webkit-keyframes wave_jump3 {
    24% {
        transform: translate(0, 0)
    }
    36% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 48% {
        transform: translate(40px, 0)
    }
}

@keyframes wave_jump3 {
    24% {
        transform: translate(0, 0)
    }
    36% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }
    100%, 48% {
        transform: translate(40px, 0)
    }
}

@-webkit-keyframes wave_wipe {
    100%, 48% {
        transform: translateX(-120px)
    }
}

@keyframes wave_wipe {
    100%, 48% {
        transform: translateX(-120px)
    }
}

.wblm-st-loader .wave_circles {
    width: 150px;
    height: 30px;
    margin: -15px 0 0 -75px
}

.wblm-st-loader .wave_circles .ball {
    height: 30px;
    width: 30px;
    float: left;
    background: #000;
    border-radius: 50%;
    margin-right: 10px
}

.wblm-st-loader .wave_circles .ball.ball-1 {
    -webkit-animation: wave_jump3 1.8s infinite ease-out;
    -moz-animation: wave_jump3 1.8s infinite ease-out;
    animation: wave_jump3 1.8s infinite ease-out
}

.wblm-st-loader .wave_circles .ball.ball-2 {
    -webkit-animation: wave_jump2 1.8s infinite ease-out;
    -moz-animation: wave_jump2 1.8s infinite ease-out;
    animation: wave_jump2 1.8s infinite ease-out
}

.wblm-st-loader .wave_circles .ball.ball-3 {
    -webkit-animation: wave_jump1 1.8s infinite ease-out;
    -moz-animation: wave_jump1 1.8s infinite ease-out;
    animation: wave_jump1 1.8s infinite ease-out
}

.wblm-st-loader .wave_circles .ball.ball-4 {
    margin-right: 0;
    -webkit-animation: wave_wipe 1.8s infinite cubic-bezier(.5, 0, .5, 1);
    -moz-animation: wave_wipe 1.8s infinite cubic-bezier(.5, 0, .5, 1);
    animation: wave_wipe 1.8s infinite cubic-bezier(.5, 0, .5, 1)
}

@-webkit-keyframes pulse_circles_pulse {
    0% {
        transform: scale(.1);
        opacity: 1;
        border-width: 50px
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
        border-width: 0
    }
}

@keyframes pulse_circles_pulse {
    0% {
        transform: scale(.1);
        opacity: 1;
        border-width: 50px
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
        border-width: 0
    }
}

.wblm-st-loader .pulse_circles {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    position: relative
}

.wblm-st-loader .pulse_circles .ball {
    height: 100%;
    width: 100%;
    background: #000;
    position: absolute;
    box-sizing: border-box;
    border-radius: 50%;
    border: 0 solid #000
}

.wblm-st-loader .pulse_circles .ball.ball-1 {
    -webkit-animation: pulse_circles_pulse 3s infinite calc((-750ms) + 750ms);
    -moz-animation: pulse_circles_pulse 3s infinite calc((-750ms) + 750ms);
    animation: pulse_circles_pulse 3s infinite calc((-750ms) + 750ms)
}

.wblm-st-loader .pulse_circles .ball.ball-2 {
    -webkit-animation: pulse_circles_pulse 3s infinite calc((-1500ms) + 750ms);
    -moz-animation: pulse_circles_pulse 3s infinite calc((-1500ms) + 750ms);
    animation: pulse_circles_pulse 3s infinite calc((-1500ms) + 750ms)
}

.wblm-st-loader .pulse_circles .ball.ball-3 {
    -webkit-animation: pulse_circles_pulse 3s infinite calc((-2250ms) + 750ms);
    -moz-animation: pulse_circles_pulse 3s infinite calc((-2250ms) + 750ms);
    animation: pulse_circles_pulse 3s infinite calc((-2250ms) + 750ms)
}

.wblm-st-loader .pulse_circles .ball.ball-4 {
    -webkit-animation: pulse_circles_pulse 3s infinite calc((-3000ms) + 750ms);
    -moz-animation: pulse_circles_pulse 3s infinite calc((-3000ms) + 750ms);
    animation: pulse_circles_pulse 3s infinite calc((-3000ms) + 750ms)
}

.wblm-st-loader1 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%
}

.wblm-st-loader2 {
    margin: -50% 0 0 -50%
}

#respond input[type=text], #respond textarea, .wblm-style-form textarea, .post-password-form input[type=password], .wpcf7-form-control.wpcf7-date, .wpcf7-form-control.wpcf7-number, .wpcf7-form-control.wpcf7-quiz, .wpcf7-form-control.wpcf7-select, .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-textarea, input[type=text], input[type=email], input[type=password] {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    padding: 5px 0;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em;
    line-height: calc(30px - (5px * 2) - 2px);
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

#respond input:focus[type=text], #respond textarea:focus, .wblm-style-form textarea:focus, .wpcf7-form-control.wpcf7-date:focus, .wpcf7-form-control.wpcf7-number:focus, .wpcf7-form-control.wpcf7-quiz:focus, .wpcf7-form-control.wpcf7-select:focus, .wpcf7-form-control.wpcf7-text:focus, .wpcf7-form-control.wpcf7-textarea:focus, input:focus[type=text], input:focus[type=email], input:focus[type=password] {
    color: #000;
    border-color: #000
}

#respond input[type=text]::-webkit-input-placeholder, #respond textarea::-webkit-input-placeholder, .wblm-style-form textarea::-webkit-input-placeholder, .post-password-form input[type=password]::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-date::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-number::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-quiz::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-select::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, .wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase
}

#respond input:-moz-placeholder[type=text], #respond textarea:-moz-placeholder, .wblm-style-form textarea:-moz-placeholder, .wpcf7-form-control.wpcf7-date:-moz-placeholder, .wpcf7-form-control.wpcf7-number:-moz-placeholder, .wpcf7-form-control.wpcf7-quiz:-moz-placeholder, .wpcf7-form-control.wpcf7-select:-moz-placeholder, .wpcf7-form-control.wpcf7-text:-moz-placeholder, .wpcf7-form-control.wpcf7-textarea:-moz-placeholder, input:-moz-placeholder[type=text], input:-moz-placeholder[type=email], input:-moz-placeholder[type=password] {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1
}

#respond input[type=text]::-moz-placeholder, #respond textarea::-moz-placeholder, .wblm-style-form textarea::-moz-placeholder, .post-password-form input[type=password]::-moz-placeholder, .wpcf7-form-control.wpcf7-date::-moz-placeholder, .wpcf7-form-control.wpcf7-number::-moz-placeholder, .wpcf7-form-control.wpcf7-quiz::-moz-placeholder, .wpcf7-form-control.wpcf7-select::-moz-placeholder, .wpcf7-form-control.wpcf7-text::-moz-placeholder, .wpcf7-form-control.wpcf7-textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1
}

#respond input:-ms-input-placeholder[type=text], #respond textarea:-ms-input-placeholder, .wblm-style-form textarea:-ms-input-placeholder, .wpcf7-form-control.wpcf7-date:-ms-input-placeholder, .wpcf7-form-control.wpcf7-number:-ms-input-placeholder, .wpcf7-form-control.wpcf7-quiz:-ms-input-placeholder, .wpcf7-form-control.wpcf7-select:-ms-input-placeholder, .wpcf7-form-control.wpcf7-text:-ms-input-placeholder, .wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder, input:-ms-input-placeholder[type=text], input:-ms-input-placeholder[type=email], input:-ms-input-placeholder[type=password] {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase
}

.wblm-comment-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.wblm-comment-holder .wblm-comment-holder-inner {
    padding: 0 0 20px
}

.wblm-comment-holder .wblm-comment.wblm-pingback-comment .wblm-comment-text {
    padding: 0
}

.wblm-comment-holder .wblm-comment-list {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 150
}

.wblm-comment-holder .wblm-comment-list li {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 86px 0 0
}

.wblm-comment-holder .wblm-comment-list > li:first-child {
    margin: 0;
    padding: 0;
    border: 0
}

.wblm-comment-holder .wblm-comment-list .children {
    padding: 0 0 0 103px
}

.wblm-comment-holder .wblm-comments-title {
    margin-bottom: 51px
}

.wblm-comment-holder .wblm-comments-title > * {
    margin: 0
}

.wblm-comment-holder .wblm-comment-image {
    float: left
}

.wblm-comment-holder .wblm-comment-image img {
    width: 103px;
    border-radius: 50%
}

.wblm-comment-holder .wblm-comment-text {
    padding: 0 0 0 131px
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 6px 0 7px
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-link {
    position: relative;
    float: right;
    margin-left: 10px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    font-size: 13px
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-link > a {
    margin-left: 10px;
    position: relative
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-link > a:before, .wblm-comment-holder .wblm-comment-text .wblm-comment-link > a:hover:before {
    position: absolute;
    bottom: -1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    content: '';
    left: 0;
    right: 0;
    height: 1px
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-link > a:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-link > a:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-name {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 24px;
    display: block
}

#wblm-back-to-top, .wblm-bl-holder {
    font-family: Poppins, sans-serif
}

.wblm-comment-holder .wblm-comment-text .wblm-comment-date {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

.wblm-comment-holder .wblm-comment-text .wblm-text-holder {
    margin: 12px 0 0;
    line-height: 26px
}

.wblm-comment-holder .wblm-comment-text .wblm-text-holder > p {
    margin: 0
}

.wblm-comment-holder .wblm-comment-text .comment-respond {
    margin: 50px 0
}

.wblm-comment-holder .wblm-comment-text .comment-respond .comment-reply-title {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 24px
}

.wblm-comment-holder .wblm-comment-text .comment-respond .comment-reply-title > small {
    position: relative;
    margin-left: 10px;
    display: inline-block;
    float: right;
    line-height: 24px
}

.wblm-comment-holder .wblm-comment-text .comment-respond .comment-reply-title > small #cancel-comment-reply-link {
    line-height: 19px;
    font-size: 13px
}

.wblm-comment-holder .wblm-comment-text .comment-respond .comment-reply-title > small #cancel-comment-reply-link:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-comment-holder .wblm-comment-text .comment-respond .comment-reply-title > small #cancel-comment-reply-link:hover:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-comment-holder .wblm-comment-text .comment-respond .logged-in-as {
    margin: 0 0 8px
}

.wblm-comment-holder .wblm-comment-text ol li, .wblm-comment-holder .wblm-comment-text ul li {
    display: list-item
}

.wblm-comment-holder .wblm-comment-text li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important
}

.wblm-comment-form input#author, .wblm-comment-holder input#author {
    float: left;
    width: 49%;
    margin-right: 2%
}

.wblm-comment-form input#email, .wblm-comment-holder input#email {
    float: left;
    width: 49%
}

.wblm-comment-form .comment-form-cookies-consent, .wblm-comment-holder .comment-form-cookies-consent {
    display: none
}

.wblm-comment-form {
    padding: 0;
    box-sizing: border-box
}

.wblm-comment-form .wblm-comment-form-inner {
    padding: 90px 0 54px
}

.wblm-comment-form .comment-reply-title {
    margin: 0 0 43px
}

.wblm-comment-form .logged-in-as {
    margin: 0 0 8px
}

@media only screen and (max-width: 768px) {
    .wblm-comment-holder .wblm-comment-list .children {
        padding: 0 0 0 40px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-comment-holder .wblm-comment-list .children {
        padding: 0
    }
}

@media only screen and (max-width: 480px) {
    .wblm-comment-holder .wblm-comment-image {
        float: none
    }

    .wblm-comment-holder .wblm-comment-text {
        padding: 20px 0 0;
        min-height: inherit
    }
}

.post-password-form input[type=password] {
    margin-top: 10px
}

footer .wpcf7-form-control.wpcf7-date, footer .wpcf7-form-control.wpcf7-number, footer .wpcf7-form-control.wpcf7-quiz, footer .wpcf7-form-control.wpcf7-select, footer .wpcf7-form-control.wpcf7-text, footer .wpcf7-form-control.wpcf7-textarea {
    margin: 0
}

#submit_comment, .post-password-form input[type=submit], input.wpcf7-form-control.wpcf7-submit {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 9px 46px;
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
    cursor: pointer
}

#submit_comment:before, .post-password-form input[type=submit]:before, input.wpcf7-form-control.wpcf7-submit:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

#submit_comment:hover, .post-password-form input[type=submit]:hover, input.wpcf7-form-control.wpcf7-submit:hover {
    color: #fff;
    background-color: #000
}

#submit_comment:hover:before, .post-password-form input[type=submit]:hover:before, input.wpcf7-form-control.wpcf7-submit:hover:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wpcf7-form p, p.form-submit {
    position: relative;
    margin: 0
}

.post-password-form input[type=submit]:hover, input#submit_comment:hover {
    color: #fff !important;
    background-color: #2d2d2d !important
}

p.form-submit:before, p.form-submit:hover:before {
    content: '';
    bottom: -4px;
    left: 0;
    height: 1px;
    background-color: inherit;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%;
    right: 0
}

p.form-submit {
    display: inline-block
}

p.form-submit:before {
    position: absolute;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

p.form-submit:hover:before {
    position: absolute;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

#respond textarea, .wblm-style-form textarea, .wpcf7-form textarea {
    display: block;
    border: 0;
    background-color: #f6f6f6 !important;
    border-bottom: 0 !important
}

.wblm-owl-slider.wblm-slider-hide-pagination .owl-dots, .wblm-two-columns-form-without-space .wpcf7-form .ajax-loader {
    display: none
}

textarea#comment {
    min-height: 200px
}

textarea#comment::-webkit-input-placeholder {
    text-transform: uppercase;
    font-weight: 400
}

textarea#comment:-moz-placeholder {
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1
}

textarea#comment::-moz-placeholder {
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1
}

.wblm-owl-slider .owl-nav .owl-next:hover > span, .wblm-owl-slider .owl-nav .owl-prev:hover > span {
    opacity: .7
}

textarea#comment:-ms-input-placeholder {
    text-transform: uppercase;
    font-weight: 400
}

.wblm-our-offices-form .wpcf7-submit {
    width: 100%
}

.wpcf7-form .ajax-loader {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(150%, -50%);
    -moz-transform: translate(150%, -50%);
    transform: translate(150%, -50%)
}

#text-center {
    text-align: center
}

.wblm-owl-slider {
    visibility: hidden
}

.wblm-owl-slider .owl-stage-outer {
    z-index: 1
}

.wblm-owl-slider.wblm-slider-is-moving .owl-item .wblm-block-drag-link {
    z-index: -1 !important
}

.wblm-owl-slider.wblm-slider-has-both-nav .owl-nav .owl-next, .wblm-owl-slider.wblm-slider-has-both-nav .owl-nav .owl-prev {
    -webkit-transform: translateY(calc(-50% - 21px));
    -moz-transform: translateY(calc(-50% - 21px));
    transform: translateY(calc(-50% - 21px))
}

.wblm-owl-slider .owl-nav .owl-next, .wblm-owl-slider .owl-nav .owl-prev {
    position: absolute;
    bottom: 0;
    height: 57px;
    line-height: 57px;
    text-align: center;
    width: 57px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: #000;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    z-index: 3;
    overflow: visible
}

.wblm-owl-slider .owl-nav .owl-next > span, .wblm-owl-slider .owl-nav .owl-prev > span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 1;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.wblm-owl-slider .owl-nav .owl-next > span:before, .wblm-owl-slider .owl-nav .owl-prev > span:before {
    display: block;
    line-height: inherit
}

.wblm-owl-slider .owl-nav .owl-prev {
    right: 57px
}

.wblm-owl-slider .owl-nav .owl-next {
    right: 0
}

.wblm-owl-slider .owl-dots {
    text-align: center;
    margin: 16px 0 0
}

.wblm-owl-slider .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 7px;
    background: 0 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    overflow: visible;
    -webkit-appearance: none
}

.wblm-owl-slider .owl-dots .owl-dot span {
    display: inline-block;
    vertical-align: middle;
    height: 10px;
    width: 10px;
    margin: 0;
    border-radius: 50%;
    background-color: #000;
    border: 1px solid transparent;
    box-sizing: border-box;
    -webkit-transform: scale(.4);
    -moz-transform: scale(.4);
    transform: scale(.4);
    -webkit-transition: transform .2s ease-in, border .3s ease-in;
    -moz-transition: transform .2s ease-in, border .3s ease-in;
    transition: transform .2s ease-in, border .3s ease-in
}

.wblm-owl-slider .owl-dots .owl-dot.active span, .wblm-owl-slider .owl-dots .owl-dot:hover span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    background-color: transparent;
    border-color: #000;
    -webkit-transition: transform .3s ease-out, border .2s ease-out;
    -moz-transition: transform .3s ease-out, border .2s ease-out;
    transition: transform .3s ease-out, border .2s ease-out
}

.wblm-owl-slider .owl-carousel .owl-item img {
    -webkit-transform: translateZ(0)
}

.wblm-owl-slider + .wblm-slider-thumbnail {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin: 20px -10px 0
}

.wblm-owl-slider + .wblm-slider-thumbnail > .wblm-slider-thumbnail-item {
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    line-height: 0;
    cursor: pointer
}

.wblm-owl-slider + .wblm-slider-thumbnail > .wblm-slider-thumbnail-item img {
    border: 2px solid transparent;
    -webkit-transition: border-color .2s ease-out;
    -moz-transition: border-color .2s ease-out;
    transition: border-color .2s ease-out
}

.wblm-owl-slider + .wblm-slider-thumbnail > .wblm-slider-thumbnail-item.active img {
    border: 2px solid #000
}

.wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-two .wblm-slider-thumbnail-item {
    width: 50%
}

@media only screen and (max-width: 1024px) {
    .wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-two .wblm-slider-thumbnail-item {
        width: 33.3333%
    }
}

.wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-three .wblm-slider-thumbnail-item {
    width: 33.33333%
}

@media only screen and (max-width: 1024px) {
    .wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-three .wblm-slider-thumbnail-item {
        width: 33.3333%
    }
}

.wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-four .wblm-slider-thumbnail-item {
    width: 25%
}

@media only screen and (max-width: 1024px) {
    .wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-four .wblm-slider-thumbnail-item {
        width: 33.3333%
    }
}

.wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-five .wblm-slider-thumbnail-item {
    width: 20%
}

@media only screen and (max-width: 1024px) {
    .wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-five .wblm-slider-thumbnail-item {
        width: 33.3333%
    }
}

.wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-six .wblm-slider-thumbnail-item {
    width: 16.66667%
}

@media only screen and (max-width: 1024px) {
    .wblm-owl-slider + .wblm-slider-thumbnail.wblm-slider-columns-six .wblm-slider-thumbnail-item {
        width: 33.3333%
    }
}

.error404 .wblm-wrapper {
    padding: 0 !important
}

.error404 .wblm-content {
    height: 100vh
}

.error404.admin-bar .wblm-content {
    height: calc(100vh - 32px)
}

.error404 .wblm-content-inner {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.error404 .wblm-page-not-found {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 0 20%;
    text-align: center
}

.error404 .wblm-page-not-found .wblm-404-title {
    margin: 0
}

.error404 .wblm-page-not-found .wblm-404-subtitle {
    margin: 35px 0 0
}

.error404 .wblm-page-not-found .wblm-404-text {
    margin: 10px 0 0
}

.error404 .wblm-page-not-found .wblm-btn {
    margin: 30px 0 0
}

.error404 .wblm-page-not-found .wblm-btn.wblm-btn-light-style {
    color: #585858;
    background-color: #fff;
    border-color: #fff
}

.error404 .wblm-page-not-found .wblm-btn.wblm-btn-light-style:hover {
    color: #fff !important;
    background-color: transparent !important;
    border-color: #fff !important
}

@media only screen and (max-width: 1024px) {
    .error404 .wblm-content {
        height: 100%;
        min-height: 100vh
    }

    .error404.admin-bar .wblm-content {
        height: 100%;
        min-height: calc(100vh - 32px)
    }
}

#wblm-back-to-top:before, #wblm-back-to-top:hover:before {
    position: absolute;
    bottom: 1px;
    height: 1px;
    width: 100%;
    content: '';
    background-color: currentColor;
    left: 0;
    right: 0
}

@media only screen and (max-width: 768px) {
    .error404 .wblm-page-not-found {
        padding: 70px 30px 20px
    }
}

#wblm-back-to-top {
    position: fixed;
    right: 0;
    bottom: 35px;
    margin: 0;
    z-index: 10000;
    opacity: 0;
    font-size: 15.2px;
    font-weight: 600;
    visibility: hidden;
    transform-origin: top;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg)
}

#wblm-back-to-top:before {
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

#wblm-back-to-top.off {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .15s ease, visibility 0s .15s;
    -moz-transition: opacity .15s ease, visibility 0s .15s;
    transition: opacity .15s ease, visibility 0s .15s
}

#wblm-back-to-top.on {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

#wblm-back-to-top:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

#wblm-back-to-top.wblm-back-to-top-light {
    color: #fff
}

.wblm-self-hosted-video-holder .wblm-video-wrap .mejs-container, .wblm-self-hosted-video-holder .wblm-video-wrap .mejs-overlay-play, .wblm-self-hosted-video-holder .wblm-video-wrap .mejs-poster {
    height: 100% !important; /*!important because of the inline style*/
    width: 100% !important /*!important because of the inline style*/
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    display: none
}

input[type=search]::-ms-clear {
    display: none
}

input[type=text]::-ms-clear {
    display: none
}

.wblm-rev-social-icons {
    position: relative
}

.wblm-rev-social-icons:after {
    content: '';
    background-color: currentColor;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-rev-social-icons:hover:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-bulleted-list {
    list-style: none
}

.wblm-bulleted-list li {
    margin: 13px 0
}

.wblm-bulleted-list li:before {
    content: "\2022";
    color: #f6dcd7;
    font-weight: 700;
    vertical-align: top;
    display: inline-block;
    width: 1.1em;
    margin-left: -.12em;
    font-size: 22px
}

.wblm-underlined-text:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-strikethrough-links {
    position: relative
}

.wblm-strikethrough-links:before, .wblm-strikethrough-links:hover:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-strikethrough-links:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-strikethrough-links:hover:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-bl-holder {
    position: absolute !important;
    bottom: 0;
    display: block !important;
    width: 100% !important;
    height: .611em;
    overflow: hidden;
    font-size: 229px;
    font-weight: 600;
    line-height: .751em !important;
    text-align: center;
    color: rgba(255, 255, 255, .6)
}

.wblm-bl-holder .wpb_content_element {
    transform-origin: bottom;
    -webkit-transform: translateY(50%) scaleY(0);
    -moz-transform: translateY(50%) scaleY(0);
    transform: translateY(50%) scaleY(0);
    -webkit-transition: -webkit-transform .7s cubic-bezier(.27, 0, 0, .89);
    -moz-transition: -moz-transform .7s cubic-bezier(.27, 0, 0, .89);
    transition: transform .7s cubic-bezier(.27, 0, 0, .89)
}

@media only screen and (max-width: 1440px) {
    .wblm-bl-holder {
        font-size: 160px
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-bl-holder {
        font-size: 140px
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-bl-holder {
        font-size: 90px
    }
}

.wblm-bl-holder.letterspopped .wpb_content_element {
    -webkit-transform: translateY(0) scaleY(1);
    -moz-transform: translateY(0) scaleY(1);
    transform: translateY(0) scaleY(1)
}

aside.wblm-sidebar {
    position: relative;
    z-index: 11;
    margin: 0 0 60px
}

.wpb_widgetised_column .widget:last-child, aside.wblm-sidebar .widget:last-child {
    margin: 0 !important
}

.wpb_widgetised_column {
    position: relative
}

.widget {
    margin: 0 0 40px
}

.widget .select2-container--default {
    text-align: left;
    text-transform: capitalize;
    font-size: 13px;
    letter-spacing: normal;
    border-bottom: 1px solid #000
}

.widget .select2-container--default .select2-selection__rendered {
    padding-left: 0 !important
}

.widget .wblm-widget-title {
    margin: 0 0 20px;
    font-size: 18px
}

.widget .wblm-widget-title a {
    color: inherit
}

.widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 400
}

.widget ul li {
    margin: 0 0 9px
}

.widget ul li:last-child {
    margin: 0
}

.widget ul.children {
    margin: 9px 0 0 9px
}

.widget.widget_text img {
    display: block
}

.widget.widget_shopping_cart .wblw-mini-cart__buttons:after, .widget.widget_shopping_cart .wblw-mini-cart__buttons:before {
    content: " ";
    display: table
}

.widget #wp-calendar {
    width: 100%;
    text-align: center
}

.widget #wp-calendar caption {
    color: #000;
    margin: 0 0 15px
}

.widget #wp-calendar td, .widget #wp-calendar th {
    padding: 3px 4px
}

.widget #wp-calendar td#today {
    color: #fff;
    background-color: #000
}

.widget #wp-calendar td#today a {
    color: inherit
}

.widget.wblm-recent-post-widget .wblm-widget-title {
    margin: 0 0 32px
}

.widget.wblm-recent-post-widget ul li {
    margin: 0 0 20px
}

.widget.wblm-recent-post-widget ul li a {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.widget.wblm-recent-post-widget ul li a .wblm-rp-image {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 72px;
    height: 72px
}

.widget.wblm-recent-post-widget ul li a .wblm-rp-image img {
    display: block
}

.widget.wblm-recent-post-widget ul li a .wblm-rp-text {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 0 0 0 15px
}

.widget.wblm-recent-post-widget ul li a .wblm-rp-text .wblm-rp-title {
    margin: 0 0 7px;
    font-weight: 500
}

.widget.wblm-recent-post-widget ul li a .wblm-rp-text p {
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em;
    line-height: 18px
}

.widget.widget_rss .wblm-widget-title .rsswidget:hover {
    color: #000
}

.widget.widget_rss .rss-widget-icon {
    display: inline-block
}

.widget.widget_rss ul li {
    margin: 0 0 25px
}

.widget.widget_rss ul li .rss-date {
    display: block
}

.widget.wblm-contact-form-7-widget .input-button-wrapper {
    width: 100%
}

.widget.wblm-contact-form-7-widget .input-button-wrapper input {
    width: 100% !important
}

.widget.wblm-single-line-form {
    margin: 0 0 51px
}

.wblm-page-footer:not(.wblm-footer-dark-text) .widget.wblm-single-line-form form > p {
    border-bottom: 1px solid #fff
}

.wblm-page-footer:not(.wblm-footer-dark-text) .widget.wblm-single-line-form p > .input-single-line-button-wrapper, .wblm-page-footer:not(.wblm-footer-dark-text) .widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input {
    color: #fff !important
}

.wblm-page-footer:not(.wblm-footer-dark-text) .widget.wblm-single-line-form p > .input-single-line-button-wrapper:hover {
    color: #fff
}

.widget.wblm-single-line-form form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.widget.wblm-single-line-form form > p {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

.widget.wblm-single-line-form form > p:focus-within {
    color: #000;
    border-color: #000
}

.widget.wblm-single-line-form .wpcf7-not-valid-tip {
    display: none !important
}

.widget.wblm-single-line-form p > .input-single-line-button-wrapper, .widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input {
    position: relative !important;
    display: inline-block;
    vertical-align: top;
    float: left;
    margin: 0 !important;
    height: 40px;
    line-height: 32px !important;
    color: #000 !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

.widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input {
    width: calc(100% - 40px) !important;
    font-family: inherit !important;
    font-size: 10px !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    padding: 1px !important;
    font-weight: 400 !important;
    cursor: text !important
}

.widget.widget_search input, .widget.widget_tag_cloud .tagcloud a {
    letter-spacing: .16em;
    text-transform: uppercase;
    font-family: inherit
}

.widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input::-webkit-input-placeholder {
    color: inherit
}

.widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.wblm-single-line-form p > .wpcf7-form-control-wrap > input:-ms-input-placeholder {
    color: inherit
}

.widget.wblm-single-line-form p > .input-single-line-button-wrapper {
    width: 40px !important;
    padding: 0 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    text-align: right !important
}

.widget.wblm-single-line-form p > .input-single-line-button-wrapper:hover {
    color: #000
}

.widget.wblm-single-line-form p > .input-single-line-button-wrapper:before {
    display: block;
    line-height: 40px;
    font-family: 'Font Awesome 5 Free';
    content: "\f0e0";
    font-size: 15px;
    position: relative
}

.widget.wblm-single-line-form p > .input-single-line-button-wrapper > input {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    height: 100%;
    width: 40px !important;
    padding: 0 !important;
    font-size: 0;
    opacity: 0
}

.widget.widget_search form, .widget.widget_search form > div {
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    position: relative
}

.widget.widget_search {
    margin: 0 0 51px
}

.widget.widget_search form > div {
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

.widget.widget_search form > div:focus-within {
    border-bottom-color: #000
}

.widget.widget_search button, .widget.widget_search input {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    margin: 0;
    height: 40px;
    line-height: 32px;
    color: #000;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

.widget.widget_search input {
    width: calc(100% - 40px);
    font-size: 10px
}

.widget.widget_search input::-webkit-input-placeholder {
    color: inherit
}

.widget.widget_search input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.widget_search input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.widget_search input:-ms-input-placeholder {
    color: inherit
}

.widget.widget_search button {
    width: 40px;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    text-align: right
}

.widget.widget_search button:hover {
    color: #000
}

.widget.widget_search button span, .widget.widget_search button span:before {
    display: block;
    line-height: inherit
}

.widget.widget_archive ul li, .widget.widget_categories ul li, .widget.widget_meta ul li, .widget.widget_nav_menu ul li, .widget.widget_pages ul li, .widget.widget_recent_comments ul li {
    margin: 0;
    padding: 4px 0
}

.widget.widget_archive ul li:last-child, .widget.widget_categories ul li:last-child, .widget.widget_meta ul li:last-child, .widget.widget_nav_menu ul li:last-child, .widget.widget_pages ul li:last-child, .widget.widget_recent_comments ul li:last-child {
    border: none
}

.widget.widget_archive ul li ul, .widget.widget_categories ul li ul, .widget.widget_meta ul li ul, .widget.widget_nav_menu ul li ul, .widget.widget_pages ul li ul, .widget.widget_recent_comments ul li ul {
    margin: 4px 0 0;
    padding: 0 0 0 10px
}

.widget.widget_archive ul li ul li:last-child, .widget.widget_categories ul li ul li:last-child, .widget.widget_meta ul li ul li:last-child, .widget.widget_nav_menu ul li ul li:last-child, .widget.widget_pages ul li ul li:last-child, .widget.widget_recent_comments ul li ul li:last-child {
    padding: 4px 0 0
}

.widget.widget_recent_entries .wblm-widget-title {
    margin: 0 0 23px
}

.widget.widget_recent_entries ul li {
    margin: 0 0 12px
}

.widget.widget_recent_entries ul li > span {
    display: block;
    font-size: 14px
}

.widget.widget_archive select, .widget.widget_categories select, .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    height: 54px;
    padding: 0 18px;
    line-height: 54px;
    color: #000;
    background-color: transparent;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    outline: 0;
    box-sizing: border-box
}

.widget.posts_holder ul li.menu-item-has-children > ul.sub-menu, .widget.posts_holder ul li.page_item_has_children > ul.children {
    padding-left: 10px
}

.widget.posts_holder ul li.page_item_has_children > a {
    display: block
}

.widget.posts_holder ul li.menu-item-has-children > a {
    display: block
}

.widget.widget_categories .wblm-widget-title {
    margin: 0 0 15px
}

.widget.widget_tag_cloud .wblm-widget-title {
    margin: 0 0 26px
}

.widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: transparent;
    font-size: 10px !important;
    font-weight: 500;
    line-height: 18px
}

.widget.widget_tag_cloud .tagcloud a:after {
    content: ',';
    color: #000
}

.widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.widget.widget_media_image {
    margin: 0 0 18px
}

.widget.widget_media_image a, .widget.widget_media_image img {
    display: block
}

.vc_wp_search .widget.widget_search form > div {
    background-color: #fff;
    border: none
}

.wblm-page-footer .widget.widget_archive select option, .wblm-page-footer .widget.widget_categories select option, .wblm-page-footer .widget.widget_text select option, .wblm-page-footer.wblm-footer-dark-text .widget.widget_archive select option, .wblm-page-footer.wblm-footer-dark-text .widget.widget_categories select option, .wblm-page-footer.wblm-footer-dark-text .widget.widget_text select option, .wblm-side-menu .widget.widget_archive select option, .wblm-side-menu .widget.widget_categories select option, .wblm-side-menu .widget.widget_text select option {
    background-color: #363636
}

.wblm-side-menu .widget table tbody tr, .wblm-side-menu .widget table thead tr, .wblm-side-menu .widget.widget_search form > div {
    border-color: #000
}

.vc_wp_search .widget.widget_search input {
    width: calc(100% - 66px);
    padding: 0 0 0 33px;
    font-size: 15px
}

.vc_wp_search .widget.widget_search button {
    width: 66px;
    padding: 0 39px 0 9px
}

.wblm-mobile-header .widget, .wblm-page-header .widget, .wblm-sticky-header .widget, .wblm-top-bar .widget {
    margin: 0
}

.wblm-mobile-header .widget.widget_archive, .wblm-mobile-header .widget.widget_calendar, .wblm-mobile-header .widget.widget_categories, .wblm-mobile-header .widget.widget_meta, .wblm-mobile-header .widget.widget_nav_menu, .wblm-mobile-header .widget.widget_pages, .wblm-mobile-header .widget.widget_recent_comments, .wblm-mobile-header .widget.widget_recent_entries, .wblm-mobile-header .widget.widget_rss, .wblm-mobile-header .widget.widget_search, .wblm-mobile-header .widget.widget_tag_cloud, .wblm-page-header .widget.widget_archive, .wblm-page-header .widget.widget_calendar, .wblm-page-header .widget.widget_categories, .wblm-page-header .widget.widget_meta, .wblm-page-header .widget.widget_nav_menu, .wblm-page-header .widget.widget_pages, .wblm-page-header .widget.widget_recent_comments, .wblm-page-header .widget.widget_recent_entries, .wblm-page-header .widget.widget_rss, .wblm-page-header .widget.widget_search, .wblm-page-header .widget.widget_tag_cloud, .wblm-sticky-header .widget.widget_archive, .wblm-sticky-header .widget.widget_calendar, .wblm-sticky-header .widget.widget_categories, .wblm-sticky-header .widget.widget_meta, .wblm-sticky-header .widget.widget_nav_menu, .wblm-sticky-header .widget.widget_pages, .wblm-sticky-header .widget.widget_recent_comments, .wblm-sticky-header .widget.widget_recent_entries, .wblm-sticky-header .widget.widget_rss, .wblm-sticky-header .widget.widget_search, .wblm-sticky-header .widget.widget_tag_cloud, .wblm-top-bar .widget.widget_archive, .wblm-top-bar .widget.widget_calendar, .wblm-top-bar .widget.widget_categories, .wblm-top-bar .widget.widget_meta, .wblm-top-bar .widget.widget_nav_menu, .wblm-top-bar .widget.widget_pages, .wblm-top-bar .widget.widget_recent_comments, .wblm-top-bar .widget.widget_recent_entries, .wblm-top-bar .widget.widget_rss, .wblm-top-bar .widget.widget_search, .wblm-top-bar .widget.widget_tag_cloud {
    display: none !important
}

.wblm-mobile-header .widget#monster-widget-placeholder-0, .wblm-mobile-header .widget#monster-widget-placeholder-1, .wblm-mobile-header .widget#monster-widget-placeholder-10, .wblm-mobile-header .widget#monster-widget-placeholder-11, .wblm-mobile-header .widget#monster-widget-placeholder-12, .wblm-mobile-header .widget#monster-widget-placeholder-13, .wblm-mobile-header .widget#monster-widget-placeholder-14, .wblm-mobile-header .widget#monster-widget-placeholder-15, .wblm-mobile-header .widget#monster-widget-placeholder-16, .wblm-mobile-header .widget#monster-widget-placeholder-17, .wblm-mobile-header .widget#monster-widget-placeholder-18, .wblm-mobile-header .widget#monster-widget-placeholder-19, .wblm-mobile-header .widget#monster-widget-placeholder-2, .wblm-mobile-header .widget#monster-widget-placeholder-20, .wblm-mobile-header .widget#monster-widget-placeholder-21, .wblm-mobile-header .widget#monster-widget-placeholder-22, .wblm-mobile-header .widget#monster-widget-placeholder-23, .wblm-mobile-header .widget#monster-widget-placeholder-24, .wblm-mobile-header .widget#monster-widget-placeholder-25, .wblm-mobile-header .widget#monster-widget-placeholder-26, .wblm-mobile-header .widget#monster-widget-placeholder-27, .wblm-mobile-header .widget#monster-widget-placeholder-28, .wblm-mobile-header .widget#monster-widget-placeholder-29, .wblm-mobile-header .widget#monster-widget-placeholder-3, .wblm-mobile-header .widget#monster-widget-placeholder-30, .wblm-mobile-header .widget#monster-widget-placeholder-31, .wblm-mobile-header .widget#monster-widget-placeholder-32, .wblm-mobile-header .widget#monster-widget-placeholder-33, .wblm-mobile-header .widget#monster-widget-placeholder-34, .wblm-mobile-header .widget#monster-widget-placeholder-35, .wblm-mobile-header .widget#monster-widget-placeholder-36, .wblm-mobile-header .widget#monster-widget-placeholder-37, .wblm-mobile-header .widget#monster-widget-placeholder-38, .wblm-mobile-header .widget#monster-widget-placeholder-39, .wblm-mobile-header .widget#monster-widget-placeholder-4, .wblm-mobile-header .widget#monster-widget-placeholder-40, .wblm-mobile-header .widget#monster-widget-placeholder-41, .wblm-mobile-header .widget#monster-widget-placeholder-42, .wblm-mobile-header .widget#monster-widget-placeholder-43, .wblm-mobile-header .widget#monster-widget-placeholder-44, .wblm-mobile-header .widget#monster-widget-placeholder-45, .wblm-mobile-header .widget#monster-widget-placeholder-46, .wblm-mobile-header .widget#monster-widget-placeholder-47, .wblm-mobile-header .widget#monster-widget-placeholder-48, .wblm-mobile-header .widget#monster-widget-placeholder-49, .wblm-mobile-header .widget#monster-widget-placeholder-5, .wblm-mobile-header .widget#monster-widget-placeholder-6, .wblm-mobile-header .widget#monster-widget-placeholder-7, .wblm-mobile-header .widget#monster-widget-placeholder-8, .wblm-mobile-header .widget#monster-widget-placeholder-9, .wblm-page-header .widget#monster-widget-placeholder-0, .wblm-page-header .widget#monster-widget-placeholder-1, .wblm-page-header .widget#monster-widget-placeholder-10, .wblm-page-header .widget#monster-widget-placeholder-11, .wblm-page-header .widget#monster-widget-placeholder-12, .wblm-page-header .widget#monster-widget-placeholder-13, .wblm-page-header .widget#monster-widget-placeholder-14, .wblm-page-header .widget#monster-widget-placeholder-15, .wblm-page-header .widget#monster-widget-placeholder-16, .wblm-page-header .widget#monster-widget-placeholder-17, .wblm-page-header .widget#monster-widget-placeholder-18, .wblm-page-header .widget#monster-widget-placeholder-19, .wblm-page-header .widget#monster-widget-placeholder-2, .wblm-page-header .widget#monster-widget-placeholder-20, .wblm-page-header .widget#monster-widget-placeholder-21, .wblm-page-header .widget#monster-widget-placeholder-22, .wblm-page-header .widget#monster-widget-placeholder-23, .wblm-page-header .widget#monster-widget-placeholder-24, .wblm-page-header .widget#monster-widget-placeholder-25, .wblm-page-header .widget#monster-widget-placeholder-26, .wblm-page-header .widget#monster-widget-placeholder-27, .wblm-page-header .widget#monster-widget-placeholder-28, .wblm-page-header .widget#monster-widget-placeholder-29, .wblm-page-header .widget#monster-widget-placeholder-3, .wblm-page-header .widget#monster-widget-placeholder-30, .wblm-page-header .widget#monster-widget-placeholder-31, .wblm-page-header .widget#monster-widget-placeholder-32, .wblm-page-header .widget#monster-widget-placeholder-33, .wblm-page-header .widget#monster-widget-placeholder-34, .wblm-page-header .widget#monster-widget-placeholder-35, .wblm-page-header .widget#monster-widget-placeholder-36, .wblm-page-header .widget#monster-widget-placeholder-37, .wblm-page-header .widget#monster-widget-placeholder-38, .wblm-page-header .widget#monster-widget-placeholder-39, .wblm-page-header .widget#monster-widget-placeholder-4, .wblm-page-header .widget#monster-widget-placeholder-40, .wblm-page-header .widget#monster-widget-placeholder-41, .wblm-page-header .widget#monster-widget-placeholder-42, .wblm-page-header .widget#monster-widget-placeholder-43, .wblm-page-header .widget#monster-widget-placeholder-44, .wblm-page-header .widget#monster-widget-placeholder-45, .wblm-page-header .widget#monster-widget-placeholder-46, .wblm-page-header .widget#monster-widget-placeholder-47, .wblm-page-header .widget#monster-widget-placeholder-48, .wblm-page-header .widget#monster-widget-placeholder-49, .wblm-page-header .widget#monster-widget-placeholder-5, .wblm-page-header .widget#monster-widget-placeholder-6, .wblm-page-header .widget#monster-widget-placeholder-7, .wblm-page-header .widget#monster-widget-placeholder-8, .wblm-page-header .widget#monster-widget-placeholder-9, .wblm-sticky-header .widget#monster-widget-placeholder-0, .wblm-sticky-header .widget#monster-widget-placeholder-1, .wblm-sticky-header .widget#monster-widget-placeholder-10, .wblm-sticky-header .widget#monster-widget-placeholder-11, .wblm-sticky-header .widget#monster-widget-placeholder-12, .wblm-sticky-header .widget#monster-widget-placeholder-13, .wblm-sticky-header .widget#monster-widget-placeholder-14, .wblm-sticky-header .widget#monster-widget-placeholder-15, .wblm-sticky-header .widget#monster-widget-placeholder-16, .wblm-sticky-header .widget#monster-widget-placeholder-17, .wblm-sticky-header .widget#monster-widget-placeholder-18, .wblm-sticky-header .widget#monster-widget-placeholder-19, .wblm-sticky-header .widget#monster-widget-placeholder-2, .wblm-sticky-header .widget#monster-widget-placeholder-20, .wblm-sticky-header .widget#monster-widget-placeholder-21, .wblm-sticky-header .widget#monster-widget-placeholder-22, .wblm-sticky-header .widget#monster-widget-placeholder-23, .wblm-sticky-header .widget#monster-widget-placeholder-24, .wblm-sticky-header .widget#monster-widget-placeholder-25, .wblm-sticky-header .widget#monster-widget-placeholder-26, .wblm-sticky-header .widget#monster-widget-placeholder-27, .wblm-sticky-header .widget#monster-widget-placeholder-28, .wblm-sticky-header .widget#monster-widget-placeholder-29, .wblm-sticky-header .widget#monster-widget-placeholder-3, .wblm-sticky-header .widget#monster-widget-placeholder-30, .wblm-sticky-header .widget#monster-widget-placeholder-31, .wblm-sticky-header .widget#monster-widget-placeholder-32, .wblm-sticky-header .widget#monster-widget-placeholder-33, .wblm-sticky-header .widget#monster-widget-placeholder-34, .wblm-sticky-header .widget#monster-widget-placeholder-35, .wblm-sticky-header .widget#monster-widget-placeholder-36, .wblm-sticky-header .widget#monster-widget-placeholder-37, .wblm-sticky-header .widget#monster-widget-placeholder-38, .wblm-sticky-header .widget#monster-widget-placeholder-39, .wblm-sticky-header .widget#monster-widget-placeholder-4, .wblm-sticky-header .widget#monster-widget-placeholder-40, .wblm-sticky-header .widget#monster-widget-placeholder-41, .wblm-sticky-header .widget#monster-widget-placeholder-42, .wblm-sticky-header .widget#monster-widget-placeholder-43, .wblm-sticky-header .widget#monster-widget-placeholder-44, .wblm-sticky-header .widget#monster-widget-placeholder-45, .wblm-sticky-header .widget#monster-widget-placeholder-46, .wblm-sticky-header .widget#monster-widget-placeholder-47, .wblm-sticky-header .widget#monster-widget-placeholder-48, .wblm-sticky-header .widget#monster-widget-placeholder-49, .wblm-sticky-header .widget#monster-widget-placeholder-5, .wblm-sticky-header .widget#monster-widget-placeholder-6, .wblm-sticky-header .widget#monster-widget-placeholder-7, .wblm-sticky-header .widget#monster-widget-placeholder-8, .wblm-sticky-header .widget#monster-widget-placeholder-9, .wblm-top-bar .widget#monster-widget-placeholder-0, .wblm-top-bar .widget#monster-widget-placeholder-1, .wblm-top-bar .widget#monster-widget-placeholder-10, .wblm-top-bar .widget#monster-widget-placeholder-11, .wblm-top-bar .widget#monster-widget-placeholder-12, .wblm-top-bar .widget#monster-widget-placeholder-13, .wblm-top-bar .widget#monster-widget-placeholder-14, .wblm-top-bar .widget#monster-widget-placeholder-15, .wblm-top-bar .widget#monster-widget-placeholder-16, .wblm-top-bar .widget#monster-widget-placeholder-17, .wblm-top-bar .widget#monster-widget-placeholder-18, .wblm-top-bar .widget#monster-widget-placeholder-19, .wblm-top-bar .widget#monster-widget-placeholder-2, .wblm-top-bar .widget#monster-widget-placeholder-20, .wblm-top-bar .widget#monster-widget-placeholder-21, .wblm-top-bar .widget#monster-widget-placeholder-22, .wblm-top-bar .widget#monster-widget-placeholder-23, .wblm-top-bar .widget#monster-widget-placeholder-24, .wblm-top-bar .widget#monster-widget-placeholder-25, .wblm-top-bar .widget#monster-widget-placeholder-26, .wblm-top-bar .widget#monster-widget-placeholder-27, .wblm-top-bar .widget#monster-widget-placeholder-28, .wblm-top-bar .widget#monster-widget-placeholder-29, .wblm-top-bar .widget#monster-widget-placeholder-3, .wblm-top-bar .widget#monster-widget-placeholder-30, .wblm-top-bar .widget#monster-widget-placeholder-31, .wblm-top-bar .widget#monster-widget-placeholder-32, .wblm-top-bar .widget#monster-widget-placeholder-33, .wblm-top-bar .widget#monster-widget-placeholder-34, .wblm-top-bar .widget#monster-widget-placeholder-35, .wblm-top-bar .widget#monster-widget-placeholder-36, .wblm-top-bar .widget#monster-widget-placeholder-37, .wblm-top-bar .widget#monster-widget-placeholder-38, .wblm-top-bar .widget#monster-widget-placeholder-39, .wblm-top-bar .widget#monster-widget-placeholder-4, .wblm-top-bar .widget#monster-widget-placeholder-40, .wblm-top-bar .widget#monster-widget-placeholder-41, .wblm-top-bar .widget#monster-widget-placeholder-42, .wblm-top-bar .widget#monster-widget-placeholder-43, .wblm-top-bar .widget#monster-widget-placeholder-44, .wblm-top-bar .widget#monster-widget-placeholder-45, .wblm-top-bar .widget#monster-widget-placeholder-46, .wblm-top-bar .widget#monster-widget-placeholder-47, .wblm-top-bar .widget#monster-widget-placeholder-48, .wblm-top-bar .widget#monster-widget-placeholder-49, .wblm-top-bar .widget#monster-widget-placeholder-5, .wblm-top-bar .widget#monster-widget-placeholder-6, .wblm-top-bar .widget#monster-widget-placeholder-7, .wblm-top-bar .widget#monster-widget-placeholder-8, .wblm-top-bar .widget#monster-widget-placeholder-9 {
    display: none
}

.wblm-side-menu .widget {
    color: #000
}

.wblm-side-menu .widget:last-child {
    margin: 0 !important
}

.wblm-side-menu .widget h1, .wblm-side-menu .widget h2, .wblm-side-menu .widget h3, .wblm-side-menu .widget h4, .wblm-side-menu .widget h5, .wblm-side-menu .widget h6 {
    margin: 0;
    color: #fff
}

.wblm-side-menu .widget #wp-calendar caption, .wblm-side-menu .widget a, .wblm-side-menu .widget a:hover {
    color: #000
}

.wblm-side-menu .widget .wblm-widget-title {
    color: #000;
    margin: 0 0 27px
}

.wblm-side-menu .widget table tbody th {
    border-right-color: #000
}

.wblm-side-menu .widget.widget_rss .wblm-footer-widget-title .rsswidget {
    color: #fff
}

.wblm-side-menu .widget.widget_rss .wblm-footer-widget-title .rsswidget:hover, .wblm-side-menu .widget.widget_search input {
    color: #000
}

.wblm-side-menu .widget.widget_search input::-webkit-input-placeholder {
    color: inherit
}

.wblm-side-menu .widget.widget_search input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-side-menu .widget.widget_search input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-side-menu .widget.widget_search input:-ms-input-placeholder {
    color: inherit
}

.wblm-side-menu .widget.widget_search button:hover, .wblm-side-menu .widget.widget_search input[type=submit], .wblm-side-menu .widget.widget_tag_cloud a {
    color: #000
}

.wblm-side-menu .widget.widget_archive select, .wblm-side-menu .widget.widget_categories select, .wblm-side-menu .widget.widget_text select {
    color: #000;
    border-color: #000
}

.wblm-page-footer .widget .select2-container--default, .wblm-page-footer .widget table tbody tr, .wblm-page-footer .widget table thead tr, .wblm-page-footer .widget.widget_search form > div {
    border-color: #fff
}

.wblm-side-menu .widget.widget_tag_cloud a:after {
    color: inherit
}

.wblm-side-menu .widget.widget_tag_cloud a:hover {
    color: #000
}

.wblm-page-footer .widget {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 20px
}

.wblm-page-footer .widget:last-child {
    margin: 0 !important
}

.wblm-page-footer .widget h1, .wblm-page-footer .widget h2, .wblm-page-footer .widget h3, .wblm-page-footer .widget h4, .wblm-page-footer .widget h5, .wblm-page-footer .widget h6 {
    margin: 0;
    color: #fff
}

.wblm-page-footer .widget .wblm-widget-title {
    color: #fff;
    margin: 0 0 27px
}

.wblm-page-footer .widget a {
    color: #565656 ;
    font-size: 14px;
}

.wblm-page-footer .widget a:hover {
    color: #b1b2b2 !important
}

.wblm-page-footer .widget table tbody th {
    border-right-color: #fff
}

.wblm-page-footer .widget .select2-container--default.select2-container--open .select2-selection--single {
    color: #fff
}

.wblm-page-footer .widget del {
    color: rgba(255, 255, 255, .3) !important
}

.wblm-page-footer .widget .star-rating, .wblm-page-footer .widget.widget.widget_search input, .wblm-page-footer .widget.widget_search button, .wblm-page-footer .widget.wblw.widget_product_search .wblw-product-search button, .wblm-page-footer .widget.wblw.widget_product_search .wblw-product-search input {
    color: #fff
}

.wblm-page-footer .widget.widget.widget_search input:hover, .wblm-page-footer .widget.widget_search button:hover, .wblm-page-footer .widget.wblw.widget_product_search .wblw-product-search button:hover, .wblm-page-footer .widget.wblw.widget_product_search .wblw-product-search input:hover {
    color: #b1b2b2
}

.wblm-page-footer .widget #wp-calendar caption, .wblm-page-footer .widget.widget_rss .wblm-footer-widget-title .rsswidget {
    color: #fff
}

.wblm-page-footer .widget.widget_text {
    margin: 0 0 22px
}

.wblm-page-footer .widget.widget_rss .wblm-footer-widget-title .rsswidget:hover {
    color: #b1b2b2
}

.wblm-page-footer .widget.widget_search input {
    color: #fff
}

.wblm-page-footer .widget.widget_search input::-webkit-input-placeholder {
    color: inherit
}

.wblm-page-footer .widget.widget_search input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-page-footer .widget.widget_search input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-page-footer .widget.widget_search input:-ms-input-placeholder {
    color: inherit
}

.wblm-page-footer .widget.widget_search input[type=submit] {
    color: #fff
}

.wblm-page-footer .widget.widget_search button:hover {
    color: #b1b2b2
}

.wblm-page-footer .widget.widget_archive select, .wblm-page-footer .widget.widget_categories select, .wblm-page-footer .widget.widget_text select {
    color: #fff;
    border-color: #fff
}

.wblm-page-footer.wblm-footer-dark-text .widget .select2-container--default, .wblm-page-footer.wblm-footer-dark-text .widget table tbody tr, .wblm-page-footer.wblm-footer-dark-text .widget table thead tr {
    border-color: #000
}

.wblm-page-footer .widget.widget_tag_cloud a {
    color: #fff
}

.wblm-page-footer .widget.widget_tag_cloud a:after {
    color: inherit
}

.wblm-page-footer .widget.widget_tag_cloud a:hover {
    color: #b1b2b2
}

.wblm-page-footer .widget.widget_archive ul li, .wblm-page-footer .widget.widget_categories ul li, .wblm-page-footer .widget.widget_meta ul li, .wblm-page-footer .widget.widget_nav_menu ul li, .wblm-page-footer .widget.widget_pages ul li, .wblm-page-footer .widget.widget_recent_comments ul li {
    padding: 0 0 13px
}

.wblm-page-footer .widget.wblm-contact-form-7-widget {
    margin-top: -7px
}

.wblm-page-footer .widget .wblm-single-line-form p > .input-single-line-button-wrapper, .wblm-page-footer .widget .wblm-single-line-form p > .wpcf7-form-control-wrap > input {
    height: 37px
}

.wblm-page-footer.wblm-footer-dark-text .widget {
    color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget:last-child {
    margin: 0 !important
}

.wblm-page-footer.wblm-footer-dark-text .widget h1, .wblm-page-footer.wblm-footer-dark-text .widget h2, .wblm-page-footer.wblm-footer-dark-text .widget h3, .wblm-page-footer.wblm-footer-dark-text .widget h4, .wblm-page-footer.wblm-footer-dark-text .widget h5, .wblm-page-footer.wblm-footer-dark-text .widget h6 {
    margin: 0;
    color: #fff
}

.wblm-page-footer.wblm-footer-dark-text .widget .wblm-widget-title {
    color: #000;
    margin: 0 0 27px
}

.wblm-page-footer.wblm-footer-dark-text .widget a, .wblm-page-footer.wblm-footer-dark-text .widget a:hover {
    color: #000 !important
}

.wblm-page-footer.wblm-footer-dark-text .widget table tbody th {
    border-right-color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget .select2-container--default.select2-container--open .select2-selection--single {
    color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget del {
    color: rgba(0, 0, 0, .3) !important
}

.wblm-page-footer.wblm-footer-dark-text .widget #wp-calendar caption, .wblm-page-footer.wblm-footer-dark-text .widget .star-rating, .wblm-page-footer.wblm-footer-dark-text .widget.widget.widget_search input, .wblm-page-footer.wblm-footer-dark-text .widget.widget.widget_search input:hover, .wblm-page-footer.wblm-footer-dark-text .widget.widget_rss .wblm-footer-widget-title .rsswidget, .wblm-page-footer.wblm-footer-dark-text .widget.widget_rss .wblm-footer-widget-title .rsswidget:hover, .wblm-page-footer.wblm-footer-dark-text .widget.widget_search button, .wblm-page-footer.wblm-footer-dark-text .widget.widget_search button:hover, .wblm-page-footer.wblm-footer-dark-text .widget.widget_search input, .wblm-page-footer.wblm-footer-dark-text .widget.wblw.widget_product_search .wblw-product-search button, .wblm-page-footer.wblm-footer-dark-text .widget.wblw.widget_product_search .wblw-product-search button:hover, .wblm-page-footer.wblm-footer-dark-text .widget.wblw.widget_product_search .wblw-product-search input, .wblm-page-footer.wblm-footer-dark-text .widget.wblw.widget_product_search .wblw-product-search input:hover {
    color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget.wblw.widget_product_search .wblw-product-search > div {
    border-bottom: 1px solid #000
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search form > div {
    border-color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search input::-webkit-input-placeholder {
    color: inherit
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search input:-ms-input-placeholder {
    color: inherit
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_search button:hover, .wblm-page-footer.wblm-footer-dark-text .widget.widget_search input[type=submit], .wblm-page-footer.wblm-footer-dark-text .widget.widget_tag_cloud a {
    color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_archive select, .wblm-page-footer.wblm-footer-dark-text .widget.widget_categories select, .wblm-page-footer.wblm-footer-dark-text .widget.widget_text select {
    color: #000;
    border-color: #000
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_tag_cloud a:after {
    color: inherit
}

.wblm-page-footer.wblm-footer-dark-text .widget.widget_tag_cloud a:hover {
    color: #000
}

.wblm-top-bar a {
    color: #969696
}

#ui-datepicker-div .ui-widget-header > *, .wblm-top-bar a:hover {
    color: #fff
}

.wblm-top-bar .widget {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-top-bar .widget p {
    margin: 0
}

.wblm-top-bar .widget.widget_text {
    margin: 0 8px 0 0
}

.wblm-top-bar .widget.widget_nav_menu ul li {
    float: left;
    padding: 0 8px;
    margin: 0;
    line-height: 14px;
    border-left: 1px solid #fff
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.wblm-owl-custom-slider .animated, .wblm-owl-slider .animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

@-webkit-keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    50%, from, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    50%, from, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
}

@keyframes pulse {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
}

@keyframes rubberBand {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
}

@keyframes tada {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    from, to {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
}

@keyframes wobble {
    from, to {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    11.1%, from, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

@keyframes jello {
    11.1%, from, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

.flipInY, .flipOutX {
    -webkit-backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

#ui-datepicker-div {
    width: 260px;
    z-index: 1000 !important
}

#ui-datepicker-div .ui-widget-header {
    background-color: #000;
    border-color: #000;
    padding: 10px 25px;
    position: relative
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next, #ui-datepicker-div .ui-widget-header .ui-datepicker-prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next:before, #ui-datepicker-div .ui-widget-header .ui-datepicker-prev:before {
    display: block;
    font-family: linea-arrows-10;
    font-size: 20px;
    vertical-align: middle
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next .ui-icon, #ui-datepicker-div .ui-widget-header .ui-datepicker-prev .ui-icon {
    display: none
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-prev {
    left: 20px
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-prev:before {
    content: "\e03f"
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next {
    right: 20px
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next:before {
    content: "\e04b"
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-title {
    display: inline-block;
    width: 100%;
    text-align: center
}

#ui-datepicker-div .ui-datepicker-calendar {
    background-color: #fff
}

.wblm-owl-slider {
    position: relative;
    display: none;
    width: 100%;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    z-index: 1
}

.wblm-owl-slider.owl-loaded {
    display: block
}

.wblm-owl-slider.owl-loading {
    opacity: 0;
    display: block
}

.wblm-owl-slider.owl-hidden {
    opacity: 0
}

.wblm-owl-slider.owl-refresh .owl-item {
    visibility: hidden
}

.wblm-owl-slider.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-slider.owl-grab {
    cursor: move;
    cursor: grab
}

.wblm-owl-slider.owl-rtl .owl-item {
    float: right
}

.no-js .wblm-owl-slider {
    display: block
}

.wblm-owl-slider .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.wblm-owl-slider .owl-stage:after {
    content: ".";
    display: block;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.wblm-owl-slider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.wblm-owl-slider .owl-item, .wblm-owl-slider .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.wblm-owl-slider .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden
}

.wblm-owl-slider .owl-item img {
    display: block;
    width: 100%
}

.wblm-owl-slider .owl-dots.disabled, .wblm-owl-slider .owl-nav.disabled, .ps__rail-x, .ps__rail-y {
    display: none
}

.wblm-owl-slider .owl-item img .owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.wblm-owl-slider .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.wblm-owl-slider .owl-nav .owl-next, .wblm-owl-slider .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-slider .owl-dots .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-slider .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.wblm-owl-slider .owl-animated-in {
    z-index: 0
}

.wblm-owl-slider .owl-animated-out {
    z-index: 1
}

.wblm-owl-slider .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

.owl-height {
    transition: height .5s ease-in-out
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto
}

.ps__rail-x {
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    bottom: 0;
    position: absolute
}

.ps__rail-y {
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    right: 0;
    position: absolute
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
    display: block;
    background-color: transparent
}

.ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y, .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y {
    opacity: 0
}

.ps .ps__rail-x.ps--clicking, .ps .ps__rail-x:focus, .ps .ps__rail-x:hover, .ps .ps__rail-y.ps--clicking, .ps .ps__rail-y:focus, .ps .ps__rail-y:hover {
    background-color: #eee;
    opacity: 0
}

.ps__thumb-x, .ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    position: absolute
}

.ps__thumb-x {
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    bottom: 2px
}

.ps__thumb-y {
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    right: 2px
}

.ps__rail-x.ps--clicking .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x:hover > .ps__thumb-x {
    background-color: #999;
    height: 11px
}

.ps__rail-y.ps--clicking .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y:hover > .ps__thumb-y {
    background-color: #999;
    width: 11px
}

@supports (-ms-overflow-style:none) {
    .ps {
        overflow: auto !important
    }
}

@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .ps {
        overflow: auto !important
    }
}

body .pp_pic_holder {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    display: none;
    width: 100px;
    z-index: 10001 !important;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

@media only screen and (max-width: 768px) {
    body .pp_pic_holder {
        width: 90% !important
    }
}

body .pp_pic_holder.pp_pic_have_only_one .pp_details {
    display: none
}

body .pp_pic_holder .pp_bottom, body .pp_pic_holder .pp_top {
    display: none !important
}

body .pp_pic_holder .pp_content {
    position: relative;
    background: 0 0;
    margin: 0 auto;
    height: 40px;
    min-width: 40px;
    width: 100%
}

@media only screen and (max-width: 768px) {
    body .pp_pic_holder .pp_content {
        width: 100% !important
    }
}

* html body .pp_pic_holder .pp_content {
    width: 40px
}

body .pp_pic_holder .pp_content_container {
    position: relative;
    text-align: left;
    width: 100%
}

body .pp_pic_holder .pp_content_container .pp_left, body .pp_pic_holder .pp_content_container .pp_right {
    background: 0 0 !important;
    padding: 0 !important
}

body .pp_pic_holder #pp_full_res {
    line-height: 1 !important
}

body .pp_pic_holder #pp_full_res .pp_inline {
    color: #000;
    text-align: left
}

body .pp_pic_holder #pp_full_res .pp_inline p {
    margin: 0 0 15px
}

body .pp_pic_holder #pp_full_res iframe {
    width: 100% !important
}

body .pp_pic_holder #pp_full_res video {
    width: 100%
}

body .pp_pic_holder #pp_full_res img {
    display: block
}

@media only screen and (max-width: 768px) {
    body .pp_pic_holder #pp_full_res img {
        width: 100% !important;
        height: auto !important
    }
}

body .pp_pic_holder .pp_description, body .pp_pic_holder .pp_gallery, body .pp_pic_holder .ppt {
    display: none !important
}

body .pp_pic_holder .pp_loaderIcon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    background-color: #fff;
    border-radius: 16px;
    -webkit-animation: scaleout 1s infinite ease-in-out;
    animation: scaleout 1s infinite ease-in-out
}

body .pp_pic_holder .pp_fade {
    position: relative;
    top: 50%;
    display: none;
    -webkit-transform: translateY(-50%) translateZ(0);
    -moz-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0)
}

body .pp_pic_holder .pp_details {
    position: relative;
    top: -1px;
    display: table;
    vertical-align: top;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 15px 24px;
    background-color: #fff;
    box-sizing: border-box
}

body .pp_pic_holder .pp_details .pp_nav {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: auto;
    float: none;
    margin: 0 !important
}

body .pp_pic_holder .pp_details .pp_nav .pp_pause, body .pp_pic_holder .pp_details .pp_nav .pp_play {
    display: none
}

body .pp_pic_holder .pp_details .pp_nav .currentTextHolder {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    margin: 0;
    padding: 0;
    float: none;
    color: #000;
    font-family: inherit;
    font-size: inherit;
    line-height: 30px;
    font-style: inherit;
    letter-spacing: 5px
}

body .pp_pic_holder a:focus {
    outline: 0
}

body .pp_pic_holder a.pp_arrow_next, body .pp_pic_holder a.pp_arrow_previous {
    position: relative;
    display: inline-block;
    vertical-align: top;
    left: auto !important;
    float: none;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    color: #000;
    font-family: Ionicons;
    font-size: 0;
    line-height: 1;
    text-indent: 0;
    background: 0 0 !important;
    opacity: 1 !important;
    overflow: visible
}

body .pp_pic_holder a.pp_arrow_next:after, body .pp_pic_holder a.pp_arrow_previous:after {
    font-size: 30px
}

body .pp_pic_holder a.pp_arrow_next:hover, body .pp_pic_holder a.pp_arrow_previous:hover {
    color: #000
}

body .pp_pic_holder a.pp_arrow_previous:after {
    content: "\f3d2"
}

body .pp_pic_holder a.pp_arrow_next {
    margin: 0 0 0 14px !important
}

body .pp_pic_holder a.pp_arrow_next:after {
    content: "\f3d3"
}

body .pp_pic_holder a.pp_next, body .pp_pic_holder a.pp_previous {
    position: absolute;
    top: calc(50% - 20px);
    width: auto;
    height: auto;
    display: inline-block;
    margin: 0 !important;
    background: 0 0 !important;
    color: #000;
    font-family: Ionicons;
    font-size: 40px;
    line-height: 1;
    text-indent: -9999px !important;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out, color .2s ease-out;
    -moz-transition: opacity .2s ease-out, color .2s ease-out;
    transition: opacity .2s ease-out, color .2s ease-out
}

body .pp_pic_holder a.pp_next > *, body .pp_pic_holder a.pp_previous > * {
    display: none
}

body .pp_pic_holder a.pp_next:after, body .pp_pic_holder a.pp_previous:after {
    display: block;
    line-height: inherit;
    text-indent: 0 !important
}

body .pp_pic_holder a.pp_close, body .pp_pic_holder a.pp_expand {
    height: auto;
    width: auto;
    font-family: Ionicons;
    font-size: 0;
    line-height: 1;
    text-indent: 0;
    background: 0 0 !important
}

body .pp_pic_holder a.pp_next:hover, body .pp_pic_holder a.pp_previous:hover {
    color: rgba(0, 0, 0, .8)
}

body .pp_pic_holder a.pp_previous {
    left: 30px
}

body .pp_pic_holder a.pp_previous:after {
    content: "\f3d2"
}

body .pp_pic_holder a.pp_next {
    right: 30px
}

@media only screen and (max-width: 768px) {
    body .pp_pic_holder a.pp_previous {
        left: 20px
    }

    body .pp_pic_holder a.pp_next {
        right: 20px
    }
}

body .pp_pic_holder a.pp_next:after {
    content: "\f3d3"
}

body .pp_pic_holder a.pp_close {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin: 0 !important;
    color: #000;
    cursor: pointer;
    opacity: 1 !important
}

body .pp_pic_holder a.pp_close:hover {
    color: #000
}

body .pp_pic_holder a.pp_expand {
    position: absolute;
    right: -22px;
    top: -18px;
    display: block;
    color: #fff;
    text-align: center;
    z-index: 2001
}

body .pp_pic_holder a.pp_expand:after {
    content: "\f386";
    font-size: 22px
}

body .pp_pic_holder a.pp_expand:hover {
    color: rgba(255, 255, 255, .8)
}

body .pp_hoverContainer {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2000
}

@media only screen and (max-width: 768px) {
    body .pp_hoverContainer {
        width: 100% !important;
        height: 100% !important
    }
}

body .pp_hoverContainer:hover a.pp_next, body .pp_hoverContainer:hover a.pp_previous {
    opacity: 1
}

body .pp_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    background-color: #000;
    z-index: 10000 !important
}

body .select2-container--default.select2-container--disabled .select2-selection--multiple, body .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

body .select2-container--default {
    position: relative;
    display: inline-block;
    height: 30px;
    width: auto;
    margin: 0 0 20px;
    vertical-align: middle;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    text-align: left;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    letter-spacing: .16em;
    font-weight: 400;
    z-index: 9999
}

body .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear, body .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding: 0 20px 0 30px
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 20px;
    right: auto
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    float: right
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__rendered {
    padding: 0 20px 0 30px
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin: 7px auto 0 5px
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin: 0 auto 0 3px
}

body .select2-container--default.select2-container--open .select2-selection--single {
    color: #000
}

body .select2-container--default.select2-container--open .select2-dropdown {
    left: 0
}

body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above {
    border-bottom-color: transparent
}

body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below {
    border-top-color: transparent
}

body .select2-container--default .select2-selection--single {
    display: block;
    height: 30px;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: 30px;
    color: inherit;
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0 10px 0 0;
    color: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box
}

body .select2-container--default .select2-selection--single .select2-selection__clear {
    position: relative;
    float: right;
    margin: 0;
    font-weight: inherit;
    cursor: pointer
}

body .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: inherit
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 28px;
    color: inherit;
    line-height: 24px;
    text-align: center;
    font-size: 22px
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none
}

body .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\33';
    font-family: ElegantIcons;
    font-style: normal
}

body .select2-container--default .select2-selection--multiple {
    display: block;
    height: 44px;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: 42px;
    color: inherit;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: block;
    margin: 0;
    padding: 0 30px 0 20px;
    list-style: none;
    color: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
    float: left;
    margin: 0;
    color: inherit
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
    position: relative;
    float: right;
    margin: 0;
    font-weight: inherit;
    cursor: pointer
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    float: left;
    margin: 7px 5px 0 0;
    padding: 0 10px;
    line-height: 30px;
    color: #fff;
    background-color: #000;
    border: 0;
    border-radius: 0;
    cursor: default
}

.touch .wblm-blog-slider-holder.wblm-bs-slider .wblm-blog-slider-item, .touch .wblm-related-posts-holder .wblm-related-post, body .select2-container--default .select2-results__option[aria-selected] {
    cursor: pointer
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
    display: inline-block;
    margin: 0 3px 0 0;
    font-weight: 700;
    color: inherit;
    cursor: pointer;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
    color: inherit;
    opacity: .8
}

body .select2-container--default .select2-search--inline {
    float: left
}

body .select2-container--default .select2-search--inline .select2-search__field {
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: 0 0;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
    box-sizing: border-box
}

body .select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

body .select2-container--default .select2-dropdown {
    position: absolute;
    top: 0;
    left: -100000px;
    width: 100%;
    display: block;
    background-color: #f6f6f6;
    border: 0;
    border-radius: 0;
    z-index: 1051;
    box-sizing: border-box
}

body .select2-container--default .select2-search--dropdown {
    display: block;
    padding: 14px 15px 2px
}

body .select2-container--default .select2-search--dropdown.select2-search--hide {
    display: none
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
    margin: 0;
    padding: 4px 8px;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 20px;
    color: inherit;
    border: 1px solid #ccc;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box
}

body .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #000
}

body .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

body .select2-container--default .select2-results {
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: capitalize
}

body .select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.wblm-page-header .wblm-logo-area .wblm-logo-wrapper a, .wblm-page-header .wblm-menu-area .wblm-logo-wrapper a {
    max-height: 90px
}

body .select2-container--default .select2-results__options {
    position: relative;
    list-style: none;
    margin: 5px 0;
    padding: 2px 24px
}

body .select2-container--default .select2-results__option {
    padding: 7px 0;
    user-select: none;
    -webkit-user-select: none;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

body .select2-container--default .select2-results__option[role=group] {
    padding: 0
}

body .select2-container--default .select2-results__option[aria-disabled=true] {
    color: #000
}

body .select2-container--default .select2-results__option[aria-selected=true], body .select2-container--default .select2-results__option[data-selected=true] {
    color: #000;
    background: 0 0
}

body .select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #000;
    background: 0 0
}

body .select2-container--default .select2-results__group {
    display: block;
    padding: 7px 0;
    cursor: default
}

.select2-close-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 99
}

.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important
}

body.archive.post-type-archive.post-type-archive-product.wblw.wblw-page .select2-container--default .select2-results {
    text-align: right
}

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

.widget_icl_lang_sel_widget img {
    position: relative;
    display: inline-block !important;
    vertical-align: middle;
    top: -1px;
    padding-right: 6px
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    text-align: left;
    box-sizing: border-box
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-legacy-dropdown, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-legacy-dropdown {
    padding: 0;
    margin: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    position: relative;
    display: block;
    padding: 9px 20px;
    color: #000;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #000
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
    content: '\33';
    position: absolute;
    top: calc(50% - 8px);
    right: 20px;
    display: block;
    font-family: ElegantIcons;
    font-size: 15px;
    line-height: 1
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 14px 20px;
    margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    -webkit-transition: visibility 0s linear .25s, opacity .25s ease-in-out;
    -moz-transition: visibility 0s linear .25s, opacity .25s ease-in-out;
    transition: visibility 0s linear .25s, opacity .25s ease-in-out
}

.wblm-blog-pagination ul li > a:before, .wblm-blog-pagination ul li > a:hover:before, .wblm-blog-pagination ul li > span:before, .wblm-blog-pagination ul li > span:hover:before {
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    right: 0;
    background-color: currentColor;
    content: '';
    width: calc(100% + 12px);
    position: absolute
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a, .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    display: block;
    padding: 7px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 5px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a, .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    display: block
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    display: block;
    margin: 0;
    padding: 5px 0
}

.wblm-page-footer .widget_icl_lang_sel_widget, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click, .wblm-side-menu .widget_icl_lang_sel_widget, .wblm-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .wblm-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click, .wblm-vertical-menu-area .widget_icl_lang_sel_widget, .wblm-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .wblm-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click, .wpb_widgetised_column .widget_icl_lang_sel_widget, .wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click, aside.wblm-sidebar .widget_icl_lang_sel_widget, aside.wblm-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, aside.wblm-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 100%
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown, .wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 140px
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle, .wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 0;
    line-height: 46px;
    color: #fff;
    background-color: transparent;
    border: 0
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after, .wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
    right: 0
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-bottom: 0
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px
}

.wblm-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
    margin-right: 0
}

.wblm-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li, .wblm-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li, .wblm-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px
}

.wblm-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child, .wblm-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child, .wblm-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
    margin-right: 0
}

.wblm-main-menu > ul > li.menu-item-language.has_sub > a > span.item_outer .item_text:after {
    content: '\33';
    position: absolute;
    right: -15px;
    top: 0;
    font-family: ElegantIcons;
    font-size: 15px
}

.wblm-main-menu > ul > li.menu-item-language a > span.item_outer .item_text {
    position: relative;
    display: table
}

.wblm-main-menu > ul > li.menu-item-language a > span.item_outer .item_text > * {
    display: table-cell;
    vertical-align: middle
}

.wblm-main-menu > ul > li.menu-item-language a > span.item_outer .item_text img {
    padding: 5px 6px 0 0
}

.wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #fff
}

.wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    background-color: #363636
}

.wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #fff
}

.wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover, .wblm-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-blog-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 40px;
    box-sizing: border-box
}

.wblm-blog-holder article {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-blog-holder article .wblm-post-heading > .wblm-post-info-date {
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 999;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0);
    transform-origin: 0 0;
    background-color: #fff;
    line-height: 40px;
    padding: 0 15px;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 400
}

@media screen and (max-width: 680px) {
    .wblm-blog-holder article .wblm-post-heading > .wblm-post-info-date {
        left: 0;
        -webkit-transform: rotate(0) translateZ(0);
        -moz-transform: rotate(0) translateZ(0);
        transform: rotate(0) translateZ(0)
    }
}

.wblm-blog-holder article.sticky .wblm-post-title a {
    text-decoration: underline;
    color: #000
}

.wblm-blog-holder article .wblm-post-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-blog-holder article .wblm-post-image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%
}

.wblm-blog-holder article .wblm-post-image img {
    display: block
}

.wblm-blog-holder article .wblm-post-image-background {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    background-position: center;
    background-size: cover
}

.wblm-blog-holder article .wblm-post-image-background a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-blog-holder article .wblm-post-image-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    line-height: 1;
    color: #fff
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-tags, .wblm-blog-holder article .wblm-post-info-top > div {
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase
}

.wblm-blog-holder article .wblm-post-text {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-blog-holder article .wblm-post-text-main > .wblm-post-title {
    margin: 0;
    padding: 0 0 13px
}

.wblm-blog-holder article .wblm-post-text-main > p {
    line-height: 26px
}

.wblm-blog-holder article .wblm-post-excerpt {
    margin-bottom: 0
}

.wblm-blog-holder article .wblm-post-excerpt:after {
    content: '...'
}

.wblm-blog-holder article .wblm-more-link-container {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 15px 0 0
}

.wblm-blog-holder article .wblm-post-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-blog-holder article .wblm-post-info > * {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: currentColor
}

.wblm-blog-holder article .wblm-post-info > * a {
    color: inherit
}

.wblm-blog-holder article .wblm-post-info-top > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 0 0;
    color: #000
}

.wblm-blog-holder article .wblm-post-info-top > div:after {
    content: '/';
    position: absolute;
    top: 0;
    right: 0
}

.wblm-blog-holder article .wblm-post-info-top > div:last-child {
    padding: 0
}

.wblm-blog-holder article .wblm-post-info-top > div:last-child:after {
    content: ''
}

.wblm-blog-holder article .wblm-post-info-top > div a {
    color: inherit
}

.wblm-blog-holder article .wblm-post-info-top > div a:hover {
    color: #000
}

.wblm-blog-holder article .wblm-post-info-bottom {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding-top: 42px;
    margin-bottom: -10px;
    line-height: 28px
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-tags {
    color: #000
}

.wblm-blog-holder article.format-link .wblm-post-link-holder a, .wblm-blog-holder article.format-quote .wblm-post-quote-holder a {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    font-family: Montserrat, sans-serif
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-tags a {
    display: inline-block
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-left, .wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-right {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

@media only screen and (min-width: 769px) {
    .wblm-grid-list.wblm-three-columns .wblm-item-space:nth-child(3n+1) {
        clear: both
    }

    .wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-left, .wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-right {
        width: 50%
    }

    .wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-left {
        float: left
    }

    .wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-right {
        text-align: right;
        float: right
    }
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-right > div {
    margin-left: 17px
}

.wblm-blog-holder article.format-link .wblm-post-link-holder h5, .wblm-blog-holder article.format-quote .wblm-post-quote-holder h5 {
    margin: 0
}

.wblm-blog-holder article .wblm-post-info-bottom .wblm-post-info-bottom-right > div:first-child {
    margin-left: 0
}

.wblm-blog-holder article.format-link .wblm-post-text {
    padding: 48px 50px !important;
    background-color: #eff5f8;
    background-image: url(/wp-content/themes/onea/assets/img/link.png);
    background-repeat: no-repeat;
    background-position: 95% -40px
}

.wblm-blog-holder article.format-link .wblm-post-text-main {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    text-align: left
}

.wblm-blog-holder article.format-link .wblm-post-link-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    vertical-align: top;
    text-align: left
}

.wblm-blog-holder article.format-quote .wblm-post-text {
    padding: 48px 50px !important;
    background-color: #faf0ed;
    background-image: url(/wp-content/themes/onea/assets/img/quote.png);
    background-repeat: no-repeat;
    background-position: 95% -15px
}

.wblm-blog-holder article.format-quote .wblm-post-text-main {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    text-align: left
}

.wblm-blog-holder article.format-quote .wblm-post-quote-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    vertical-align: top;
    text-align: left
}

.wblm-blog-holder article.format-quote .wblm-quote-author {
    display: inline-block;
    font-size: 10px !important;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em;
    margin-top: 17px
}

.wblm-blog-holder article.format-gallery .wblm-post-heading {
    margin-bottom: 28px
}

.wblm-blog-holder article.format-gallery .wblm-post-image {
    width: 100%
}

.wblm-blog-holder article.format-gallery .owl-carousel .owl-item {
    z-index: 2
}

.wblm-blog-holder article.format-gallery .owl-carousel .owl-item.active {
    z-index: 3
}

.wblm-blog-holder article.format-audio.has-post-thumbnail .wblm-post-heading {
    position: relative
}

.wblm-blog-holder article.format-audio .wblm-post-image {
    width: 100%;
    max-width: inherit
}

.wblm-blog-holder article.format-audio .wblm-post-image img {
    width: 100%
}

.wblm-blog-holder article.format-video .wblm-self-hosted-video {
    max-width: 100%
}

.wblm-blog-audio-holder .mejs-container, .wblm-blog-audio-holder .mejs-container .mejs-controls, .wblm-blog-audio-holder .mejs-embed, .wblm-blog-audio-holder .mejs-embed body, .wblm-blog-video-holder .mejs-container, .wblm-blog-video-holder .mejs-container .mejs-controls, .wblm-blog-video-holder .mejs-embed, .wblm-blog-video-holder .mejs-embed body {
    background: 0 0
}

.wblm-blog-audio-holder .mejs-container, .wblm-blog-audio-holder .mejs-container .mejs-controls, .wblm-blog-video-holder .mejs-container, .wblm-blog-video-holder .mejs-container .mejs-controls {
    height: 50px !important
}

.wblm-blog-audio-holder .mejs-container .mejs-controls, .wblm-blog-video-holder .mejs-container .mejs-controls {
    background: #1d1d1d;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    padding: 0
}

.wblm-blog-audio-holder .mejs-container .mejs-controls .mejs-button, .wblm-blog-video-holder .mejs-container .mejs-controls .mejs-button {
    height: 50px;
    width: 50px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls button, .wblm-blog-video-holder .mejs-container .mejs-controls button {
    background-color: transparent;
    background-image: none;
    border: 0;
    height: 50px;
    margin: 0;
    outline: 0;
    position: relative;
    top: 0;
    width: 50px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls button:before, .wblm-blog-video-holder .mejs-container .mejs-controls button:before {
    color: #d9d9d9;
    display: block;
    font-family: ElegantIcons;
    font-size: 15px;
    height: 50px;
    left: 0;
    line-height: 50px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-handle, .wblm-blog-pagination-wp, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-handle {
    display: none
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-play button:before, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-replay button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-play button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-replay button:before {
    content: "\45";
    font-size: 25px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-pause button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-pause button:before {
    content: "\60";
    font-size: 25px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-stop button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-stop button:before {
    content: "\5e";
    font-size: 25px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-mute button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-mute button:before {
    content: "\78"
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-unmute button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-unmute button:before {
    content: "\79"
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider {
    background: rgba(29, 29, 29, .7);
    height: 130px;
    width: 36px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-total, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-total {
    background: #fff;
    top: 15px;
    width: 6px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-current, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-volume-button > a.mejs-volume-slider .mejs-volume-current {
    background-color: #b7b7b7
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider, .wblm-blog-video-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider {
    height: 50px;
    margin-right: 20px;
    width: 50px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .wblm-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .wblm-blog-video-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .wblm-blog-video-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    height: 6px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .wblm-blog-video-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    background: #fff;
    top: 22px;
    width: 50px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .wblm-blog-video-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    background-color: #b7b7b7
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time {
    color: #d9d9d9;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    height: 100%;
    line-height: 50px;
    padding: 0 5px;
    width: 50px;
    letter-spacing: .05em
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time > *, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time > * {
    font-family: inherit
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail {
    font-family: inherit;
    height: 6px;
    margin: 0;
    padding: 0;
    top: 22px
}

.wblm-bl-standard-pagination, .wblm-blog-pagination {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    clear: both
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total {
    background: rgba(255, 255, 255, .7);
    height: 6px;
    margin: 0
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total span, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total span {
    height: 6px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-buffering, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-hovered, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-marker, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-buffering, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-hovered, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-marker {
    background: 0 0
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-loaded, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-loaded {
    background: #fff
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-current, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-current {
    background: #b7b7b7
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-hovered, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-hovered {
    background: rgba(183, 183, 183, .7)
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float-corner, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float-current, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float-corner, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float-current {
    background: 0 0;
    border: 0;
    color: #d9d9d9;
    top: -20px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-handle, .wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-handle-content, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-handle, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-handle-content {
    border: none;
    height: 6px;
    left: 0;
    top: 0;
    width: 6px
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-fullscreen-button button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-fullscreen-button button:before {
    content: "\30"
}

.wblm-blog-audio-holder .mejs-container .mejs-controls > .mejs-fullscreen-button.mejs-unfullscreen button:before, .wblm-blog-video-holder .mejs-container .mejs-controls > .mejs-fullscreen-button.mejs-unfullscreen button:before {
    content: "\2f"
}

.wblm-self-hosted-video-holder {
    overflow: hidden
}

.wblm-self-hosted-video-holder video {
    object-fit: cover
}

.wblm-blog-pagination, .wblm-blog-pagination ul, .wblm-blog-pagination ul li {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-blog-pagination {
    width: 100%;
    margin: 40px 0 0;
    font-size: 14px
}

.wblm-blog-pagination ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left
}

.wblm-blog-pagination ul li > a, .wblm-blog-pagination ul li > span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px;
    padding: 0
}

.wblm-blog-pagination ul li > a:before, .wblm-blog-pagination ul li > span:before {
    bottom: 0;
    left: -6px;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-blog-pagination ul li > a:hover:before, .wblm-blog-pagination ul li > span:hover:before {
    bottom: 0;
    left: -6px;
    height: 1px;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-blog-pagination ul li > a.current:after, .wblm-blog-pagination ul li > span.current:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% + 12px);
    left: -6px;
    right: auto;
    bottom: 0;
    background: #000;
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-blog-pagination ul li:first-child > a, .wblm-blog-pagination ul li:first-child > span {
    margin-left: 0
}

.wblm-blog-pagination ul li:last-child > a, .wblm-blog-pagination ul li:last-child > span {
    margin-right: 0
}

.wblm-blog-pagination ul li.wblm-pag-active a {
    color: #000
}

.wblm-blog-pagination ul li.wblm-pag-active a:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-blog-pagination ul li.wblm-pag-first, .wblm-blog-pagination ul li.wblm-pag-last, .wblm-blog-pagination ul li.wblm-pag-next, .wblm-blog-pagination ul li.wblm-pag-prev {
    margin: 0 2px
}

.wblm-blog-pagination ul li.wblm-pag-first a, .wblm-blog-pagination ul li.wblm-pag-last a, .wblm-blog-pagination ul li.wblm-pag-next a, .wblm-blog-pagination ul li.wblm-pag-prev a {
    font-size: 24px
}

.wblm-blog-pagination ul li.wblm-pag-first a span, .wblm-blog-pagination ul li.wblm-pag-first a span:before, .wblm-blog-pagination ul li.wblm-pag-last a span, .wblm-blog-pagination ul li.wblm-pag-last a span:before, .wblm-blog-pagination ul li.wblm-pag-next a span, .wblm-blog-pagination ul li.wblm-pag-next a span:before, .wblm-blog-pagination ul li.wblm-pag-prev a span, .wblm-blog-pagination ul li.wblm-pag-prev a span:before {
    display: block;
    line-height: inherit
}

.wblm-blog-pagination ul li.wblm-pag-first a:after, .wblm-blog-pagination ul li.wblm-pag-first a:before, .wblm-blog-pagination ul li.wblm-pag-last a:after, .wblm-blog-pagination ul li.wblm-pag-last a:before, .wblm-blog-pagination ul li.wblm-pag-next a:after, .wblm-blog-pagination ul li.wblm-pag-next a:before, .wblm-blog-pagination ul li.wblm-pag-prev a:after, .wblm-blog-pagination ul li.wblm-pag-prev a:before {
    content: none;
    display: none
}

.wblm-bl-standard-pagination, .wblm-bl-standard-pagination ul, .wblm-bl-standard-pagination ul li {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-blog-list-holder.wblm-bl-pag-standard-shortcodes .wblm-blog-list {
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-blog-list-holder.wblm-bl-pag-standard-shortcodes.wblm-bl-pag-standard-shortcodes-animate .wblm-blog-list {
    opacity: 0
}

.wblm-bl-standard-pagination {
    width: 100%;
    margin: 40px 0 0;
    font-size: 14px
}

.wblm-bl-standard-pagination ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left
}

.wblm-bl-standard-pagination ul li > a, .wblm-bl-standard-pagination ul li > span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px;
    padding: 0
}

.wblm-bl-standard-pagination ul li > a:before, .wblm-bl-standard-pagination ul li > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-bl-standard-pagination ul li > a:hover:before, .wblm-bl-standard-pagination ul li > span:hover:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-bl-standard-pagination ul li > a.current:after, .wblm-bl-standard-pagination ul li > span.current:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% + 12px);
    left: -6px;
    right: auto;
    bottom: 0;
    background: #000;
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-bl-standard-pagination ul li:first-child > a, .wblm-bl-standard-pagination ul li:first-child > span {
    margin-left: 0
}

.wblm-bl-standard-pagination ul li:last-child > a, .wblm-bl-standard-pagination ul li:last-child > span {
    margin-right: 0
}

.wblm-bl-standard-pagination ul li.wblm-pag-active a {
    color: #000
}

.wblm-bl-standard-pagination ul li.wblm-pag-active a:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-bl-standard-pagination ul li.wblm-pag-first, .wblm-bl-standard-pagination ul li.wblm-pag-last, .wblm-bl-standard-pagination ul li.wblm-pag-next, .wblm-bl-standard-pagination ul li.wblm-pag-prev {
    margin: 0 2px
}

.wblm-bl-standard-pagination ul li.wblm-pag-first a, .wblm-bl-standard-pagination ul li.wblm-pag-last a, .wblm-bl-standard-pagination ul li.wblm-pag-next a, .wblm-bl-standard-pagination ul li.wblm-pag-prev a {
    font-size: 24px
}

.wblm-bl-standard-pagination ul li.wblm-pag-first a span, .wblm-bl-standard-pagination ul li.wblm-pag-first a span:before, .wblm-bl-standard-pagination ul li.wblm-pag-last a span, .wblm-bl-standard-pagination ul li.wblm-pag-last a span:before, .wblm-bl-standard-pagination ul li.wblm-pag-next a span, .wblm-bl-standard-pagination ul li.wblm-pag-next a span:before, .wblm-bl-standard-pagination ul li.wblm-pag-prev a span, .wblm-bl-standard-pagination ul li.wblm-pag-prev a span:before {
    display: block;
    line-height: inherit
}

.wblm-bl-standard-pagination ul li.wblm-pag-first a:after, .wblm-bl-standard-pagination ul li.wblm-pag-first a:before, .wblm-bl-standard-pagination ul li.wblm-pag-last a:after, .wblm-bl-standard-pagination ul li.wblm-pag-last a:before, .wblm-bl-standard-pagination ul li.wblm-pag-next a:after, .wblm-bl-standard-pagination ul li.wblm-pag-next a:before, .wblm-bl-standard-pagination ul li.wblm-pag-prev a:after, .wblm-bl-standard-pagination ul li.wblm-pag-prev a:before {
    content: none;
    display: none
}

.wblm-bl-standard-pagination ul li.wblm-pag-prev a {
    opacity: 0
}

.wblm-bl-standard-pagination ul li.wblm-pag-next a {
    opacity: 1
}

.wblm-blog-pag-load-more {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 40px 0 30px;
    text-align: center
}

.wblm-blog-pag-loading {
    position: relative;
    display: none;
    width: 100%;
    margin: 40px 0 20px;
    color: #000;
    text-align: center
}

.wblm-blog-pag-loading.wblm-standard-pag-trigger {
    position: absolute;
    top: 50px;
    left: 0
}

.wblm-blog-pag-loading.wblm-showing {
    display: block
}

.wblm-author-description, .wblm-blog-pag-loading > div {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.wblm-blog-pag-loading > div {
    width: 14px;
    height: 14px;
    margin: 0 3px;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: bl-pag-bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: bl-pag-bouncedelay 1.4s infinite ease-in-out both;
    animation: bl-pag-bouncedelay 1.4s infinite ease-in-out both
}

.wblm-blog-pag-loading .wblm-blog-pag-bounce1 {
    -webkit-animation-delay: -.32s;
    -moz-animation-delay: -.32s;
    animation-delay: -.32s
}

.wblm-blog-pag-loading .wblm-blog-pag-bounce2 {
    -webkit-animation-delay: -.16s;
    -moz-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes bl-pag-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bl-pag-bouncedelay {
    0%, 100%, 80% {
        -moz-transform: scale(0)
    }
    40% {
        -moz-transform: scale(1)
    }
}

@keyframes bl-pag-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wblm-blog-holder.wblm-blog-masonry article {
    margin: 0 0 20px;
    padding: 0 0 30px
}

.wblm-blog-holder.wblm-blog-masonry article .wblm-post-content {
    padding: 0 0 22px
}

.wblm-blog-holder.wblm-blog-masonry article .wblm-post-text-main > .wblm-post-title {
    font-size: 18px;
    line-height: 24px
}

.wblm-blog-holder.wblm-blog-masonry article.format-quote .wblm-post-text {
    padding: 63px 31px;
    background-position: 110% -15px;
    margin-bottom: 40px
}

.wblm-blog-holder.wblm-blog-masonry article.format-quote .wblm-post-quote-holder a {
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 24px
}

.wblm-blog-holder.wblm-blog-masonry article.format-quote .wblm-quote-author {
    margin-top: 8px
}

.wblm-blog-holder.wblm-blog-masonry article.format-link .wblm-post-text {
    padding: 79px 31px;
    background-position: 110% -15px;
    margin-bottom: 40px
}

.wblm-blog-holder.wblm-blog-masonry article.format-link .wblm-post-link-holder a {
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 24px
}

.wblm-blog-holder.wblm-blog-masonry article.wblm-post-has-media .wblm-post-heading {
    margin-bottom: 30px
}

.wblm-blog-holder.wblm-blog-standard article {
    margin: 0 0 92px;
    padding: 0
}

.wblm-blog-holder.wblm-blog-standard article.wblm-post-has-media .wblm-post-heading {
    margin-bottom: 33px
}

.wblm-author-description {
    width: 100%;
    padding: 61px 0 115px;
    box-sizing: border-box
}

.wblm-author-description .wblm-author-description-content {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-author-description .wblm-author-description-image {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 202px;
    height: 202px
}

.wblm-author-description .wblm-author-description-image img {
    display: block;
    border-radius: 50%;
    width: 100%
}

.wblm-author-description .wblm-author-description-text-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 0 0 0 38px
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-name {
    margin: 0;
    font-size: 24px;
    font-weight: 600
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-name a {
    color: #000;
    font-family: Montserrat, sans-serif
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-name a:hover {
    color: #000
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-email {
    margin: 0
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-text {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-text > p {
    margin: 22px 0 14px
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-social-icons {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-social-icons a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 7px 0 0;
    font-size: 12px;
    color: #000
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-social-icons a:last-child {
    margin: 0
}

.wblm-author-description .wblm-author-description-text-holder .wblm-author-social-icons a:hover {
    color: #000
}

@media only screen and (max-width: 768px) {
    .wblm-author-description .wblm-author-description-content {
        padding: 0
    }

    .wblm-author-description .wblm-author-description-image {
        display: table;
        width: 100%
    }

    .wblm-author-description .wblm-author-description-text-holder {
        display: block;
        padding: 0;
        margin-top: 30px
    }
}

.wblm-blog-single-navigation {
    position: relative;
    display: table;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    clear: both;
    box-sizing: border-box
}

.wblm-blog-single-navigation .wblm-blog-single-navigation-inner {
    padding: 78px 0 30px
}

.wblm-blog-single-navigation .wblm-blog-single-next, .wblm-blog-single-navigation .wblm-blog-single-prev {
    color: #000
}

.wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-mark, .wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-mark {
    font-size: 48px;
    line-height: inherit;
    color: inherit
}

.wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-mark:before, .wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-mark:before {
    display: block;
    line-height: inherit
}

.wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-label, .wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-label {
    color: inherit
}

.wblm-blog-single-navigation .wblm-blog-single-next:hover, .wblm-blog-single-navigation .wblm-blog-single-prev:hover, .wblm-single-links-pages .wblm-single-links-pages-inner > a:hover, .wblm-single-links-pages .wblm-single-links-pages-inner > span {
    color: #000
}

.wblm-blog-single-navigation .wblm-blog-single-prev, .wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-label, .wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-mark {
    float: left
}

.wblm-blog-single-navigation .wblm-blog-single-prev .wblm-blog-single-nav-mark {
    margin: 0 14px 0 0
}

.wblm-blog-single-navigation .wblm-blog-single-next, .wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-label, .wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-mark {
    float: right
}

.wblm-blog-single-navigation .wblm-blog-single-next .wblm-blog-single-nav-mark {
    margin: 0 0 0 14px
}

.wblm-single-links-pages {
    clear: both;
    margin: 20px 0 5px
}

.wblm-single-links-pages .wblm-single-links-pages-inner > a, .wblm-single-links-pages .wblm-single-links-pages-inner > span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 13px
}

.wblm-single-links-pages .wblm-single-links-pages-inner > a:after, .wblm-single-links-pages .wblm-single-links-pages-inner > span:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% + 12px);
    left: -6px;
    right: auto;
    bottom: 2px;
    background: #000;
    opacity: 0;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-single-links-pages .wblm-single-links-pages-inner > a:hover:after, .wblm-single-links-pages .wblm-single-links-pages-inner > span:hover:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-single-links-pages .wblm-single-links-pages-inner > span:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-related-posts-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.wblm-related-posts-holder .wblm-related-posts-holder-inner {
    padding: 0 0 84px
}

.wblm-related-posts-holder .wblm-related-posts-title {
    margin: 50px 0 53px
}

.wblm-related-posts-holder .wblm-related-posts-title > * {
    margin: 0
}

.wblm-related-posts-holder .wblm-related-posts-inner {
    margin: 0 -15px
}

.wblm-related-posts-holder .wblm-related-post {
    position: relative;
    display: inline-block;
    float: left;
    width: 25%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box
}

.wblm-content-has-sidebar .wblm-related-posts-holder .wblm-related-post {
    widtH: 33.33333333333333%
}

.wblm-related-posts-holder .wblm-related-post:hover .wblm-related-post-image a:after {
    opacity: 1
}

.wblm-related-posts-holder .wblm-related-post .wblm-related-post-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    margin: 0 0 30px
}

.wblm-related-posts-holder .wblm-related-post .wblm-related-post-image a {
    position: relative;
    display: block
}

.wblm-related-posts-holder .wblm-related-post .wblm-related-post-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-blog-slider-holder.wblm-bs-carousel .wblm-item-image a:hover:after, .wblm-blog-slider-holder.wblm-bs-slider .wblm-blog-slider-item:hover .wblm-item-text-wrapper {
    opacity: 1
}

.wblm-related-posts-holder .wblm-related-post .wblm-related-post-image img {
    display: block
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 14px 0 0;
    color: #000;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em;
    font-weight: 400
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div:after {
    content: '/';
    position: absolute;
    top: 0;
    right: 4px
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div:last-child {
    padding: 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div:last-child:after {
    content: ''
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div a {
    color: inherit
}

.wblm-related-posts-holder .wblm-related-post .wblm-bli-info > div a:hover {
    color: #000
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-title {
    margin: 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-title:first-child {
    margin-top: 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 4px 0 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    padding: 0 13px 0 0;
    color: inherit
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div:after {
    position: absolute;
    top: 0;
    right: 4px;
    content: '/'
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div:last-child {
    padding: 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div:last-child:after {
    display: none
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div.wblm-post-info-author .wblm-post-info-author-text {
    margin: 0 3px 0 0
}

.wblm-related-posts-holder .wblm-related-post .wblm-post-info > div a {
    color: inherit;
    line-height: inherit;
    font-size: inherit;
    font-weight: inherit
}

.wblm-blog-holder.wblm-blog-single article {
    margin: 0 0 30px
}

.wblm-blog-holder.wblm-blog-single article .wblm-post-heading {
    margin-bottom: 28px
}

.wblm-blog-holder.wblm-blog-single article .wblm-post-quote-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    vertical-align: top;
    text-align: left
}

.wblm-blog-holder.wblm-blog-single article .wblm-post-quote-holder h5 {
    margin: 0
}

.wblm-blog-holder.wblm-blog-single article .wblm-post-quote-holder .wblm-quote-title, .wblm-blog-holder.wblm-blog-single article .wblm-post-quote-holder a {
    font-size: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 30px
}

.wblm-blog-list-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both
}

.wblm-blog-list-holder .wblm-blog-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0
}

.wblm-blog-list-holder .wblm-bl-item .wblm-bli-inner.link .wblm-bli-info, .wblm-blog-list-holder .wblm-bl-item .wblm-bli-inner.quote .wblm-bli-info {
    display: none
}

.wblm-blog-list-holder .wblm-bl-item {
    padding: 0;
    margin: 0
}

.wblm-blog-list-holder .wblm-bl-item .wblm-bli-inner.quote {
    padding: 48px 50px !important;
    background-color: #faf0ed;
    background-image: url(/wp-content/themes/onea/assets/img/quote.png);
    background-repeat: no-repeat;
    background-position: 95% -15px;
    margin-bottom: 35px
}

.wblm-blog-list-holder .wblm-bl-item .wblm-bli-inner.link {
    padding: 48px 50px !important;
    background-color: #eff5f8;
    background-image: url(/wp-content/themes/onea/assets/img/link.png);
    background-repeat: no-repeat;
    background-position: 95% -40px;
    margin-bottom: 35px
}

.wblm-blog-list-holder .wblm-bl-item:hover .wblm-post-image img {
    -webkit-transition: -webkit-transform translateX(8px);
    -moz-transition: -moz-transform translateX(8px);
    transition: transform translateX(8px)
}

.wblm-blog-list-holder.wblm-bl-masonry .wblm-bli-inner {
    padding: 0 0 22px
}

.wblm-blog-list-holder .wblm-post-heading {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 27px
}

.wblm-blog-list-holder .wblm-post-heading > .wblm-post-info-date {
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 999;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0);
    transform-origin: 0 0;
    background-color: #fff;
    line-height: 40px;
    padding: 0 15px;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 400
}

@media screen and (max-width: 680px) {
    .wblm-blog-list-holder .wblm-post-heading > .wblm-post-info-date {
        left: 0;
        -webkit-transform: rotate(0) translateZ(0);
        -moz-transform: rotate(0) translateZ(0);
        transform: rotate(0) translateZ(0)
    }
}

.wblm-blog-list-holder .wblm-bli-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-blog-list-holder .wblm-post-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-blog-list-holder .wblm-post-image img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-blog-list-holder .wblm-post-image:hover img {
    transform: scale(1.08) translate3d(-8px, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-blog-list-holder .wblm-post-image a, .wblm-blog-list-holder .wblm-post-image img {
    display: block
}

.wblm-blog-list-holder .wblm-bli-info > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 14px 0 0;
    color: #000;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em;
    font-weight: 400
}

.wblm-blog-list-holder .wblm-bli-info > div:after {
    content: '/';
    position: absolute;
    top: 0;
    right: 4px
}

.wblm-blog-list-holder .wblm-bli-info > div:last-child {
    padding: 0
}

.wblm-blog-list-holder .wblm-bli-info > div:last-child:after {
    content: ''
}

.wblm-blog-list-holder .wblm-bli-info > div a {
    color: inherit
}

.wblm-blog-list-holder .wblm-bli-info > div a:hover {
    color: #000
}

.wblm-blog-list-holder .wblm-post-title {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    padding: 3px 0 13px
}

.wblm-blog-list-holder.wblm-bl-minimal .wblm-post-info-date a, .wblm-blog-list-holder.wblm-bl-simple .wblm-bli-content .wblm-post-info-date a {
    font-size: 13px;
    color: #000
}

.wblm-blog-list-holder .wblm-post-excerpt {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0
}

.wblm-blog-list-holder .wblm-post-excerpt p {
    margin: 0
}

.wblm-blog-list-holder .wblm-post-excerpt:after {
    content: '...'
}

.wblm-blog-list-holder .wblm-post-info-bottom {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding-top: 12px;
    line-height: 28px
}

.wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-left, .wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-right {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-blog-list-holder.wblm-bl-boxed .wblm-post-heading, .wblm-blog-list-holder.wblm-bl-masonry .link .wblm-post-heading, .wblm-blog-list-holder.wblm-bl-masonry .quote .wblm-post-heading {
    display: block;
    margin: 0
}

@media only screen and (min-width: 769px) {
    .wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-left, .wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-right {
        width: 50%
    }

    .wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-left {
        float: left
    }

    .wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-right {
        text-align: right;
        float: right
    }
}

.wblm-bl-loading, .wblm-blog-slider-holder.wblm-bs-carousel-centered .wblm-blog-slider-item, .wblm-blog-slider-holder.wblm-bs-slider .wblm-blog-slider-item, .wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-alignment-center {
    text-align: center
}

.wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-right > div {
    margin-left: 17px
}

.wblm-blog-list-holder .wblm-post-info-bottom .wblm-post-info-bottom-right > div:first-child {
    margin-left: 0
}

.wblm-blog-list-holder.wblm-bl-boxed .link .wblm-bli-content, .wblm-blog-list-holder.wblm-bl-boxed .quote .wblm-bli-content {
    padding: 0;
    background-color: transparent
}

.wblm-blog-list-holder.wblm-bl-boxed .wblm-bli-content {
    padding: 40px 30px;
    background-color: #f6f6f6
}

.wblm-blog-list-holder.wblm-bl-boxed .wblm-post-image {
    margin: 0
}

.wblm-blog-list-holder.wblm-bl-masonry {
    transition: none !important;
    overflow: visible !important
}

.wblm-blog-list-holder.wblm-bl-masonry .wblm-bl-item {
    z-index: 100
}

.wblm-blog-list-holder.wblm-bl-masonry .wblm-bl-item .wblm-bli-inner.link, .wblm-blog-list-holder.wblm-bl-masonry .wblm-bl-item .wblm-bli-inner.quote {
    padding: 95px 50px !important
}

.wblm-blog-list-holder.wblm-bl-minimal .wblm-post-info-date {
    display: block;
    margin: 0 0 12px;
    line-height: 1
}

.wblm-blog-list-holder.wblm-bl-minimal .wblm-post-info-date a:hover {
    color: #000
}

.wblm-blog-list-holder.wblm-bl-simple .wblm-post-image {
    display: table-cell;
    vertical-align: top;
    width: 84px
}

.wblm-blog-list-holder.wblm-bl-simple .wblm-bli-content {
    display: table-cell;
    vertical-align: top;
    width: auto;
    padding-left: 25px
}

.wblm-blog-list-holder.wblm-bl-simple .wblm-bli-content .wblm-post-info-date {
    display: block;
    margin: 7px 0 0;
    line-height: 1
}

.wblm-blog-list-holder.wblm-bl-simple .wblm-bli-content .wblm-post-info-date a:hover {
    color: #000
}

.wblm-bl-loading {
    position: relative;
    display: none;
    width: 100%;
    margin: 40px 0 20px
}

.wblm-bl-loading.wblm-showing {
    display: block
}

.wblm-bl-loading > div {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin: 0 3px;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: bl-bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: bl-bouncedelay 1.4s infinite ease-in-out both;
    animation: bl-bouncedelay 1.4s infinite ease-in-out both
}

.wblm-bl-loading .wblm-bl-loading-bounce1 {
    -webkit-animation-delay: -.32s;
    -moz-animation-delay: -.32s;
    animation-delay: -.32s
}

.wblm-bl-loading .wblm-bl-loading-bounce2 {
    -webkit-animation-delay: -.16s;
    -moz-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes bl-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bl-bouncedelay {
    0%, 100%, 80% {
        -moz-transform: scale(0)
    }
    40% {
        -moz-transform: scale(1)
    }
}

@keyframes bl-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wblm-blog-slider-holder.wblm-bs-slider .wblm-post-title {
    color: #fff
}

.wblm-blog-slider-holder.wblm-bs-slider .wblm-post-title a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-blog-slider-holder.wblm-bs-slider .wblm-post-read-more-button a {
    color: #fff
}

.wblm-blog-slider-holder.wblm-bs-slider .wblm-post-read-more-button a:hover {
    color: rgba(255, 255, 255, .8) !important
}

.wblm-blog-slider-holder.wblm-bs-carousel .wblm-item-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-blog-slider-holder .wblm-blog-slider-item, .wblm-blog-slider-holder .wblm-item-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-blog-slider-holder.wblm-bs-carousel .wblm-post-title {
    margin: 29px 0 0
}

.wblm-blog-slider-holder.wblm-bs-carousel .wblm-post-read-more-button {
    margin: 15px 0 0
}

.wblm-blog-slider-holder.wblm-bs-carousel-centered .active.center .wblm-item-text-wrapper {
    opacity: 1
}

.wblm-blog-slider-holder.wblm-bs-carousel-centered .wblm-post-title {
    color: #fff
}

.wblm-blog-slider-holder.wblm-bs-carousel-centered .wblm-post-title a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-blog-slider-holder.wblm-bs-carousel-centered .wblm-post-read-more-button a {
    color: #fff
}

.wblm-blog-slider-holder.wblm-bs-carousel-centered .wblm-post-read-more-button a:hover {
    color: rgba(255, 255, 255, .8) !important
}

.wblm-blog-slider-holder .wblm-blog-slider-item {
    list-style-type: none
}

.wblm-blog-slider-holder .wblm-item-text-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .85);
    opacity: 0;
    -webkit-transition: opacity .45s ease-out;
    -moz-transition: opacity .45s ease-out;
    transition: opacity .45s ease-out
}

.wblm-page-footer .wblm-footer-bottom-holder, .wblm-page-footer .wblm-footer-top-holder {
    /* background-color: #000; */
    border-top: 0 solid #ccc;
}

.wblm-blog-slider-holder .wblm-item-text-holder {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-blog-slider-holder .wblm-item-text-holder-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 0 5%
}

.wblm-blog-slider-holder .wblm-item-info-section {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 2px
}

.wblm-blog-slider-holder .wblm-item-info-section > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
    margin-right: 3px;
    color: #fff;
    font-size: 12px;
    line-height: 24px
}

.wblm-blog-slider-holder .wblm-item-info-section > div a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

.wblm-blog-slider-holder .wblm-item-info-section > div a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-blog-slider-holder .wblm-item-info-section > div:after {
    content: "/";
    position: absolute;
    top: 0;
    right: 2px
}

.wblm-blog-slider-holder .wblm-bli-excerpt, .wblm-page-footer {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-blog-slider-holder .wblm-item-info-section > div:last-child {
    padding-right: 0;
    margin-right: 0
}

.wblm-blog-slider-holder .wblm-item-info-section > div:last-child:after {
    content: ''
}

.wblm-blog-slider-holder .wblm-post-title {
    margin: 0
}

.wblm-blog-slider-holder .wblm-bli-excerpt {
    margin: 12px 0 0
}

.wblm-blog-slider-holder .wblm-bli-excerpt p {
    margin: 0
}

.wblm-blog-slider-holder .wblm-post-read-more-button {
    margin: 5px 0 0
}

.wblm-content-bottom .wblm-content-bottom-inner {
    box-sizing: border-box
}

.wblm-content-bottom .wblm-content-bottom-inner.wblm-grid {
    padding: 20px 0
}

.wblm-content-bottom .wblm-content-bottom-inner.wblm-full-width {
    padding: 20px 40px
}

.wblm-page-footer {
    z-index: 100;
    box-sizing: border-box
}

.wblm-page-footer p {
    margin: 13px 0
}

.no-touch body:not(.error404) .wblm-page-footer.wblm-footer-uncover {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    -webkit-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
    -moz-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
    transition: left .33s cubic-bezier(.694, .0482, .335, 1)
}

@media only screen and (max-width: 1024px) {
    .no-touch body:not(.error404) .wblm-page-footer.wblm-footer-uncover {
        position: relative;
        height: auto !important
    }
}

.wblm-right-side-menu-opened .wblm-page-footer.wblm-footer-uncover {
    left: -270px
}

.wblm-page-footer .wblm-footer-top-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-alignment-left {
    text-align: left
}

.wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-alignment-right {
    text-align: right
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .wblm-page-footer .wblm-footer-top-holder .wblm-grid-col-2 {
        width: 50%;
        float: left
    }

    .wblm-page-footer .wblm-footer-top-holder .wblm-grid-col-2:nth-child(2n+1) {
        clear: both
    }
}

.wblm-page-footer .wblm-footer-bottom-holder, .wblm-page-header {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    position: relative;
    box-sizing: border-box
}

.wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-inner {
    box-sizing: border-box
}

.wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-inner.wblm-grid {
    padding: 138px 0 10px
}

.wblm-page-footer .wblm-footer-top-holder .wblm-footer-top-inner.wblm-full-width {
    padding: 138px 40px 10px
}

.wblm-page-footer .wblm-footer-bottom-holder .wblm-footer-bottom-inner {
    box-sizing: border-box;
    border-top: 1px solid #414141
}

.wblm-logo-area-border-disable .wblm-page-header .wblm-logo-area, .wblm-logo-area-in-grid-border-disable .wblm-page-header .wblm-logo-area .wblm-grid .wblm-vertical-align-containers, .wblm-menu-area-border-disable .wblm-page-header .wblm-menu-area, .wblm-menu-area-in-grid-border-disable .wblm-page-header .wblm-menu-area .wblm-grid .wblm-vertical-align-containers {
    border: none
}

.wblm-page-footer .wblm-footer-bottom-holder .wblm-footer-bottom-inner.wblm-grid {
    padding: 19px 0
}

.wblm-page-footer .wblm-footer-bottom-holder .wblm-footer-bottom-inner.wblm-full-width {
    padding: 19px 40px
}

.wblm-page-footer.wblm-footer-dark-text * {
    color: #000
}

.wblm-page-header {
    margin: 0;
    padding: 0;
    z-index: 110;
    font-family: Poppins, sans-serif
}

.wblm-page-header a img {
    display: block
}

.wblm-page-header p {
    margin: 0
}

.wblm-page-header .wblm-vertical-align-containers {
    padding: 0 40px
}

.wblm-boxed .wblm-page-header .wblm-menu-area, .wblm-paspartu-enabled .wblm-page-header .wblm-vertical-align-containers {
    padding: 0
}

.wblm-page-header .wblm-grid {
    height: 100%
}

.wblm-page-header .wblm-grid .wblm-vertical-align-containers {
    padding: 0;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.wblm-page-header .wblm-logo-area {
    position: relative;
    height: 90px;
    overflow: hidden;
    background-color: #fff
}

.wblm-page-header .wblm-menu-area {
    position: relative;
    height: 90px;
    background-color: #fff;
    box-sizing: border-box
}

.wblm-header-logo-area-in-grid-padding .wblm-page-header .wblm-logo-area .wblm-vertical-align-containers, .wblm-header-logo-area-in-grid-padding .wblm-page-header .wblm-menu-area .wblm-vertical-align-containers {
    padding: 0 25px
}

.wblm-page-header .wblm-menu-area .widget {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-menu-area-shadow-disable .wblm-page-header .wblm-menu-area, .wblm-menu-area-shadow-disable .wblm-page-header .wblm-menu-area .wblm-grid .wblm-vertical-align-containers {
    box-shadow: none
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-light-logo {
    opacity: 1
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-dark-logo, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-normal-logo {
    opacity: 0
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget .widgettitle, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget a, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget i, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget p, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget span {
    color: #fff !important
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget a:hover {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget .widgettitle, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget a, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget i, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget p, .wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget span {
    color: #fff !important
}

.wblm-light-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget a:hover {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-dark-logo {
    opacity: 1
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-light-logo, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-logo-wrapper .wblm-normal-logo {
    opacity: 0
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget .widgettitle, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget a, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget i, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget p, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget span {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header) .wblm-menu-area .widget a:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget .widgettitle, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget a, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget i, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget p, .wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget span {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.fixed):not(.wblm-sticky-header).wblm-menu-area .widget a:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-logo-wrapper {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

.wblm-logo-wrapper a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%
}

.wblm-logo-wrapper a img {
    height: 100%;
    width: 135px;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.wblm-logo-wrapper a img.wblm-normal-logo {
    opacity: 1
}

.wblm-logo-wrapper a img.wblm-dark-logo {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%)
}

.wblm-logo-wrapper a img.wblm-light-logo {
    opacity: 0;
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    transform: translateY(-200%)
}

.wblm-main-menu {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto
}

.wblm-main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left
}

.wblm-main-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0;
    margin: 0
}

.wblm-main-menu ul li a {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    line-height: 19px;
    color: #000
}

.wblm-main-menu ul li a i:before {
    margin: 0 7px 0 0
}

.wblm-main-menu ul li a .menu_icon_wrapper {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-main-menu ul li a .wblm-menu-featured-icon {
    position: relative;
    top: -4px;
    left: 5px;
    color: currentColor;
    font-size: 10px;
    margin: 0
}

.wblm-main-menu ul li a .wblm-menu-featured-icon:before {
    margin: 0
}

.wblm-main-menu > ul {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%
}

.wblm-main-menu > ul > li {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.wblm-main-menu > ul > li > a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 0 20px;
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box;
    font-weight: 600;
    font-family: Poppins, sans-serif
}

.wblm-main-menu > ul > li > a:hover > span:before, .wblm-main-menu > ul > li > a > span:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%
}

.wblm-main-menu > ul > li > a > span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-main-menu > ul > li > a:hover > span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-main-menu > ul > li > a > span.item_outer {
    position: relative;
    display: block
}

.wblm-main-menu > ul > li > a > span.item_outer .item_text {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-main-menu > ul > li.wblm-active-item > a > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-main-menu > ul > li.has_sub > a .wblm-menu-arrow {
    display: none
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li > a {
    color: #fff
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li.wblm-active-item > a, .wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li > a:hover {
    color: rgba(255, 255, 255, .9)
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li > a {
    color: #000
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li.wblm-active-item > a, .wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-main-menu > ul > li > a:hover {
    color: rgba(0, 0, 0, .9)
}

.wblm-drop-down {
    font-family: Montserrat, sans-serif
}

.wblm-drop-down .second {
    position: absolute;
    display: block;
    left: -5px;
    top: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    z-index: 10;
    -webkit-transition: top .15s ease-out;
    -moz-transition: top .15s ease-out;
    transition: top .15s ease-out
}

.wblm-drop-down .second.wblm-drop-down-start {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-drop-down .second.right {
    right: -5px;
    left: auto
}

.wblm-drop-down .second .inner {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    z-index: 997;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .03)
}

.wblm-drop-down .second .inner ul li {
    display: block;
    float: none;
    height: auto
}

.wblm-drop-down .second .inner ul li .widget {
    width: 100%;
    margin: 0 !important
}

.wblm-drop-down .second .inner ul li a {
    display: block;
    float: none;
    margin: 0;
    padding: 7px 30px
}

.wblm-drop-down .second .inner ul li a .item_outer {
    position: relative;
    display: block;
    padding: 0 30px 0 0;
    box-sizing: border-box;
    -webkit-transition: padding .2s ease-in-out;
    -moz-transition: padding .2s ease-in-out;
    transition: padding .2s ease-in-out
}

.wblm-drop-down .second .inner ul li a .item_outer > span:before, .wblm-drop-down .second .inner ul li a:hover .item_outer > span:before {
    content: '';
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%
}

.wblm-drop-down .second .inner ul li a .item_outer > span {
    position: relative
}

.wblm-drop-down .second .inner ul li a .item_outer > span:before {
    position: absolute;
    bottom: -3px;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-drop-down .second .inner ul li a:hover .item_outer > span:before {
    position: absolute;
    bottom: -3px;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-drop-down .second .inner ul li.current-menu-ancestor > a, .wblm-drop-down .second .inner ul li.current-menu-item > a {
    color: #000
}

.wblm-drop-down .second .inner ul li.current-menu-ancestor > a .item_outer > span:before, .wblm-drop-down .second .inner ul li.current-menu-item > a .item_outer > span:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-drop-down .second .inner ul li.current-menu-ancestor > a .item_outer:before, .wblm-drop-down .second .inner ul li.current-menu-item > a .item_outer:before {
    left: 0
}

.wblm-drop-down .second .inner ul li.sub > a .item_outer:after {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    top: -1px;
    right: 0;
    content: '\f3d3';
    font-family: Ionicons;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wblm-drop-down .wide .second .inner > ul > li > a, .wblm-header-minimal, .wblm-header-vertical, .wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > a, nav.wblm-fullscreen-menu ul li a {
    font-family: Poppins, sans-serif
}

.wblm-drop-down .second .inner ul.right li a .item_outer {
    padding: 0 0 0 30px
}

.wblm-drop-down .second .inner ul.right li a:hover .item_outer, .wblm-drop-down .second .inner ul.right li.current-menu-ancestor > a .item_outer, .wblm-drop-down .second .inner ul.right li.current-menu-item > a .item_outer {
    padding: 0 20px 0 10px
}

.wblm-drop-down .second .inner ul.right li a .item_outer:before {
    content: '\f3d5';
    left: auto;
    right: -20px;
    -webkit-transition: right .2s ease-in-out;
    -moz-transition: right .2s ease-in-out;
    transition: right .2s ease-in-out
}

.wblm-drop-down .second .inner ul.right li a:hover .item_outer:before {
    left: auto;
    right: 0
}

.wblm-drop-down .second .inner ul.right li.current-menu-ancestor > a .item_outer > span:before, .wblm-drop-down .second .inner ul.right li.current-menu-item > a .item_outer > span:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-drop-down .second .inner ul.right li.current-menu-ancestor > a .item_outer:before, .wblm-drop-down .second .inner ul.right li.current-menu-item > a .item_outer:before {
    left: auto;
    right: 0
}

.wblm-drop-down .second .inner ul.right li.sub > a .item_outer:after {
    right: auto;
    left: 0;
    content: "\f3d2"
}

.wblm-drop-down .second .inner ul.right li a {
    text-align: right
}

.wblm-drop-down .second .inner ul.right li ul {
    left: -100%
}

.wblm-drop-down li.left_position .second {
    left: 0
}

.wblm-drop-down li.right_position .second {
    left: auto;
    right: 0
}

.wblm-drop-down > ul > li:hover > .second {
    z-index: 20
}

.wblm-drop-down .narrow .second .inner ul {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    padding: 23px 0
}

.wblm-drop-down .narrow .second .inner ul li {
    width: 230px
}

.wblm-drop-down .narrow .second .inner ul li ul {
    position: absolute;
    left: 100%;
    top: -23px;
    height: auto;
    opacity: 0;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .03);
    -webkit-transform: translateZ(0);
    -webkit-transition: opacity .4s ease-out;
    -moz-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out
}

.wblm-drop-down .narrow .second .inner ul li:hover ul {
    z-index: 20;
    opacity: 1
}

.wblm-drop-down .narrow .second .inner ul.right li ul {
    left: -100%
}

.wblm-drop-down .wide .second .inner {
    background-color: #fff;
    text-align: center
}

.wblm-drop-down .wide .second .inner ul li a {
    padding: 7px 0;
    text-transform: capitalize;
    font-size: 13px
}

.wblm-drop-down .wide .second .inner ul li ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    visibility: visible
}

.wblm-drop-down .wide .second .inner ul li ul li:last-child a {
    padding-bottom: 0
}

.wblm-drop-down .wide .second .inner > ul {
    position: relative;
    vertical-align: middle;
    padding: 35px 15px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between
}

.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul {
    width: 1200px;
    padding: 35px 0
}

.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul > li {
    width: calc(25% - 15px);
    padding: 0
}

@media only screen and (min-width: 1400px) {
    .wblm-grid-1300.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul {
        width: 1300px
    }
}

@media only screen and (min-width: 1300px) {
    .wblm-grid-1200.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul {
        width: 1200px
    }
}

@media only screen and (min-width: 1200px) {
    .wblm-grid-1000.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul {
        width: 1000px
    }
}

@media only screen and (min-width: 1024px) {
    .wblm-grid-800.wblm-wide-dropdown-menu-content-in-grid .wblm-drop-down .wide .second .inner > ul {
        width: 800px
    }
}

.wblm-drop-down .wide .second .inner > ul > li {
    float: left;
    width: 25%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box
}

.wblm-drop-down .wide .second .inner > ul > li:nth-child(4n+1) {
    clear: both;
    border-left: 0
}

.wblm-drop-down .wide .second .inner > ul > li > a {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding: 0 0 9px;
    line-height: 2em;
    text-transform: capitalize
}

.wblm-drop-down .wide .second .inner > ul > li > a.no_link {
    cursor: default
}

.wblm-drop-down .wide .second .inner > ul > li > a .item_outer {
    padding: 0;
    overflow: inherit
}

.wblm-drop-down .wide .second .inner > ul > li > a .item_outer:after, .wblm-drop-down .wide .second .inner > ul > li > a .item_outer:before {
    display: none
}

.wblm-drop-down .wide .second .inner > ul > li.current-menu-ancestor > a, .wblm-drop-down .wide .second .inner > ul > li.current-menu-item > a {
    color: #000
}

.wblm-drop-down .wide.left_position .second .inner > ul, .wblm-drop-down .wide.right_position .second .inner > ul {
    width: auto;
    white-space: nowrap
}

.wblm-drop-down .wide.left_position .second .inner > ul > li, .wblm-drop-down .wide.right_position .second .inner > ul > li {
    float: none;
    display: inline-block;
    vertical-align: top
}

.wblm-drop-down .wide.left_position .second .inner > ul > li:nth-child(4n+1), .wblm-drop-down .wide.right_position .second .inner > ul > li:nth-child(4n+1) {
    border-left: none
}

.wblm-drop-down .wide.left_position .second ul li, .wblm-drop-down .wide.right_position .second ul li {
    width: 200px
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li {
    width: calc(20% - 15px)
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(2n) {
    width: calc(80% - 15px);
    height: unset !important
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(2n) a {
    padding: 0;
    margin: 0
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(2n) .wblm-product-list-widget .wblm-pli-text-wrapper a {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 15px
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(2n) .wblm-product-list-widget .wblm-pli {
    margin-bottom: 0
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(2n+1) {
    clear: both
}

.wblm-drop-down .wide.wide-1-5 .second .inner > ul > li:nth-child(4n+1) {
    clear: none
}

.wblm-page-header .wblm-fixed-wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden
}

.admin-bar .wblm-page-header .wblm-fixed-wrapper.fixed {
    top: 32px
}

.wblm-page-header .wblm-fixed-wrapper.fixed .wblm-menu-area {
    background-color: #fff
}

.wblm-header-bottom.wblm-header-bottom-opened .wblm-header-bottom-wrapper {
    -webkit-transform: translate3d(-414px, 0, 0);
    -moz-transform: translate3d(-414px, 0, 0);
    transform: translate3d(-414px, 0, 0)
}

.wblm-header-bottom .wblm-page-header .wblm-bottom-menu-right-widget-holder {
    display: inline-block
}

@media only screen and (min-width: 1025px) {
    .wblm-header-bottom .wblm-slider-fixed {
        position: fixed;
        display: inline-block;
        width: 100%;
        height: 100%;
        z-index: 99;
        top: 0;
        left: 0
    }

    .wblm-header-bottom .wblm-content-inner > .wblm-full-width {
        background: #fff
    }
}

.wblm-header-bottom .wblm-logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%
}

.wblm-header-bottom .wblm-position-center-inner {
    height: 100%
}

.wblm-header-bottom .wblm-side-menu-button-opener {
    margin: 0 0 0 8px
}

.wblm-header-bottom .wblm-side-menu-button-opener .wblm-side-menu-icon {
    top: -1px
}

.wblm-header-bottom .wblm-menu-area .wblm-position-left-inner, .wblm-header-bottom .wblm-menu-area .wblm-position-right-inner {
    height: 100%
}

.wblm-header-bottom .wblm-menu-area .wblm-bottom-menu-left-widget-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%
}

.wblm-header-bottom .wblm-vertical-menu-area {
    position: fixed;
    width: 414px;
    top: 0;
    right: 0;
    background-color: transparent;
    height: 100%;
    z-index: 111;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    -webkit-transform: translate3d(414px, 0, 0);
    -moz-transform: translate3d(414px, 0, 0);
    transform: translate3d(414px, 0, 0);
    -webkit-transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1)
}

.wblm-header-bottom .wblm-vertical-menu-area .wblm-vertical-menu-area-inner {
    position: relative;
    height: 100%
}

.wblm-header-bottom.admin-bar .wblm-vertical-menu-area {
    top: 33px
}

.wblm-header-bottom .wblm-content {
    -webkit-transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1)
}

.wblm-header-bottom .wblm-vertical-menu-area.opened {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.wblm-header-bottom.wblm-header-bottom-opened .wblm-content {
    -webkit-transform: translate3d(-414px, 0, 0);
    -moz-transform: translate3d(-414px, 0, 0);
    transform: translate3d(-414px, 0, 0)
}

.wblm-header-bottom .wblm-vertical-menu-nav-holder-outer {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
    padding: 0 80px;
    box-sizing: border-box
}

.wblm-header-bottom .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder {
    display: table;
    height: 100%;
    width: 100%
}

.wblm-header-bottom .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder .wblm-vertical-menu-holder-nav-inner {
    display: table-cell;
    vertical-align: middle
}

.wblm-header-bottom .wblm-vertical-alignment-top .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder .wblm-vertical-menu-holder-nav-inner {
    vertical-align: top
}

.wblm-header-bottom .wblm-header-bottom-menu {
    position: relative;
    z-index: 101;
    text-align: left
}

.wblm-header-bottom .wblm-header-bottom-menu ul {
    position: relative;
    list-style-type: none
}

.wblm-header-bottom .wblm-header-bottom-menu > ul > li {
    position: relative;
    text-align: left
}

.wblm-header-bottom .wblm-header-bottom-menu > ul > li.wblm-active-item > a > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-header-bottom .wblm-header-bottom-menu ul li a > span {
    position: relative
}

.wblm-header-bottom .wblm-header-bottom-menu ul li a:hover > span:before, .wblm-header-bottom .wblm-header-bottom-menu ul li a > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%
}

.wblm-header-bottom .wblm-header-bottom-menu ul li a > span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-header-bottom .wblm-header-bottom-menu ul li a:hover > span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-header-bottom .wblm-header-bottom-menu > ul > li > a {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    color: #000;
    padding: 3px 0;
    text-decoration: none;
    text-transform: capitalize;
    margin: 0;
    cursor: pointer;
    overflow: hidden
}

.wblm-header-bottom .wblm-header-bottom-menu > ul > li > a > i {
    font-size: 20px;
    margin-left: 3%
}

.wblm-header-bottom .wblm-header-bottom-menu .sub_menu {
    display: none;
    padding: 7px 0 10px 5px
}

.wblm-header-bottom .wblm-header-bottom-menu .sub_menu li {
    text-align: left
}

.wblm-header-bottom .wblm-header-bottom-menu .sub_menu li a {
    font-size: 15px;
    line-height: 30px
}

.wblm-header-bottom .wblm-header-bottom-menu .sub_menu li a > i {
    font-size: 12px;
    margin-left: 3%
}

.wblm-header-bottom .wblm-header-bottom-menu .sub_menu li a span:before {
    border: none
}

.wblm-header-bottom .wblm-header-bottom-opener-outer {
    display: table;
    height: 100%
}

.wblm-header-bottom .wblm-header-bottom-opener-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

.wblm-header-bottom .wblm-header-bottom-menu-opener {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.wblm-header-bottom .wblm-vertical-area-widget-holder {
    width: 100%;
    z-index: 100;
    position: absolute;
    bottom: 80px;
    left: 80px
}

.wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-vertical-header-widget {
    text-align: center;
    padding: 5px 0
}

.wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > a, .wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > div, .wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > span {
    position: relative;
    display: inline-block;
    padding: 0
}

.wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-social-icon-widget-holder {
    display: block;
    text-align: center;
    padding: 5px 0
}

.wblm-header-bottom .wblm-vertical-area-widget-holder .wblm-social-icon-widget-holder:hover {
    color: #000 !important
}

.wblm-header-bottom .wblm-vertical-menu-area.opened .wblm-social-icon-widget-holder:hover {
    color: #fff !important
}

.wblm-header-centered .wblm-page-header .wblm-logo-area {
    overflow: visible;
    z-index: 2;
    box-sizing: border-box
}

.wblm-header-centered .wblm-page-header .wblm-menu-area {
    z-index: 1
}

.wblm-header-centered .wblm-page-header .wblm-menu-area .wblm-vertical-align-containers .wblm-position-center-inner {
    height: 100%
}

.wblm-header-centered .wblm-page-header .wblm-sticky-header .wblm-position-left-inner {
    height: auto
}

.wblm-header-centered .wblm-page-header .wblm-sticky-header .wblm-position-right-inner {
    height: 100%
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener {
    color: #000
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener.wblm-fm-opened, .wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener:hover {
    color: rgba(0, 0, 0, .9)
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener {
    color: #fff
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener.wblm-fm-opened, .wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-fullscreen-menu-opener:hover {
    color: rgba(255, 255, 255, .9)
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li a:hover, nav.wblm-fullscreen-menu ul li ul li.current-menu-ancestor > a, nav.wblm-fullscreen-menu ul li ul li.current-menu-item > a {
    color: #000
}

.wblm-fullscreen-menu-opener {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.wblm-fullscreen-menu-opener .wblm-fullscreen-menu-opener-icon {
    position: relative;
    visibility: visible
}

.wblm-fullscreen-menu-opener .wblm-fullscreen-menu-close-icon {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden
}

.wblm-fullscreen-menu-opener.wblm-fm-opened .wblm-fullscreen-menu-opener-icon {
    visibility: hidden
}

.wblm-fullscreen-menu-opener.wblm-fm-opened .wblm-fullscreen-menu-close-icon {
    visibility: visible
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-icon-pack {
    font-size: 32px
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-icon-pack *, .wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-icon-pack :before {
    display: inline-block
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-close-icon svg {
    height: 16px;
    width: 17px
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-close-icon svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-close-icon:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-close-icon:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon {
    overflow: hidden
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line {
    transform: translateX(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line.wblm-burger-filler {
    transform: translateX(-101%)
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(1) {
    transition-delay: .4s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(2) {
    transition-delay: .5s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(3) {
    transition-delay: .6s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(4) {
    transition-delay: .1s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(5) {
    transition-delay: .2s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon line:nth-child(6) {
    transition-delay: .3s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line {
    transform: translateX(101%)
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line.wblm-burger-filler {
    transform: translateX(0)
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(1) {
    transition-delay: .1s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(2) {
    transition-delay: .2s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(3) {
    transition-delay: .3s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(4) {
    transition-delay: .4s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(5) {
    transition-delay: .5s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-svg-path .wblm-fullscreen-menu-opener-icon:hover line:nth-child(6) {
    transition-delay: .6s
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined {
    line-height: 1
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-hm-lines {
    position: relative;
    display: block;
    width: 23px;
    height: 17px
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-hm-lines .wblm-hm-line {
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    border-radius: 12px;
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-1 {
    top: 0
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-2 {
    top: 7px
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-3 {
    bottom: 0
}

.wblm-fullscreen-menu-opener.wblm-fullscreen-menu-opener-predefined .wblm-fullscreen-menu-close-icon {
    top: -9px;
    left: -5px;
    font-size: 32px
}

.wblm-fullscreen-menu-opened .wblm-page-header, .wblm-fullscreen-menu-opened .wblm-top-bar {
    visibility: hidden
}

.wblm-fullscreen-menu-opened .wblm-fullscreen-menu-opener, .wblm-fullscreen-menu-opened .wblm-logo-wrapper {
    visibility: visible
}

.wblm-fullscreen-menu-opened .wblm-fullscreen-menu-holder-outer {
    visibility: visible !important;
    opacity: 1 !important
}

.wblm-fullscreen-menu-holder-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    visibility: hidden;
    opacity: 0;
    z-index: 105
}

.wblm-fullscreen-menu-holder {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    display: table;
    background-repeat: repeat;
    background-position: 0 0;
    padding: 20px 0
}

.wblm-fullscreen-menu-holder-inner {
    display: table-cell;
    vertical-align: middle;
    padding: 26px 285px
}

.touch .wblm-fullscreen-menu-holder-outer {
    display: none
}

.touch .wblm-fullscreen-menu-opened .wblm-fullscreen-menu-holder-outer {
    display: block
}

nav.wblm-fullscreen-menu {
    position: relative;
    top: 0;
    margin: 0 auto;
    text-align: left
}

nav.wblm-fullscreen-menu ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0
}

nav.wblm-fullscreen-menu ul li {
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative
}

nav.wblm-fullscreen-menu ul li a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.3em;
    text-transform: capitalize
}

nav.wblm-fullscreen-menu ul li a span:before, nav.wblm-fullscreen-menu ul li a:hover span:before {
    position: absolute;
    left: 0;
    width: 100%;
    content: '';
    height: 1px;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    background-color: currentColor;
    bottom: 0;
    right: 0
}

nav.wblm-fullscreen-menu ul li a span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

nav.wblm-fullscreen-menu ul li a:hover span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

nav.wblm-fullscreen-menu ul li a span {
    position: relative;
    display: inline-block;
    vertical-align: top
}

nav.wblm-fullscreen-menu ul li a .wblm-fullscreen-menu-arrow {
    display: none
}

nav.wblm-fullscreen-menu ul li ul {
    padding: 7px 0
}

nav.wblm-fullscreen-menu ul li ul.sub_menu {
    display: none;
    position: absolute;
    left: 100%;
    top: -8px;
    width: 200px
}

nav.wblm-fullscreen-menu ul li ul li.current-menu-ancestor > a span:before, nav.wblm-fullscreen-menu ul li ul li.current-menu-item > a span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

nav.wblm-fullscreen-menu ul li ul li ul li a {
    font-size: 20px
}

nav.wblm-fullscreen-menu > ul {
    display: block;
    width: 253px
}

nav.wblm-fullscreen-menu > ul > li {
    text-align: right
}

nav.wblm-fullscreen-menu > ul > li > a {
    font-size: 38px;
    font-weight: 600;
    margin: 5px 0
}

nav.wblm-fullscreen-menu > ul > li.wblm-active-item > a span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

nav.wblm-fullscreen-menu > ul > li > ul.sub_menu {
    top: calc(100% - 55px)
}

nav.wblm-fullscreen-menu > ul > li > ul.sub_menu li a {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    left: 34px
}

nav.wblm-fullscreen-menu > ul > li > ul.sub_menu li a:hover {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.wblm-fullscreen-below-menu-widget-holder {
    text-align: center;
    margin-top: 20px
}

.wblm-fullscreen-above-menu-widget-holder {
    text-align: center
}

@-webkit-keyframes fade_out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@-moz-keyframes fade_out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes fade_out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@-webkit-keyframes fade_in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

@-moz-keyframes fade_in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

.wblm-fade-push-text-right .wblm-fullscreen-menu-holder-outer, .wblm-fade-push-text-top .wblm-fullscreen-menu-holder-outer, .wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden !important;
    z-index: 105;
    opacity: 0
}

.wblm-header-minimal .wblm-page-header .wblm-menu-area .wblm-position-right-inner, .wblm-header-minimal .wblm-page-header .wblm-sticky-header .wblm-position-left-inner, .wblm-header-minimal .wblm-page-header .wblm-sticky-header .wblm-vertical-align-containers .wblm-position-right .wblm-position-right-inner {
    height: auto
}

.wblm-fullscreen-fade-out .wblm-fullscreen-menu-holder-outer {
    -webkit-animation: fade_out .25s linear both;
    -moz-animation: fade_out .25s linear both;
    animation: fade_out .25s linear both
}

.wblm-fullscreen-menu-opened.wblm-fullscreen-fade-in .wblm-fullscreen-menu-holder-outer {
    -webkit-animation: fade_in .25s linear both;
    -moz-animation: fade_in .25s linear both;
    animation: fade_in .25s linear both
}

@-webkit-keyframes push_text_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes push_text_right {
    0% {
        opacity: 0;
        -moz-transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@keyframes push_text_right {
    0% {
        opacity: 0;
        transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes push_nav_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes push_nav_right {
    0% {
        opacity: 0;
        -moz-transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@keyframes push_nav_right {
    0% {
        opacity: 0;
        transform: translateX(-60px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.wblm-fullscreen-menu-opened.wblm-fade-push-text-right .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder > div, .wblm-fullscreen-menu-opened.wblm-fade-push-text-right .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder > div, .wblm-fullscreen-menu-opened.wblm-fade-push-text-right .wblm-fullscreen-menu-holder-outer nav > ul > li > a {
    -webkit-animation: push_text_right .4s cubic-bezier(.175, .885, .32, 1) both;
    -moz-animation: push_text_right .4s cubic-bezier(.175, .885, .32, 1) both;
    animation: push_text_right .4s cubic-bezier(.175, .885, .32, 1) both
}

.wblm-fade-push-text-right.wblm-push-nav-right .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder, .wblm-fade-push-text-right.wblm-push-nav-right .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder, .wblm-fade-push-text-right.wblm-push-nav-right .wblm-fullscreen-menu-holder-outer nav {
    -webkit-transition: all .75s ease-out;
    -moz-transition: all .75s ease-out;
    transition: all .75s ease-out;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px)
}

@-webkit-keyframes push_text_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes push_text_top {
    0% {
        opacity: 0;
        -moz-transform: translateY(60px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@keyframes push_text_top {
    0% {
        opacity: 0;
        transform: translateY(60px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.wblm-fullscreen-menu-opened.wblm-fade-push-text-top .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder > div, .wblm-fullscreen-menu-opened.wblm-fade-push-text-top .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder > div, .wblm-fullscreen-menu-opened.wblm-fade-push-text-top .wblm-fullscreen-menu-holder-outer nav > ul > li > a {
    -webkit-animation: push_text_top .4s ease-out both .5s;
    -moz-animation: push_text_top .4s ease-out both .5s;
    animation: push_text_top .4s ease-out both .5s
}

.wblm-fade-push-text-top.wblm-push-text-top .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder, .wblm-fade-push-text-top.wblm-push-text-top .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder, .wblm-fade-push-text-top.wblm-push-text-top .wblm-fullscreen-menu-holder-outer nav {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all .75s ease-out;
    -moz-transition: all .75s ease-out;
    transition: all .75s ease-out
}

.wblm-fullscreen-menu-opened.wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder, .wblm-fullscreen-menu-opened.wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder, .wblm-fullscreen-menu-opened.wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer nav {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .25s linear .1s;
    -moz-transition: all .25s linear .1s;
    transition: all .25s linear .1s
}

.wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-above-menu-widget-holder, .wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer .wblm-fullscreen-below-menu-widget-holder, .wblm-fade-text-scaledown .wblm-fullscreen-menu-holder-outer nav {
    opacity: 0;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .25s linear .1s;
    -moz-transition: all .25s linear .1s;
    transition: all .25s linear .1s
}

.wblm-header-minimal .wblm-page-header .wblm-position-left:before, .wblm-header-minimal .wblm-page-header .wblm-position-right:before {
    content: ""
}

.wblm-header-standard-extended .wblm-page-header .wblm-logo-area {
    z-index: 1;
    box-sizing: border-box
}

.wblm-header-standard-extended .wblm-page-header .wblm-logo-area .wblm-logo-widget-area {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px
}

.wblm-header-standard-extended .wblm-page-header .wblm-logo-area .wblm-right-from-logo-widget {
    position: relative;
    padding: 0 20px 0 0;
    float: left
}

.wblm-header-standard-extended .wblm-page-header .wblm-logo-area .wblm-right-from-logo-widget:last-child {
    padding-right: 0
}

.wblm-header-standard-extended .wblm-page-header .wblm-menu-area .wblm-main-menu {
    margin-left: 0
}

.wblm-header-standard-extended .wblm-page-header .wblm-menu-area .wblm-main-menu > ul > li:first-child > a {
    padding-left: 0
}

.wblm-header-standard-extended .wblm-page-header .wblm-menu-area .wblm-vertical-align-containers .wblm-position-left-inner {
    height: 100%
}

.wblm-header-standard .wblm-menu-area.wblm-menu-left .wblm-main-menu {
    width: auto;
    padding: 0 0 0 20px
}

.wblm-header-standard .wblm-menu-area.wblm-menu-left .wblm-vertical-align-containers .wblm-position-left-inner {
    height: 100%
}

.wblm-header-standard .wblm-menu-area.wblm-menu-left .wblm-vertical-align-containers .wblm-position-left:before, .wblm-header-standard .wblm-menu-area.wblm-menu-left .wblm-vertical-align-containers .wblm-position-right:before {
    display: none
}

.wblm-header-standard .wblm-menu-area.wblm-menu-left .wblm-vertical-align-containers .wblm-position-right-inner {
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    height: 100%
}

.wblm-header-standard .wblm-menu-area.wblm-menu-center .wblm-vertical-align-containers .wblm-position-center-inner {
    height: 100%
}

.wblm-header-standard .wblm-menu-area.wblm-menu-center .wblm-vertical-align-containers .wblm-position-right:before {
    display: none
}

.wblm-header-standard .wblm-menu-area.wblm-menu-center .wblm-vertical-align-containers .wblm-position-right-inner {
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    height: 100%
}

.wblm-header-standard .wblm-menu-area.wblm-menu-right .wblm-main-menu {
    width: auto
}

.wblm-header-standard .wblm-menu-area.wblm-menu-right .wblm-vertical-align-containers .wblm-position-right-inner {
    height: 100%
}

.wblm-header-top-menu .wblm-page-header .wblm-logo-area {
    margin-top: 90px;
    overflow: visible;
    z-index: 99;
    box-sizing: border-box
}

.wblm-header-top-menu .wblm-page-header .wblm-menu-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100
}

.wblm-header-top-menu .wblm-page-header .wblm-menu-area .wblm-vertical-align-containers .wblm-position-left-inner {
    height: 100%
}

.wblm-header-top-menu .wblm-page-header .wblm-sticky-header .wblm-position-left-inner {
    height: auto
}

.wblm-header-top-menu .wblm-page-header .wblm-sticky-header .wblm-position-right-inner {
    height: 100%
}

.wblm-header-top-menu.admin-bar .wblm-page-header .wblm-menu-area {
    top: 32px
}

.wblm-header-vertical-sliding .wblm-logo-wrapper {
    z-index: 100;
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 30px 10px
}

.wblm-header-vertical-sliding .wblm-logo-wrapper a {
    display: inline-block;
    position: relative;
    height: 100%
}

.wblm-header-vertical-sliding .wblm-logo-wrapper img {
    display: block;
    height: auto;
    max-height: 100%;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener {
    text-align: center
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a .wblm-vertical-sliding-opener-icon {
    position: relative;
    visibility: visible
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a .wblm-vertical-sliding-close-icon {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-icon-pack {
    font-size: 20px
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-icon-pack span, .wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-icon-pack span:before {
    display: inline-block;
    line-height: inherit
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-svg-path span > * {
    vertical-align: middle
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-hm-lines {
    position: relative;
    display: block;
    width: 23px;
    height: 17px;
    margin: 0 auto
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-hm-lines .wblm-hm-line {
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    border-radius: 12px;
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-1 {
    top: 0
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-2 {
    top: 7px
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-3 {
    bottom: 0
}

.wblm-header-vertical-sliding .wblm-vertical-menu-opener a.wblm-vertical-sliding-opener-predefined .wblm-vertical-sliding-close-icon {
    top: -8px;
    left: -5px;
    font-size: 32px
}

.wblm-header-vertical-sliding .wblm-vertical-menu-nav-holder-outer {
    width: 25.2%;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    transition: transform .3s ease;
    z-index: 1;
    box-shadow: 0 7px 10px 0 rgba(0, 0, 0, .09)
}

.wblm-header-vertical-sliding .wblm-vertical-menu-nav-holder-outer.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0)
}

.wblm-header-vertical-sliding .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder {
    background-color: #fff;
    display: table;
    height: 100%;
    width: 100%
}

.wblm-header-vertical-sliding .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder .wblm-vertical-menu-holder-nav-inner {
    display: table-cell;
    vertical-align: middle;
    padding: 100px 0
}

.wblm-header-vertical-sliding .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder nav.wblm-fullscreen-menu {
    padding: 0 5% 0 31%
}

.wblm-header-vertical-sliding .wblm-vertical-alignment-top .wblm-vertical-menu-nav-holder-outer .wblm-vertical-menu-nav-holder .wblm-vertical-menu-holder-nav-inner {
    vertical-align: middle
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu {
    position: relative;
    z-index: 101;
    text-align: left
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul {
    position: relative;
    list-style-type: none
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li {
    text-align: left
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li a {
    font-size: 15px;
    margin: 6px 0;
    text-transform: capitalize
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li a .wblm-fullscreen-menu-arrow {
    display: none
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li ul.sub_menu {
    position: relative;
    top: auto;
    left: auto;
    width: auto
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul li ul.sub_menu li a {
    left: auto
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li {
    position: relative
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > ul.sub_menu {
    top: auto
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > a {
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    padding: 7px 0;
    text-decoration: none;
    text-transform: capitalize;
    margin: 0;
    cursor: pointer;
    -webkit-transition: color .15s ease-out, text-decoration .15s ease-out, background-color .15s ease-out;
    -moz-transition: color .15s ease-out, text-decoration .15s ease-out, background-color .15s ease-out;
    transition: color .15s ease-out, text-decoration .15s ease-out, background-color .15s ease-out
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > a:before {
    content: '';
    display: block;
    opacity: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    background-color: #000;
    -o-transition: background-color .2s ease-out, opacity .2s ease-out;
    -ms-transition: background-color .2s ease-out, opacity .2s ease-out;
    -webkit-transition: background-color .2s ease-out, opacity .2s ease-out;
    -moz-transition: background-color .2s ease-out, opacity .2s ease-out;
    transition: background-color .2s ease-out, opacity .2s ease-out
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > a:after {
    display: none;
    height: 1px;
    width: 44px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li > a > span.wblm-item-inner {
    -webkit-transition: text-decoration .2s ease-out;
    -moz-transition: text-decoration .2s ease-out;
    transition: text-decoration .2s ease-out
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu > ul > li:last-child > a:after {
    content: none
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul > li.menu-item-has-children > a .plus {
    width: 14px;
    height: 14px;
    z-index: 10000;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 14px;
    font-family: ElegantIcons;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul > li.menu-item-has-children > a .plus:before {
    content: "\4c"
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul > li.menu-item-has-children.current-menu-ancestor > a .plus:before, .wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul > li.menu-item-has-children.open > a .plus:before {
    content: "\4b"
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu ul > li.menu-item-has-children a .plus {
    display: none
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu .wblm-menu-second .inner {
    position: relative;
    display: block;
    padding: 0;
    z-index: 997
}

.wblm-header-vertical-sliding nav.wblm-fullscreen-menu .wblm-menu-icon:not(.blank):not(.null) {
    padding-right: 5px
}

.wblm-header-vertical-sliding .wblm-vertical-area-widget-holder {
    width: 100%;
    z-index: 100;
    position: absolute;
    bottom: 20px;
    left: 0
}

.wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-vertical-header-widget {
    text-align: center;
    padding: 5px 0
}

.wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > a, .wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > div, .wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-vertical-header-widget > span {
    position: relative;
    display: inline-block;
    padding: 0
}

.wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-social-icon-widget-holder {
    display: block;
    text-align: center;
    padding: 5px 0
}

.wblm-header-vertical-sliding .wblm-vertical-area-widget-holder .wblm-social-icon-widget-holder:hover {
    color: #000 !important
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-social-icon-widget-holder:hover {
    color: #fff !important
}

.wblm-header-vertical-sliding .wblm-content, .wblm-header-vertical-sliding footer {
    padding-left: 79px;
    box-sizing: border-box
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area {
    position: fixed;
    width: 79px;
    top: 0;
    left: 0;
    background-color: transparent;
    height: 100%;
    z-index: 101;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area .wblm-vertical-menu-area-inner {
    position: relative;
    height: 100%
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area .wblm-vertical-area-background {
    position: fixed;
    width: 79px;
    height: 100%;
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
    border-right: 1px solid #e4e4e4;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
    -webkit-transition: opacity .3s ease, background-color .3s ease, border-color .3s ease;
    -moz-transition: opacity .3s ease, background-color .3s ease, border-color .3s ease;
    transition: opacity .3s ease, background-color .3s ease, border-color .3s ease
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area .wblm-vertical-menu-holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border-right: 1px solid #e4e4e4
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area .wblm-vertical-menu-table {
    display: table;
    width: 100%;
    height: 100%
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area .wblm-vertical-menu-table-cell {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 100px
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.wblm-with-scroll {
    overflow: hidden
}

.wblm-header-vertical-sliding.admin-bar .wblm-vertical-menu-area {
    top: 33px
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon {
    overflow: hidden
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line {
    transform: translateX(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line.wblm-burger-filler {
    transform: translateX(-101%)
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(1) {
    transition-delay: .4s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(2) {
    transition-delay: .5s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(3) {
    transition-delay: .6s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(4) {
    transition-delay: .1s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(5) {
    transition-delay: .2s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon line:nth-child(6) {
    transition-delay: .3s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line {
    transform: translateX(101%)
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line.wblm-burger-filler {
    transform: translateX(0)
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(1) {
    transition-delay: .1s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(2) {
    transition-delay: .2s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(3) {
    transition-delay: .3s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(4) {
    transition-delay: .4s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(5) {
    transition-delay: .5s
}

.wblm-header-vertical-sliding .wblm-vertical-sliding-opener-icon:hover line:nth-child(6) {
    transition-delay: .6s
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-area-background {
    background-color: #fff;
    border-color: transparent
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a {
    color: #000
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a .wblm-vertical-sliding-opener-icon {
    visibility: hidden
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a .wblm-vertical-sliding-close-icon svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a .wblm-vertical-sliding-close-icon svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a .wblm-vertical-sliding-close-icon:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-header-vertical-sliding .wblm-vertical-menu-area.opened .wblm-vertical-menu-opener a .wblm-vertical-sliding-close-icon:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-header-vertical .wblm-vertical-alignment-center .wblm-vertical-menu-outer {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 100px 0
}

.wblm-header-vertical .wblm-vertical-alignment-center .wblm-vertical-menu {
    display: table;
    width: 100%;
    height: 100%;
    min-height: 0
}

.wblm-header-vertical .wblm-vertical-alignment-center .wblm-vertical-menu > ul {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle
}

.wblm-header-vertical .wblm-vertical-menu-outer {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-header-vertical .wblm-vertical-menu {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 44% 0 30%;
    padding: 0;
    z-index: 100
}

@media only screen and (max-width: 1366px) {
    .wblm-header-vertical .wblm-vertical-menu {
        margin: 20% 0 4%
    }
}

.wblm-header-vertical .wblm-vertical-menu ul {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.wblm-header-vertical .wblm-vertical-menu ul li {
    position: relative;
    padding: 0;
    margin: 0
}

.wblm-header-vertical .wblm-vertical-menu ul li a {
    position: relative;
    display: block;
    margin: 0;
    padding: 4px 0;
    color: #000;
    font-size: 14px
}

.wblm-header-vertical .wblm-vertical-menu ul li a:hover {
    color: #000
}

.wblm-header-vertical .wblm-vertical-menu ul li a .item_outer {
    position: relative;
    display: block;
    padding: 0 15px 0 0;
    box-sizing: border-box
}

.wblm-header-vertical .wblm-vertical-menu ul li a .wblm-menu-arrow {
    position: absolute;
    font-size: 11px;
    top: 1px;
    right: 0;
    line-height: inherit;
    margin: 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.wblm-header-vertical .wblm-vertical-menu ul li a .wblm-menu-featured-icon {
    position: relative;
    top: -4px;
    left: 3px;
    color: #000;
    font-size: 12px;
    margin: 0
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-search-opener, .wblm-light-header .wblm-top-bar .wblm-search-opener, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu ul li a {
    color: #fff !important
}

.wblm-header-vertical .wblm-vertical-menu ul li a .menu_icon:not(.blank):not(.null) {
    padding: 0 5px 0 0
}

.wblm-header-vertical .wblm-vertical-menu ul li.current-menu-ancestor > a span.item_text:before, .wblm-header-vertical .wblm-vertical-menu ul li.current-menu-item > a span.item_text:before, .wblm-header-vertical .wblm-vertical-menu ul li.current_page_item > a span.item_text:before, .wblm-header-vertical .wblm-vertical-menu ul li.wblm-active-item > a span.item_text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-header-vertical .wblm-vertical-menu ul li.current-menu-ancestor > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu ul li.current-menu-item > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu ul li.current_page_item > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu ul li.wblm-active-item > a .wblm-menu-arrow {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0)
}

.wblm-header-vertical .wblm-vertical-menu ul li ul {
    padding: 3px 0 3px 5px
}

.wblm-header-vertical .wblm-vertical-menu ul li ul li.sub > a .item_outer {
    position: relative;
    display: block
}

.wblm-header-vertical .wblm-vertical-menu ul li ul li.sub > a .item_outer:after {
    position: absolute;
    top: -1px;
    right: 0;
    margin: 0;
    font-family: 'Font Awesome 5 Free';
    font-size: inherit;
    line-height: inherit;
    font-weight: 900;
    content: "\f105";
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.wblm-header-vertical .wblm-vertical-menu ul li .second {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0)
}

.wblm-header-vertical .wblm-vertical-menu ul li .second .inner {
    position: relative;
    display: block;
    padding: 0;
    z-index: 997
}

.wblm-header-vertical .wblm-vertical-menu ul li .second .inner ul li a .item_outer > span {
    position: relative
}

.wblm-header-vertical .wblm-vertical-menu ul li .second .inner ul li a .item_outer > span:before, .wblm-header-vertical .wblm-vertical-menu ul li .second .inner ul li a:hover .item_outer > span:before, .wblm-header-vertical .wblm-vertical-menu > ul > li > a span.item_text:before, .wblm-header-vertical .wblm-vertical-menu > ul > li > a:hover span.item_text:before {
    position: absolute;
    left: 0;
    height: 1px;
    background-color: currentColor;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%;
    bottom: 0;
    content: '';
    right: 0
}

.wblm-header-vertical .wblm-vertical-menu ul li .second .inner ul li a .item_outer > span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-header-vertical .wblm-vertical-menu ul li .second .inner ul li a:hover .item_outer > span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-header-vertical .wblm-vertical-menu > ul > li > a {
    font-size: 15px;
    line-height: 23px;
    box-sizing: border-box;
    font-weight: 600;
    padding: 12px 0
}

.wblm-header-vertical .wblm-vertical-menu > ul > li > a span.item_text:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-header-vertical .wblm-vertical-menu > ul > li > a:hover span.item_text:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-header-vertical .wblm-vertical-menu > ul > li > a span.item_text {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li.current-menu-ancestor > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li.current-menu-item > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li.current_page_item > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li.wblm-active-item > a .wblm-menu-arrow, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li.open > a .wblm-menu-arrow {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0)
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li .second {
    display: none
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li ul li.sub.current-menu-ancestor > a .item_outer:after, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li ul li.sub.current_page_item > a .item_outer:after, .wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-below ul li ul li.sub.open > a .item_outer:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-side .second {
    position: absolute;
    top: 0;
    width: 100%
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-side .second ul {
    position: absolute;
    top: -23px;
    left: calc(100% + 45px);
    width: 254px;
    background-color: #fff;
    padding: 25px 20px;
    margin-left: 50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-side .second ul * {
    visibility: inherit;
    -webkit-transition: visibility .2s ease;
    -moz-transition: visibility .2s ease;
    transition: visibility .2s ease
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-side .second ul.wblm-float-open {
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 900
}

.wblm-header-vertical .wblm-vertical-menu.wblm-vertical-dropdown-side .second ul ul {
    top: -25px;
    left: calc(100% + 20px);
    visibility: hidden;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.wblm-light-header.wblm-header-vertical .wblm-vertical-menu ul li a:hover, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current-menu-ancestor > a, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current-menu-item > a, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current_page_item > a, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu > ul > li.current-menu-ancestor > a, .wblm-light-header.wblm-header-vertical .wblm-vertical-menu > ul > li.wblm-active-item > a {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-dark-header.wblm-header-vertical .wblm-vertical-menu ul li a {
    color: #000 !important
}

.wblm-dark-header.wblm-header-vertical .wblm-vertical-menu ul li a:hover, .wblm-dark-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current-menu-ancestor > a, .wblm-dark-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current-menu-item > a, .wblm-dark-header.wblm-header-vertical .wblm-vertical-menu ul li ul li.current_page_item > a, .wblm-dark-header.wblm-header-vertical .wblm-vertical-menu > ul > li.current-menu-ancestor > a, .wblm-dark-header.wblm-header-vertical .wblm-vertical-menu > ul > li.wblm-active-item > a {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-header-vertical .wblm-vertical-area-widget-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 10px 0 0;
    z-index: 100
}

.wblm-header-vertical .wblm-vertical-alignment-center .wblm-vertical-area-widget-holder {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0
}

.wblm-header-vertical.admin-bar .wblm-vertical-menu-area {
    top: 32px;
    height: calc(100% - 32px)
}

.wblm-header-vertical .wblm-content, .wblm-header-vertical footer {
    padding-left: 312px;
    box-sizing: border-box
}

.wblm-header-vertical .wblm-vertical-menu-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 312px;
    height: 100%;
    padding: 90px 66px 30px;
    background-color: transparent;
    outline: 0;
    z-index: 101;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box
}

.wblm-header-vertical .wblm-vertical-menu-area.wblm-with-scroll {
    overflow: hidden
}

.wblm-header-vertical .wblm-vertical-menu-area-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%
}

.wblm-header-vertical .wblm-vertical-menu-area-inner.wblm-vertical-align-left {
    text-align: left
}

.wblm-header-vertical .wblm-vertical-menu-area-inner.wblm-vertical-align-center {
    text-align: center
}

.wblm-header-vertical .wblm-vertical-menu-area-inner.wblm-vertical-align-center .wblm-logo-wrapper img {
    margin: 0 auto
}

.wblm-header-vertical .wblm-logo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    z-index: 100
}

.wblm-header-vertical .wblm-logo-wrapper a {
    display: block;
    position: relative;
    height: 100%
}

.wblm-header-vertical .wblm-logo-wrapper img {
    display: block;
    height: auto;
    max-height: 100%;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.wblm-header-vertical .wblm-vertical-area-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 312px;
    height: 100%;
    background-color: #fff;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 1;
    -webkit-transition: opacity .5s ease, background-color .5s ease;
    -moz-transition: opacity .5s ease, background-color .5s ease;
    transition: opacity .5s ease, background-color .5s ease
}

.wblm-header-vertical.wblm-header-vertical-shadow-disable .wblm-vertical-area-background {
    box-shadow: none
}

.wblm-header-vertical.wblm-header-vertical-border-disable .wblm-vertical-area-background {
    border: none
}

.wblm-light-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-light-logo {
    opacity: 1
}

.wblm-light-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-dark-logo, .wblm-light-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-normal-logo {
    opacity: 0
}

.wblm-dark-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-dark-logo {
    opacity: 1
}

.wblm-dark-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-light-logo, .wblm-dark-header .wblm-vertical-menu-area .wblm-logo-wrapper .wblm-normal-logo {
    opacity: 0
}

.wblm-mobile-header {
    position: relative;
    display: none;
    z-index: 110
}

.wblm-mobile-header .wblm-mobile-header-inner {
    position: relative;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box
}

.wblm-mobile-header .wblm-mobile-header-inner .wblm-mobile-header-holder {
    position: relative;
    z-index: 2;
    height: 100%
}

.wblm-mobile-header .wblm-grid {
    height: 90%
}

.wblm-mobile-header .wblm-vertical-align-containers {
    padding: 0
}

.wblm-mobile-header .wblm-vertical-align-containers .wblm-position-right {
    max-width: 80%
}

.wblm-mobile-header .wblm-mobile-logo-wrapper a {
    display: block
}

.wblm-mobile-header .wblm-mobile-logo-wrapper img {
    display: block;
    height: 100%;
    width: auto
}

.wblm-mobile-header .wblm-mobile-menu-opener {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 2
}

.wblm-mobile-header .wblm-mobile-menu-opener a {
    display: table;
    height: 100%
}

.wblm-mobile-header .wblm-mobile-menu-opener a > * {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    line-height: 1em
}

.wblm-mobile-header .wblm-mobile-menu-opener a .wblm-mobile-menu-text {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    padding-right: 10px
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opened a {
    color: #000
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-icon-pack .wblm-mobile-menu-icon {
    font-size: 34px
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-icon-pack .wblm-mobile-menu-icon *, .wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-icon-pack .wblm-mobile-menu-icon :before {
    display: block;
    line-height: inherit
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-svg-path .wblm-mobile-menu-icon > * {
    vertical-align: middle
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-svg-path .wblm-mobile-menu-icon path, .wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-svg-path .wblm-mobile-menu-icon > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined {
    line-height: 1
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined .wblm-hm-lines {
    position: relative;
    display: block;
    width: 23px;
    height: 17px
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined .wblm-hm-lines .wblm-hm-line {
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    border-radius: 12px;
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-1 {
    top: 0
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-2 {
    top: 7px
}

.wblm-mobile-header .wblm-mobile-menu-opener.wblm-mobile-menu-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-3 {
    bottom: 0
}

.wblm-mobile-header .wblm-mobile-nav {
    display: none;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc
}

.wblm-mobile-header .wblm-mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.wblm-mobile-header .wblm-mobile-nav ul li {
    position: relative;
    padding: 0;
    margin: 0;
    -webkit-transform: translateZ(0)
}

.wblm-mobile-header .wblm-mobile-nav ul li a, .wblm-mobile-header .wblm-mobile-nav ul li h6 {
    position: relative;
    display: block;
    padding: 9px 0;
    margin: 0;
    font-size: 13px;
    line-height: 19px;
    color: #000;
    cursor: pointer
}

.wblm-mobile-header .wblm-mobile-nav .mobile_arrow .fa-angle-down, .wblm-sticky-header .wblm-sticky-holder.wblm-menu-left .wblm-vertical-align-containers .wblm-position-right:before {
    display: none
}

.wblm-mobile-header .wblm-mobile-nav ul li a > span, .wblm-mobile-header .wblm-mobile-nav ul li h6 > span {
    position: relative
}

.wblm-mobile-header .wblm-mobile-nav ul li a > span:before, .wblm-mobile-header .wblm-mobile-nav ul li h6 > span:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-mobile-header .wblm-mobile-nav ul li.current-menu-item > a > span:before, .wblm-mobile-header .wblm-mobile-nav ul li.current-menu-item > h6 > span:before, .wblm-mobile-header .wblm-mobile-nav ul li.wblm-active-item > a > span:before, .wblm-mobile-header .wblm-mobile-nav ul li.wblm-active-item > h6 > span:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-mobile-header .wblm-mobile-nav ul ul {
    display: none;
    margin-left: 15px
}

.wblm-mobile-header .wblm-mobile-nav ul ul li.current-menu-ancestor > a, .wblm-mobile-header .wblm-mobile-nav ul ul li.current-menu-ancestor > h6, .wblm-mobile-header .wblm-mobile-nav ul ul li.current-menu-item > a, .wblm-mobile-header .wblm-mobile-nav ul ul li.current-menu-item > h6 {
    color: #000
}

.wblm-mobile-header .wblm-mobile-nav .wblm-grid > ul > li > a, .wblm-mobile-header .wblm-mobile-nav .wblm-grid > ul > li > h6 {
    color: #000;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600
}

.wblm-mobile-header .wblm-mobile-nav .wblm-grid > ul > li.wblm-active-item > .mobile_arrow > .wblm-sub-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wblm-mobile-header .wblm-mobile-nav .mobile_arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: auto;
    padding: 9px 12px 9px 0;
    font-size: 17px;
    font-weight: 400;
    line-height: inherit;
    text-align: right;
    box-sizing: border-box
}

.wblm-mobile-header .wblm-mobile-nav .mobile_arrow:hover {
    cursor: pointer
}

.wblm-mobile-header .wblm-mobile-nav .mobile_arrow .wblm-sub-arrow {
    line-height: 1;
    -webkit-transition: transform .2s ease-in-out;
    -moz-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.wblm-mobile-header .wblm-mobile-nav li.wblm-opened > .mobile_arrow > .wblm-sub-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wblm-mobile-header .wblm-mobile-nav > .wblm-grid > ul > li:last-child > a, .wblm-mobile-header .wblm-mobile-nav > ul > li:last-child > a {
    border-bottom: none
}

.wblm-sticky-up-mobile-header .wblm-animate-mobile-header .wblm-mobile-header-inner {
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .4s ease-in-out, left .2s ease, right .2s ease;
    -moz-transition: -moz-transform .4s ease-in-out, left .2s ease, right .2s ease;
    transition: transform .4s ease-in-out, left .2s ease, right .2s ease
}

.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
}

.wblm-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    z-index: 100;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .6s ease;
    -moz-transition: -moz-transform .6s ease;
    transition: transform .6s ease
}

.wblm-sticky-header .wblm-grid {
    height: 100% !important
}

.wblm-sticky-header.header-appear {
    transform: translateY(0)
}

.admin-bar .wblm-sticky-header.header-appear {
    top: 32px
}

.wblm-sticky-header .wblm-sticky-holder {
    position: relative;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .03);
    box-sizing: border-box
}

.wblm-sticky-header .wblm-sticky-holder .wblm-logo-wrapper a {
    max-height: 70px
}

.wblm-sticky-header .wblm-sticky-holder .wblm-vertical-align-containers {
    padding: 0 40px
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-left .wblm-main-menu {
    width: auto;
    padding: 0 0 0 20px
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-left .wblm-vertical-align-containers .wblm-position-left-inner {
    height: 100%
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-left .wblm-vertical-align-containers .wblm-position-right-inner {
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    height: 100%
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-center .wblm-vertical-align-containers .wblm-position-center-inner {
    height: 100%
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-center .wblm-vertical-align-containers .wblm-position-right:before {
    display: none
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-center .wblm-vertical-align-containers .wblm-position-right-inner {
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    height: 100%
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-right .wblm-main-menu {
    width: auto
}

.wblm-sticky-header .wblm-sticky-holder.wblm-menu-right .wblm-vertical-align-containers .wblm-position-right-inner {
    height: 100%
}

.wblm-sticky-header .widget {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-top-bar {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 46px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background-color: #000;
    box-sizing: border-box;
    z-index: 111
}

.wblm-top-bar > .wblm-vertical-align-containers {
    padding: 0 40px
}

.wblm-top-bar .wblm-vertical-align-containers .wblm-position-left:before, .wblm-top-bar .wblm-vertical-align-containers .wblm-position-right:before {
    display: none
}

.wblm-top-bar .wblm-vertical-align-containers .wblm-position-left-inner, .wblm-top-bar .wblm-vertical-align-containers .wblm-position-right-inner {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-align-items: center;
    align-items: center
}

.wblm-top-bar .wblm-grid {
    height: 100%
}

.wblm-top-bar .wblm-grid .wblm-vertical-align-containers {
    padding-left: 0;
    padding-right: 0
}

.wblm-top-bar-in-grid-padding .wblm-top-bar .wblm-grid .wblm-vertical-align-containers {
    padding: 0 40px
}

.wblm-top-bar .wblm-custom-font-holder a:hover {
    color: #b1b2b2 !important
}

.wblm-top-bar .wblm-custom-font-holder a::before {
    content: normal
}

.wblm-search-opener {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0 10px;
    font-size: 16px
}

.wblm-search-opener .wblm-search-opener-wrapper .wblm-search-icon-text:before, .wblm-search-opener:hover .wblm-search-opener-wrapper .wblm-search-icon-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    background-color: currentColor;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%;
    right: 0;
    left: 0
}

.wblm-search-opener:hover .wblm-search-opener-wrapper .wblm-search-icon-text:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-search-opener .wblm-search-opener-wrapper {
    display: block
}

.wblm-search-opener .wblm-search-opener-wrapper .wblm-search-icon-text {
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box;
    font-weight: 600;
    margin-left: 6px
}

.wblm-search-opener .wblm-search-opener-wrapper .wblm-search-icon-text:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-search-opener .wblm-search-opener-wrapper > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: inherit
}

.wblm-search-opener .wblm-search-opener-wrapper > :before {
    display: block;
    line-height: inherit
}

.wblm-search-opener.wblm-search-opener-svg-path .wblm-search-opener-wrapper > * {
    vertical-align: middle
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-search-opener:hover, .wblm-light-header .wblm-top-bar .wblm-search-opener:hover {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-search-opener, .wblm-dark-header .wblm-top-bar .wblm-search-opener {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-search-opener:hover, .wblm-dark-header .wblm-top-bar .wblm-search-opener:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-search-page-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 80px
}

.wblm-search-page-holder .wblm-search-page-form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 30px
}

.wblm-search-page-holder .wblm-search-page-form .wblm-search-title {
    margin: 0 0 20px
}

.wblm-search-page-holder .wblm-search-page-form .wblm-search-label {
    display: block;
    font-size: 13px
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 10px;
    clear: both;
    border-bottom: 1px solid #ccc
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-column-left {
    display: table-cell;
    vertical-align: top
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-column-right {
    display: table-cell;
    width: 1%;
    text-align: left;
    vertical-align: top
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-field {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0 20px 0 3px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border: none;
    outline: 0;
    vertical-align: middle;
    -webkit-appearance: none;
    box-sizing: border-box
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-field::-webkit-input-placeholder {
    color: inherit
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-field:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-field::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-field:-ms-input-placeholder {
    color: inherit
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-submit:hover, .wblm-search-page-holder article.sticky .wblm-post-title a {
    color: #000
}

.wblm-search-page-holder .wblm-search-page-form .wblm-form-holder .wblm-search-submit {
    position: relative;
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-size: 18px;
    color: #000;
    background-color: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out
}

.wblm-search-page-holder article {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 30px 0;
    margin: 0;
    border-bottom: 1px solid #ccc
}

.wblm-search-page-holder article.page .wblm-post-title-area .wblm-post-info > div.wblm-post-info-category {
    display: none
}

.wblm-search-page-holder article .wblm-post-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-search-page-holder article .wblm-post-image {
    display: block;
    float: left;
    width: 130px
}

.wblm-search-page-holder article .wblm-post-image a, .wblm-search-page-holder article .wblm-post-image img {
    display: block
}

.wblm-search-page-holder article .wblm-post-title-area {
    min-height: 130px;
    padding: 0 0 0 150px
}

.wblm-search-page-holder article .wblm-post-title-area.wblm-no-thumbnail {
    padding: 0;
    min-height: inherit
}

.wblm-search-page-holder article .wblm-post-title-area .wblm-post-title-area-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box
}

.wblm-search-page-holder article .wblm-post-title-area .wblm-post-title-area-inner .wblm-post-title {
    margin: 0
}

.wblm-search-page-holder article .wblm-post-title-area .wblm-post-title-area-inner .wblm-post-excerpt {
    margin: 7px 0 0
}

.wblm-search-page-holder .wblm-blog-pagination {
    margin: 50px 0 0
}

.wblm-search-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    background-color: #000;
    z-index: 115
}

.wblm-search-cover.wblm-opener-in-top-header {
    top: auto;
    bottom: 100%
}

.wblm-search-cover .wblm-container, .wblm-search-cover .wblm-container-inner {
    height: 100%
}

.wblm-fixed-header-appear .wblm-search-cover, .wblm-mobile-header.mobile-header-appear .wblm-search-cover, .wblm-sticky-header-appear .wblm-search-cover {
    position: fixed
}

.admin-bar .wblm-mobile-header.mobile-header-appear .wblm-search-cover, .wblm-fixed-header-appear.admin-bar .wblm-search-cover, .wblm-sticky-header-appear.admin-bar .wblm-search-cover {
    top: 32px
}

.wblm-search-cover .wblm-form-holder-outer {
    display: table;
    height: 100%;
    width: 100%
}

.wblm-search-cover .wblm-form-holder {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 0 40px
}

.wblm-search-cover .wblm-form-holder-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-search-cover .wblm-container-inner .wblm-form-holder {
    padding: 0
}

.wblm-search-cover .wblm-container-inner .wblm-search-close {
    right: 0
}

.wblm-search-cover input {
    display: inline-block;
    vertical-align: middle;
    float: left;
    width: 90%;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #fff;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    outline-offset: 0
}

.wblm-search-cover input:focus {
    color: inherit
}

.wblm-search-cover input::-webkit-input-placeholder {
    color: inherit
}

.wblm-search-cover input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-search-cover input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.wblm-search-cover input:-ms-input-placeholder {
    color: inherit
}

.wblm-search-cover input[type=submit] {
    position: absolute;
    height: 1px;
    width: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(0, 0, 0, 0);
    visibility: hidden
}

.wblm-search-cover .wblm-search-close {
    position: absolute;
    top: 50%;
    right: 24px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-search-cover .wblm-search-close:hover {
    color: #000
}

.wblm-search-cover .wblm-search-close.wblm-search-close-icon-pack {
    font-size: 20px;
    line-height: 1em
}

.wblm-search-cover .wblm-search-close.wblm-search-close-icon-pack *, .wblm-search-cover .wblm-search-close.wblm-search-close-icon-pack :before {
    display: block;
    line-height: inherit
}

.wblm-search-cover .wblm-search-close.wblm-search-close-svg-path svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-search-cover .wblm-search-close.wblm-search-close-svg-path svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-search-cover .wblm-search-close.wblm-search-close-svg-path:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-search-cover .wblm-search-close.wblm-search-close-svg-path:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-search-cover.disabled input, .wblm-search-cover.disabled input:focus {
    font-weight: 400
}

.wblm-fullscreen-with-sidebar-search-holder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
    opacity: 0
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-table {
    display: table;
    width: 100%;
    height: 100%
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-cell {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    vertical-align: top;
    text-align: center;
    padding: 110px 0 0
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-inner:not(.wblm-grid) {
    width: 90%;
    margin: 0 auto
}

@media only screen and (min-width: 1501px) {
    .wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-inner:not(.wblm-grid) {
        width: 1500px;
        margin: 0 auto
    }
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-form-holder-inner {
    position: relative;
    width: 100%;
    margin: auto
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-field-holder {
    display: block;
    position: relative
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-field {
    position: relative;
    height: 100%;
    width: 100%;
    border: 0;
    padding: 0 0 0 15px;
    background: 0 0;
    outline: 0;
    font-family: inherit;
    font-size: 89px;
    color: #d9cac1;
    line-height: 1;
    letter-spacing: -.02em;
    border-left: 6px solid #d9cac1;
    font-weight: 600;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    transition: all .1s
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-field:focus {
    border-bottom: 0;
    color: #000;
    border-color: #000
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: auto;
    color: #d9cac1;
    background-color: transparent;
    border: none;
    outline: 0;
    cursor: pointer
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit.wblm-search-submit-icon-pack {
    font-size: 64px;
    line-height: 1em
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit.wblm-search-submit-svg-path path, .wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit.wblm-search-submit-svg-path > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit:hover {
    color: #000
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close {
    position: absolute;
    top: 40px;
    right: 75px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 1
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-icon-pack {
    font-size: 26px;
    line-height: 1em
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-icon-pack span, .wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-icon-pack span:before {
    display: block;
    line-height: inherit
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-svg-path svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-svg-path svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-svg-path:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close.wblm-search-close-svg-path:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.admin-bar .wblm-fullscreen-with-sidebar-search-holder .wblm-search-close {
    top: 72px
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-search-close:hover {
    color: #000
}

.wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-sidebar {
    margin: 26px 0 0
}

.wblm-search-fade .wblm-fullscreen-with-sidebar-search-holder {
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    z-index: 112;
    box-sizing: border-box
}

.wblm-search-fade .wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-table {
    background-color: #000
}

.wblm-search-fade-out.wblm-search-fade .wblm-fullscreen-with-sidebar-search-holder {
    -webkit-animation: search_fade_out .2s ease-out both;
    -moz-animation: search_fade_out .2s ease-out both;
    animation: search_fade_out .2s ease-out both
}

.wblm-search-fade-in.wblm-search-fade .wblm-fullscreen-with-sidebar-search-holder.wblm-animate {
    -webkit-animation: search_fade_in .3s ease both;
    -moz-animation: search_fade_in .3s ease both;
    animation: search_fade_in .3s ease both
}

.wblm-search-fade .wblm-fullscreen-with-sidebar-search-holder.wblm-animate .wblm-search-close {
    opacity: 1;
    visibility: visible
}

.wblm-fullscreen-search-holder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
    opacity: 0;
    cursor: url(/wp-content/themes/onea/assets/img/close-icon.svg), pointer
}

.wblm-fullscreen-search-holder .wblm-fullscreen-search-table {
    display: table;
    width: 100%;
    height: 100%
}

.wblm-fullscreen-search-holder .wblm-fullscreen-search-cell {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center
}

.wblm-fullscreen-search-holder .wblm-form-holder-inner {
    position: relative;
    width: 40%;
    margin: auto
}

.wblm-fullscreen-search-holder .wblm-form-holder-inner .wblm-line {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    border-bottom: 1px solid #000;
    -webkit-transition: all .3s .2s;
    -moz-transition: all .3s .2s;
    transition: all .3s .2s
}

.wblm-fullscreen-search-opened .wblm-fullscreen-search-holder .wblm-form-holder-inner .wblm-line {
    width: 100%;
    -webkit-transition: width .5s ease .6s;
    -moz-transition: width .5s ease .6s;
    transition: width .5s ease .6s
}

.wblm-fullscreen-search-holder .wblm-field-holder {
    display: block;
    position: relative
}

.wblm-fullscreen-search-holder .wblm-search-field {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 25px;
    color: #000;
    line-height: 2em;
    background: 0 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    letter-spacing: 0
}

.wblm-fullscreen-search-holder .wblm-search-field::-webkit-input-placeholder {
    text-transform: none;
    font-weight: 600
}

.wblm-fullscreen-search-holder .wblm-search-field:-moz-placeholder {
    text-transform: none;
    font-weight: 600;
    opacity: 1
}

.wblm-fullscreen-search-holder .wblm-search-field::-moz-placeholder {
    text-transform: none;
    font-weight: 600;
    opacity: 1
}

.wblm-fullscreen-search-holder .wblm-search-field:-ms-input-placeholder {
    text-transform: none;
    font-weight: 600
}

.wblm-fullscreen-search-holder .wblm-search-submit {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: auto;
    color: #000;
    background-color: transparent;
    border: none;
    outline: 0;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s .2s;
    -moz-transition: all .3s .2s;
    transition: all .3s .2s
}

.wblm-fullscreen-search-holder .wblm-search-submit:hover {
    color: #000
}

.wblm-fullscreen-search-opened .wblm-fullscreen-search-holder .wblm-search-submit {
    opacity: 0;
    bottom: 5px;
    -webkit-transition: color .2s ease, opacity .2s ease-out 1.1s, bottom .4s ease-out .9s;
    -moz-transition: color .2s ease, opacity .2s ease-out 1.1s, bottom .4s ease-out .9s;
    transition: color .2s ease, opacity .2s ease-out 1.1s, bottom .4s ease-out .9s
}

.wblm-fullscreen-search-holder .wblm-search-submit.wblm-search-submit-icon-pack {
    font-size: 18px;
    line-height: 1em
}

.wblm-fullscreen-search-holder .wblm-search-submit.wblm-search-submit-svg-path path, .wblm-fullscreen-search-holder .wblm-search-submit.wblm-search-submit-svg-path > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-fullscreen-search-holder .wblm-search-close {
    position: absolute;
    top: 79px;
    right: 67px;
    color: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: none
}

.admin-bar .wblm-fullscreen-search-holder .wblm-search-close {
    top: 72px
}

.wblm-fullscreen-search-holder .wblm-search-close:hover {
    color: #000
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-icon-pack {
    font-size: 25px;
    line-height: 1em
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-icon-pack *, .wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-icon-pack :before {
    display: block;
    line-height: inherit
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-svg-path svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-svg-path svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-svg-path:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-search-slide-window-top .wblm-search-submit.wblm-search-submit-svg-path path, .wblm-search-slide-window-top .wblm-search-submit.wblm-search-submit-svg-path > *, .wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-svg-path path, .wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-svg-path > * {
    stroke: currentColor;
    fill: currentColor
}

.wblm-fullscreen-search-holder .wblm-search-close.wblm-search-close-svg-path:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-search-fade .wblm-fullscreen-search-holder {
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    z-index: 112;
    box-sizing: border-box
}

.wblm-search-fade .wblm-fullscreen-search-holder .wblm-fullscreen-search-table {
    background-color: #faf0ed
}

.wblm-search-fade-out.wblm-search-fade .wblm-fullscreen-search-holder {
    -webkit-animation: search_fade_out .2s ease-out both;
    -moz-animation: search_fade_out .2s ease-out both;
    animation: search_fade_out .2s ease-out both
}

.wblm-search-fade-in.wblm-search-fade .wblm-fullscreen-search-holder.wblm-animate {
    -webkit-animation: search_fade_in .3s ease both;
    -moz-animation: search_fade_in .3s ease both;
    animation: search_fade_in .3s ease both
}

.wblm-search-fade .wblm-fullscreen-search-holder.wblm-animate .wblm-search-close {
    opacity: 1;
    visibility: visible
}

@-webkit-keyframes search_fade_out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes search_fade_out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@-webkit-keyframes search_fade_in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

@keyframes search_fade_in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

.wblm-slide-from-header-bottom-holder {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    display: none;
    padding: 25px;
    margin: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    overflow: hidden;
    z-index: 9999;
    box-sizing: border-box
}

.wblm-fixed-header-appear .wblm-slide-from-header-bottom-holder, .wblm-mobile-header.mobile-header-appear .wblm-slide-from-header-bottom-holder, .wblm-sticky-header-appear .wblm-slide-from-header-bottom-holder {
    position: fixed
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border: 1px solid #ccc;
    box-sizing: border-box
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-field, .wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    margin: 0;
    height: 44px;
    line-height: 42px;
    color: #000;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-field {
    width: calc(100% - 40px);
    padding: 0 10px 0 20px;
    font-family: inherit
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-field:focus {
    color: #000
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit {
    width: 40px;
    padding: 0 12px 0 0;
    cursor: pointer
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit:hover {
    color: #000
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-icon-pack {
    font-size: 15px;
    line-height: 1em
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-icon-pack *, .wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-icon-pack :before {
    display: block;
    line-height: inherit
}

.wblm-slide-from-header-bottom-holder .wblm-form-holder .wblm-search-submit.wblm-search-submit-svg-path > * {
    vertical-align: middle
}

.wblm-search-slides-from-window-top .wblm-fixed-wrapper.fixed, .wblm-search-slides-from-window-top .wblm-mobile-header, .wblm-search-slides-from-window-top .wblm-page-header, .wblm-search-slides-from-window-top .wblm-top-bar {
    top: 0;
    -webkit-transition: top .25s ease-out;
    -moz-transition: top .25s ease-out;
    transition: top .25s ease-out
}

.wblm-search-slides-from-window-top.wblm-search-open .wblm-fixed-wrapper.fixed, .wblm-search-slides-from-window-top.wblm-search-open .wblm-mobile-header, .wblm-search-slides-from-window-top.wblm-search-open .wblm-page-header, .wblm-search-slides-from-window-top.wblm-search-open .wblm-top-bar {
    top: 50px
}

.wblm-search-slides-from-window-top.wblm-search-open .wblm-search-slide-window-top {
    height: 50px
}

.wblm-search-slides-from-window-top.wblm-search-open .wblm-sticky-header.header-appear, .wblm-search-slides-from-window-top.wblm-search-open.wblm-sticky-up-mobile-header .wblm-animate-mobile-header .wblm-mobile-header-inner {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px)
}

.wblm-search-slides-from-window-top.wblm-search-open.admin-bar .wblm-sticky-header.header-appear, .wblm-search-slides-from-window-top.wblm-search-open.admin-bar.wblm-sticky-up-mobile-header .wblm-animate-mobile-header .wblm-mobile-header-inner {
    -webkit-transform: translateY(82px);
    -moz-transform: translateY(82px);
    transform: translateY(82px)
}

.wblm-search-slide-window-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
    color: #fff;
    background-color: #000;
    overflow: hidden;
    z-index: 201;
    -webkit-transition: top .25s ease-out, height .25s ease-out;
    -moz-transition: top .25s ease-out, height .25s ease-out;
    transition: top .25s ease-out, height .25s ease-out
}

.admin-bar .wblm-search-slide-window-top {
    top: 32px
}

.wblm-search-slide-window-top .wblm-grid .wblm-search-form-inner {
    padding: 0
}

.wblm-search-slide-window-top .wblm-search-form-inner {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box
}

.wblm-search-slide-window-top .wblm-search-submit {
    color: #fff;
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 40px
}

.wblm-search-slide-window-top .wblm-search-submit.wblm-search-submit-icon-pack {
    font-size: 14px;
    line-height: 1
}

.wblm-search-slide-window-top .wblm-search-submit.wblm-search-submit-icon-pack > * {
    color: inherit;
    font-size: inherit;
    line-height: inherit
}

.wblm-search-slide-window-top .wblm-search-submit.wblm-search-submit-svg-path > * {
    vertical-align: middle
}

.wblm-search-slide-window-top .wblm-search-close {
    color: #fff;
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 40px
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-icon-pack {
    font-size: 20px;
    line-height: 1em
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-icon-pack span, .wblm-search-slide-window-top .wblm-search-close.wblm-search-close-icon-pack span:before {
    display: block;
    line-height: inherit
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-svg-path svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-svg-path svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-svg-path:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-search-slide-window-top .wblm-search-close.wblm-search-close-svg-path:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-search-slide-window-top .wblm-swt-search-field {
    padding: 0 30px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    color: #fff;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: none;
    box-sizing: border-box
}

.wblm-side-menu-button-opener, .wblm-side-menu-button-opener .wblm-side-menu-icon, .wblm-side-menu-button-opener .wblm-side-menu-title {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.wblm-search-slide-window-top .wblm-swt-search-field:focus {
    color: #fff
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener, .wblm-light-header .wblm-top-bar .wblm-side-menu-button-opener {
    color: #fff !important
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener.opened, .wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener:hover, .wblm-light-header .wblm-top-bar .wblm-side-menu-button-opener.opened, .wblm-light-header .wblm-top-bar .wblm-side-menu-button-opener:hover {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener, .wblm-dark-header .wblm-top-bar .wblm-side-menu-button-opener {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener.opened, .wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-side-menu-button-opener:hover, .wblm-dark-header .wblm-top-bar .wblm-side-menu-button-opener.opened, .wblm-dark-header .wblm-top-bar .wblm-side-menu-button-opener:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-side-menu-button-opener {
    margin: 0 0 0 2px
}

.wblm-side-menu-button-opener .wblm-side-menu-title {
    margin: 0 8px 0 0;
    color: currentColor
}

.wblm-side-menu-button-opener.opened, .wblm-side-menu-button-opener:hover {
    color: #000
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-icon-pack .wblm-side-menu-icon {
    font-size: 34px
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-icon-pack .wblm-side-menu-icon *, .wblm-side-menu-button-opener.wblm-side-menu-button-opener-icon-pack .wblm-side-menu-icon :before {
    display: block;
    line-height: inherit
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path {
    overflow: hidden
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path .wblm-side-menu-icon > * {
    vertical-align: middle
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path .wblm-side-menu-icon path, .wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path .wblm-side-menu-icon > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line {
    transform: translateX(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line.wblm-burger-filler {
    transform: translateX(-101%)
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(1) {
    transition-delay: .4s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(2) {
    transition-delay: .5s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(3) {
    transition-delay: .6s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(4) {
    transition-delay: .1s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(5) {
    transition-delay: .2s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path line:nth-child(6) {
    transition-delay: .3s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line {
    transform: translateX(101%)
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line.wblm-burger-filler {
    transform: translateX(0)
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(1) {
    transition-delay: .1s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(2) {
    transition-delay: .2s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(3) {
    transition-delay: .3s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(4) {
    transition-delay: .4s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(5) {
    transition-delay: .5s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-svg-path:hover line:nth-child(6) {
    transition-delay: .6s
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined {
    line-height: 1
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined .wblm-hm-lines {
    position: relative;
    display: block;
    width: 23px;
    height: 17px
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined .wblm-hm-lines .wblm-hm-line {
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    border-radius: 12px;
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-1 {
    top: 0
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-2 {
    top: 7px
}

.wblm-side-menu-button-opener.wblm-side-menu-button-opener-predefined .wblm-hm-lines .wblm-hm-line.wblm-line-3 {
    bottom: 0
}

.wblm-side-menu {
    position: fixed;
    top: 0;
    right: -485px;
    width: 485px;
    height: 100%;
    min-height: 100%;
    padding: 6% 65px 36px;
    background-color: #fff;
    text-align: left;
    overflow: hidden;
    visibility: hidden;
    z-index: 9999;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box;
    box-shadow: -3px 0 3px rgba(0, 0, 0, .04);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu a:hover {
    color: #3d3d3d
}

.wblm-side-menu a.wblm-close-side-menu {
    position: absolute;
    top: 33px;
    right: 55px;
    display: block;
    z-index: 1000;
    color: #231f20;
    font-size: 34px
}

.wblm-header-top-enabled .wblm-side-menu a.wblm-close-side-menu {
    top: 73px;
    right: 60px
}

.wblm-side-menu a.wblm-close-side-menu:hover {
    color: #000
}

.admin-bar .wblm-side-menu a.wblm-close-side-menu {
    top: 68px
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-icon-pack {
    font-size: 27px
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-icon-pack *, .wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-icon-pack :before {
    display: block;
    line-height: inherit
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path {
    height: 15px
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path path, .wblm-side-menu a.wblm-close-side-menu.wblm-close-side-menu-svg-path > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-right-side-menu-opened .wblm-fixed-wrapper.fixed, .wblm-right-side-menu-opened .wblm-sticky-header, .wblm-right-side-menu-opened .wblm-wrapper, .wblm-right-side-menu-opened .mobile-header-appear .wblm-mobile-header-inner, .wblm-right-side-menu-opened footer.wblm-footer-uncover {
    left: 0
}

.wblm-side-menu-slide-from-right .wblm-wrapper {
    background-color: #fff;
    position: relative;
    z-index: 1000;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu-slide-from-right .wblm-wrapper .wblm-cover {
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, .3);
    -webkit-transition: opacity .2s ease-in-out, z-index .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, z-index .2s ease-in-out;
    transition: opacity .2s ease-in-out, z-index .2s ease-in-out
}

.wblm-side-menu-slide-from-right .wblm-fixed-wrapper.fixed, .wblm-side-menu-slide-from-right .wblm-sticky-header, .wblm-side-menu-slide-from-right footer.wblm-footer-uncover {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu-slide-from-right.wblm-right-side-menu-opened .wblm-cover {
    z-index: 1002;
    opacity: 1
}

.wblm-side-menu-slide-from-right.wblm-right-side-menu-opened .wblm-side-menu {
    right: 0;
    visibility: visible
}

.wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened .wblm-fixed-wrapper.fixed, .wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened .wblm-mobile-header-inner, .wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened .wblm-sticky-header, .wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened .wblm-wrapper, .wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened .mobile-header-appear .wblm-mobile-header-inner, .wblm-side-area-uncovered-from-content.wblm-right-side-menu-opened footer.wblm-footer-uncover {
    left: -485px
}

.wblm-side-area-uncovered-from-content .wblm-side-menu {
    right: 0;
    z-index: 90
}

.wblm-side-area-uncovered-from-content .wblm-fixed-wrapper.fixed, .wblm-side-area-uncovered-from-content .wblm-sticky-header {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu-slide-with-content {
    overflow-x: hidden;
    position: relative;
    left: 0;
    -webkit-overflow-scrolling: auto !important;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu-slide-with-content .wblm-side-menu {
    visibility: visible
}

.wblm-side-menu-slide-with-content .wblm-fixed-wrapper.fixed, .wblm-side-menu-slide-with-content .wblm-mobile-header-inner, .wblm-side-menu-slide-with-content .wblm-sticky-header, .wblm-side-menu-slide-with-content .wblm-wrapper, .wblm-side-menu-slide-with-content footer.wblm-footer-uncover {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -moz-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1)
}

.wblm-side-menu-slide-with-content.wblm-side-menu-open .wblm-fixed-wrapper, .wblm-side-menu-slide-with-content.wblm-side-menu-open .wblm-mobile-header-inner, .wblm-side-menu-slide-with-content.wblm-side-menu-open .wblm-sticky-header, .wblm-side-menu-slide-with-content.wblm-side-menu-open .wblm-wrapper, .wblm-side-menu-slide-with-content.wblm-side-menu-open footer.wblm-footer-uncover {
    left: -485px
}

.wblm-side-menu-slide-with-content.wblm-side-menu-open .wblm-side-menu {
    right: 0
}

@media only screen and (max-width: 1440px) {
    .wblm-side-menu-slide-from-right .wblm-side-menu {
        padding: 80px 65px 36px
    }
}

@media only screen and (max-width: 1280px) {
    .wblm-side-menu-slide-from-right .wblm-side-menu {
        padding: 60px 42px 30px 41px
    }
}

.wblm-has-skewed-section-effect {
    position: relative;
    z-index: 100
}

.wblm-skewed-section-effect > svg {
    vertical-align: middle
}

.wblm-skewed-section-effect > svg > * {
    fill: currentColor
}

.wblm-top-skewed-section-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    -webkit-transform: rotate(-180deg) translateY(99%);
    -moz-transform: rotate(-180deg) translateY(99%);
    transform: rotate(-180deg) translateY(99%)
}

.wblm-bottom-skewed-section-effect, .wblm-header-skewed-section-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    -webkit-transform: translateY(99%);
    -moz-transform: translateY(99%);
    transform: translateY(99%)
}

.wblm-title-skewed-section-effect {
    position: relative
}

.wblm-title-skewed-section-effect.wblm-title-inset-section-effect {
    z-index: 101;
    -webkit-transform: rotate(180deg) translateY(100%);
    -moz-transform: rotate(180deg) translateY(100%);
    transform: rotate(180deg) translateY(100%)
}

@media only screen and (max-width: 1024px) {
    .wblm-disable-header-ss-on-mobile .wblm-header-skewed-section-effect {
        display: none
    }
}

@media only screen and (max-width: 680px) {
    .wblm-disable-ss-on-mobile .vc_row .wblm-skewed-section-effect, .wblm-disable-title-ss-on-mobile .wblm-title-skewed-section-effect {
        display: none
    }
}

.wblm-subscribe-popup-holder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 115;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out .1s, visibility 0s .4s;
    -moz-transition: opacity .2s ease-out .1s, visibility 0s .4s;
    transition: opacity .2s ease-out .1s, visibility 0s .4s
}

.wblm-subscribe-popup-holder .wblm-sp-shader {
    position: fixed;
    top: 0;
    left: 0;
    width: 110%;
    height: 130%;
    z-index: 1;
    -webkit-transform-style: flat;
    transform-style: flat;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .65);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0)
}

.wblm-subscribe-popup-holder .wblm-sp-table {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgba(246, 246, 246, .7)
}

.wblm-subscribe-popup-holder .wblm-sp-table-cell {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center
}

.wblm-subscribe-popup-holder .wblm-sp-close-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.wblm-subscribe-popup-holder .wblm-sp-inner {
    display: table;
    margin: 0 auto;
    width: 45%;
    min-width: 860px;
    min-height: 420px;
    box-sizing: border-box;
    opacity: 0;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .07);
    -webkit-transition: transform .3s cubic-bezier(.06, .47, .38, .99), opacity .3s cubic-bezier(.06, .47, .38, .99);
    -moz-transition: transform .3s cubic-bezier(.06, .47, .38, .99), opacity .3s cubic-bezier(.06, .47, .38, .99);
    transition: transform .3s cubic-bezier(.06, .47, .38, .99), opacity .3s cubic-bezier(.06, .47, .38, .99);
    -webkit-transform: scale(.6);
    -moz-transform: scale(.6);
    transform: scale(.6)
}

@media only screen and (max-width: 1440px) {
    .wblm-subscribe-popup-holder .wblm-sp-inner {
        width: 70%
    }
}

.wblm-subscribe-popup-holder .wblm-sp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    color: #000
}

.wblm-subscribe-popup-holder .wblm-sp-close svg {
    visibility: visible;
    height: 16px;
    width: 17px
}

.wblm-subscribe-popup-holder .wblm-sp-close svg line {
    stroke-dashoffset: 40px;
    stroke-dasharray: 20px;
    stroke-linecap: butt;
    -webkit-transition: all 0 linear;
    -moz-transition: all 0 linear;
    transition: all 0 linear
}

.wblm-subscribe-popup-holder .wblm-sp-close:hover svg line {
    stroke-dashoffset: 0;
    stroke-dasharray: 20px;
    -webkit-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    -moz-transition: all .65s cubic-bezier(.28, .38, 0, .81);
    transition: all .65s cubic-bezier(.28, .38, 0, .81)
}

.wblm-subscribe-popup-holder .wblm-sp-close:hover svg line:nth-of-type(2) {
    transition-delay: .4s
}

.wblm-subscribe-popup-holder .wblm-sp-content-container {
    display: block;
    background: #fff;
    vertical-align: middle;
    padding: 30px 100px 60px;
    text-align: left;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .03)
}

.wblm-image-gallery.wblm-has-shadow .wblm-ig-image-inner, .wblm-image-gallery.wblm-has-shadow.wblm-ig-carousel-type .wblm-ig-image, .wblm-image-gallery.wblm-has-shadow.wblm-ig-slider-type .wblm-ig-image, .wblm-image-with-text-holder.wblm-has-shadow .wblm-iwt-image img, .wblm-portfolio-list-holder.wblm-pl-gallery-overlay.wblm-pl-has-shadow .wblm-pl-item-inner, .wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom.wblm-pl-has-shadow .wblm-pl-item-inner, .wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-right.wblm-pl-has-shadow .wblm-pl-item-inner, .wblm-portfolio-list-holder.wblm-pl-has-shadow article .wblm-pli-image, .wblm-single-image-holder.wblm-has-shadow .wblm-si-inner {
    box-shadow: 3px 3px 10px 0 rgba(243, 228, 229, .75)
}

.wblm-subscribe-popup-holder .wblm-sp-background {
    display: block;
    width: 100%;
    min-height: 365px;
    background-size: cover;
    box-sizing: border-box;
    border: 10px solid #fff
}

.wblm-subscribe-popup-holder .wblm-sp-content-text {
    position: absolute;
    top: 35%;
    left: 6%;
    width: 47%;
    text-align: center
}

.wblm-subscribe-popup-holder .wblm-sp-title {
    position: relative;
    margin-bottom: 10px;
    margin-top: 6px;
    font-family: Poppins, sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: #000
}

.wblm-subscribe-popup-holder .wblm-sp-subtitle {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.wblm-subscribe-popup-holder .wpcf7 {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center
}

.wblm-subscribe-popup-holder .wpcf7 input:not(.wpcf7-submit) {
    text-align: center;
    margin-bottom: 40px
}

.wblm-subscribe-popup-holder .wblm-sp-prevent {
    text-align: center;
    margin-top: 20px
}

.wblm-subscribe-popup-holder .wblm-sp-prevent-inner > * {
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    cursor: pointer
}

.wblm-subscribe-popup-holder .wblm-sp-prevent-input {
    margin: 0 5px 0 0;
    width: 14px;
    height: 14px;
    border: 1px solid #000;
    overflow: hidden;
    box-sizing: border-box
}

.wblm-subscribe-popup-holder .wblm-sp-prevent-input svg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .1s ease;
    -moz-transition: opacity .1s ease;
    transition: opacity .1s ease
}

.wblm-subscribe-popup-holder .wblm-sp-prevent-input.wblm-sp-prevent-clicked svg {
    opacity: 1
}

.wblm-subscribe-popup-holder .wblm-sp-prevent-label {
    font-size: 12px !important;
    display: inline-block !important;
    line-height: 14px !important;
    font-family: Montserrat, sans-serif !important;
    text-transform: initial !important;
    font-weight: 300 !important;
    color: #000 !important
}

.wblm-sp-opened .wblm-subscribe-popup-holder {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.wblm-sp-opened .wblm-subscribe-popup-holder .wblm-sp-inner {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .8s cubic-bezier(.26, .63, 0, .96);
    -moz-transition: transform .8s cubic-bezier(.26, .63, 0, .96);
    transition: transform .8s cubic-bezier(.26, .63, 0, .96)
}

.wblm-title-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 144px;
    background-color: #f6f6f6;
    background-position: center 0;
    background-repeat: no-repeat;
    z-index: 101
}

.wblm-title-holder.wblm-title-full-width .wblm-grid {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 0 40px;
    box-sizing: border-box
}

.wblm-title-holder.wblm-bg-responsive {
    height: auto !important
}

.wblm-title-holder.wblm-bg-responsive .wblm-title-image {
    display: block
}

.wblm-title-holder.wblm-bg-responsive .wblm-title-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-title-holder.wblm-bg-parallax {
    background-attachment: fixed
}

.wblm-title-holder .wblm-title-image {
    display: none
}

.wblm-title-holder .wblm-title-image img {
    display: block;
    width: 100%
}

.wblm-title-holder .wblm-title-wrapper {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-title-holder .wblm-title-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

.wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    color: #000;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .145em;
    line-height: 3em
}

.wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs.wblm-has-inline-style a {
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs.wblm-has-inline-style a:hover {
    color: inherit;
    opacity: .9
}

.wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs a, .wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: inherit
}

.wblm-title-holder.wblm-breadcrumbs-type .wblm-breadcrumbs a:hover {
    color: #000
}

.wblm-title-holder.wblm-centered-type .wblm-title-inner {
    text-align: center
}

.wblm-title-holder.wblm-centered-type .wblm-page-title {
    margin: 0
}

.wblm-title-holder.wblm-centered-type .wblm-page-subtitle {
    display: block;
    margin: 10px auto 0;
    box-sizing: border-box;
    max-width: 480px;
    text-align: center
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs-info, .wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-title-info {
    vertical-align: middle
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-title-info {
    display: block
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs-info {
    display: block;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .145em;
    line-height: 3em
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-page-title {
    margin: 0
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-page-subtitle {
    margin: 5px 0 0;
    max-width: 480px
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs {
    color: #000;
    font-weight: 500
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs.wblm-has-inline-style a {
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs.wblm-has-inline-style a:hover {
    color: inherit;
    opacity: .9
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs a, .wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: inherit
}

.wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs a:hover {
    color: #000
}

.wblm-title-holder.wblm-standard-type .wblm-page-title {
    margin: 0
}

.wblm-title-holder.wblm-standard-type .wblm-page-subtitle {
    margin: 10px 0 0;
    max-width: 480px
}

.wblm-author-info-widget {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-author-info-widget .wblm-aiw-image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    overflow: hidden
}

.wblm-author-info-widget .wblm-aiw-image img {
    display: block
}

.wblm-author-info-widget .wblm-aiw-title {
    margin: 33px 0 0
}

.wblm-author-info-widget .wblm-aiw-text {
    display: block;
    margin: 21px 0 0
}

.wblm-icon-widget-holder, .wblm-icon-widget-holder > *, .widget.wblm-image-gallery-widget {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.widget.wblm-custom-font-widget, .widget.wblm-custom-font-widget > * {
    margin: 0
}

.wblm-icon-widget-holder {
    margin: 0
}

.wblm-icon-widget-holder > * {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

.wblm-icon-widget-holder .wblm-icon-text {
    padding: 0 0 0 10px
}

.wblm-icon-widget-holder .wblm-icon-text.wblm-no-icon {
    padding: 0
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-icon-widget-holder {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-icon-widget-holder:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-icon-widget-holder {
    color: #fff !important
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-icon-widget-holder:hover {
    color: rgba(255, 255, 255, .9) !important
}

.widget.wblm-image-gallery-widget {
    width: 100%
}

.widget.wblm-image-gallery-widget img {
    display: block;
    width: 100%
}

.widget.wblm-search-post-type-widget, .widget.wblm-search-post-type-widget .wblm-search-post-type {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.widget.wblm-search-post-type-widget {
    line-height: 0
}

.widget.wblm-search-post-type-widget .wblm-post-type-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    background-color: #fff;
    z-index: 99
}

.widget.wblm-search-post-type-widget .wblm-post-type-search-results ul {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 10px 20px;
    line-height: 0;
    box-sizing: border-box
}

.widget.wblm-search-post-type-widget .wblm-post-type-search-results ul li {
    display: block;
    width: 100%
}

.widget.wblm-search-post-type-widget .wblm-search-icon, .widget.wblm-search-post-type-widget .wblm-search-loading {
    position: absolute;
    right: 20px;
    top: calc(50% - 9px);
    font-size: 18px;
    color: #000;
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.widget.wblm-search-post-type-widget .wblm-search-icon.wblm-hidden, .widget.wblm-search-post-type-widget .wblm-search-loading.wblm-hidden {
    opacity: 0
}

.widget.wblm-separator-widget {
    margin: 0 !important
}

.wblm-social-icon-widget-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-social-icon-widget-holder.wblm-predefined-style {
    background-color: transparent;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 5em;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out
}

.wblm-social-icon-widget-holder.wblm-predefined-style:hover {
    background-color: #f4f4f4;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out
}

.wblm-social-icon-widget-holder.wblm-predefined-style:hover .wblm-social-icon-widget {
    color: #000
}

.wblm-social-icon-widget-holder.wblm-predefined-style .wblm-social-icon-widget {
    font-size: 14px;
    display: block;
    text-align: center
}

.wblm-social-icon-widget-holder .wblm-social-icon-widget {
    color: inherit;
    line-height: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-social-icon-widget-holder {
    color: #000 !important
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-social-icon-widget-holder:hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-social-icon-widget-holder {
    color: #fff !important
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-social-icon-widget-holder:hover {
    color: rgba(255, 255, 255, .9) !important
}

.wblm-social-icons-group-widget.wblm-square-icons .wblm-social-icon-widget-holder {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 7px;
    font-size: 17px;
    color: #fff;
    background-color: #000
}

.wblm-social-icons-group-widget.wblm-square-icons .wblm-social-icon-widget-holder:hover {
    color: #000;
    background-color: #000
}

.wblm-social-icons-group-widget.wblm-square-icons .wblm-social-icon-widget-holder .wblm-social-icon-widget {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%)
}

.wblm-social-icons-group-widget.wblm-square-icons.wblm-light-skin .wblm-social-icon-widget-holder {
    color: #000;
    background-color: #fff
}

.wblm-social-icons-group-widget.wblm-square-icons.wblm-light-skin .wblm-social-icon-widget-holder:hover {
    color: #000;
    background-color: #000
}

.wblm-social-icons-group-widget .wblm-social-icon-widget-holder {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
    text-align: center
}

.wblm-social-icons-group-widget .wblm-social-icon-widget-holder:first-child {
    margin-left: 0
}

.wblm-social-icons-group-widget .wblm-social-icon-widget-holder:last-child {
    margin-right: 0
}

.wblm-widget-sticky-sidebar {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: 0 0 !important
}

.wblm-portfolio-single-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 50px
}

.wblm-portfolio-single-holder .wblm-ps-image-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-portfolio-single-holder .wblm-ps-image-holder .wblm-ps-image:not(.wblm-item-space) {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-portfolio-single-holder .wblm-ps-image-holder .wblm-ps-image a, .wblm-portfolio-single-holder .wblm-ps-image-holder .wblm-ps-image img {
    position: relative;
    display: block
}

.wblm-portfolio-single-holder .wblm-ps-content-item {
    font-size: 16px;
    line-height: 26px
}

.wblm-portfolio-single-holder .wblm-ps-info-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 20px
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item a, .wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item p {
    margin: 0;
    color: #464646
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item h4, .wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item p {
    display: inline-block
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item.wblm-ps-social-share .wblm-social-title {
    font-size: 18px;
    line-height: 1.33em;
    color: #000
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-item.wblm-ps-social-share ul {
    line-height: 1.33em
}

.wblm-portfolio-single-holder .wblm-ps-info-holder .wblm-ps-info-title {
    margin: 0 4px 0 0
}

.wblm-portfolio-single-holder .wblm-ps-image-holder.wblm-grid-masonry-list .wblm-ps-image a {
    height: 100%
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-image-holder {
    width: 100%;
    margin: 0 0 35px
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-image-holder .wblm-ps-image {
    float: left
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-image-holder .wblm-ps-image a {
    overflow: hidden;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-image-holder .wblm-ps-image a img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-image-holder .wblm-ps-image a:hover img {
    transform: scale(1.06) translate3d(-3%, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-ps-info-holder {
    padding: 45px 40px 104px;
    box-sizing: border-box;
    background-color: #f7f8f9
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-grid-col-3 {
    width: 27%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-grid-col-3 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-grid-col-9 {
    width: 71%;
    margin-left: 2%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-gallery-layout .wblm-grid-col-9 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-huge-images-layout {
    padding: 0 4%;
    box-sizing: border-box
}

.wblm-portfolio-single-holder.wblm-ps-huge-images-layout .wblm-ps-image-holder {
    margin: 0 0 40px
}

.wblm-portfolio-single-holder.wblm-ps-huge-images-layout .wblm-ps-image-holder .wblm-ps-image {
    margin: 0 0 30px
}

.wblm-portfolio-single-holder.wblm-ps-huge-images-layout .wblm-ps-image-holder .wblm-ps-image:last-child {
    margin: 0
}

@media only screen and (max-width: 1200px) {
    .wblm-portfolio-single-holder.wblm-ps-huge-images-layout {
        padding: 0 40px
    }
}

@media only screen and (max-width: 768px) {
    .wblm-portfolio-single-holder.wblm-ps-huge-images-layout {
        padding: 0 30px
    }
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-ps-image-holder {
    margin: 0 0 65px
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-ps-image-holder .wblm-ps-image:not(:last-child) {
    padding-bottom: 20px
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-ps-info-holder, .wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-ps-info-holder, .wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-ps-info-holder {
    padding: 45px 40px 104px;
    background-color: #f7f8f9;
    box-sizing: border-box
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-ps-image-holder .wblm-ps-image img {
    width: 100%
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-grid-col-3 {
    width: 27%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-grid-col-3 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-grid-col-9 {
    width: 71%;
    margin-left: 2%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-images-layout .wblm-grid-col-9 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-ps-image-holder {
    width: 100%;
    margin: 0 0 35px
}

.wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-grid-col-3 {
    width: 27%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-grid-col-3 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-grid-col-9 {
    width: 71%;
    margin-left: 2%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-masonry-layout .wblm-grid-col-9 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-ps-image-holder {
    margin: 0 0 65px
}

.wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-ps-image-holder .wblm-ps-image-inner {
    visibility: hidden
}

.wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-ps-image-holder .wblm-ps-image img {
    width: 100%
}

.wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-grid-col-3 {
    width: 27%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-grid-col-3 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-grid-col-9 {
    width: 71%;
    margin-left: 2%
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-image-holder, .wblm-portfolio-single-holder.wblm-ps-small-slider-layout .wblm-ps-image-holder .wblm-ps-image img {
    width: 100%
}

@media only screen and (max-width: 1024px) {
    .wblm-portfolio-single-holder.wblm-ps-slider-layout .wblm-grid-col-9 {
        width: 100%;
        margin: 0
    }
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-image-holder .wblm-ps-image {
    float: left
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-image-holder .wblm-ps-image .wblm-ps-image-holder a {
    overflow: hidden;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-image-holder .wblm-ps-image .wblm-ps-image-holder a img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-image-holder .wblm-ps-image .wblm-ps-image-holder a:hover img {
    transform: scale(1.06) translate3d(-3%, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-single-holder.wblm-ps-small-gallery-layout .wblm-ps-content-item, .wblm-portfolio-single-holder.wblm-ps-small-images-layout .wblm-ps-image-holder .wblm-ps-image {
    margin: 0 0 30px
}

.wblm-portfolio-single-holder.wblm-ps-small-images-layout .wblm-ps-image-holder .wblm-ps-image:last-child {
    margin: 0
}

.wblm-portfolio-single-holder.wblm-ps-small-images-layout .wblm-ps-content-item {
    margin: 0 0 56px
}

.wblm-portfolio-single-holder.wblm-ps-small-masonry-layout .wblm-ps-content-item, .wblm-portfolio-single-holder.wblm-ps-small-slider-layout .wblm-ps-content-item {
    margin: 0 0 30px
}

.wblm-portfolio-single-holder.wblm-ps-small-slider-layout .wblm-ps-image-holder .wblm-ps-image-inner {
    visibility: hidden
}

.wblm-ps-navigation {
    position: relative;
    display: table;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    margin: 63px 0 0;
    clear: both;
    box-sizing: border-box
}

.wblm-ps-full-width-custom-layout .wblm-ps-navigation {
    padding: 0 40px
}

.wblm-ps-navigation .wblm-ps-back-btn {
    position: absolute;
    top: 44%;
    left: 50%;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.wblm-ps-navigation .wblm-ps-back-btn a {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
    width: 26px
}

.wblm-ps-navigation .wblm-ps-back-btn a:hover {
    color: rgba(0, 0, 0, .7)
}

.wblm-ps-navigation .wblm-ps-back-btn a span {
    float: left;
    display: block;
    margin: 2px;
    line-height: inherit;
    height: 7px;
    width: 7px;
    background-color: currentColor
}

.wblm-ps-navigation .wblm-ps-next, .wblm-ps-navigation .wblm-ps-prev {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 49%;
    padding: 0;
    box-sizing: border-box
}

.wblm-ps-navigation .wblm-ps-next a, .wblm-ps-navigation .wblm-ps-prev a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 29px;
    line-height: 29px
}

.wblm-ps-navigation .wblm-ps-next a .wblm-ps-nav-mark, .wblm-ps-navigation .wblm-ps-prev a .wblm-ps-nav-mark {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-ps-navigation .wblm-ps-next a .wblm-ps-nav-mark:before, .wblm-ps-navigation .wblm-ps-prev a .wblm-ps-nav-mark:before {
    display: block;
    line-height: inherit
}

.wblm-ps-navigation .wblm-ps-prev a .wblm-ps-nav-mark {
    left: 0
}

.wblm-ps-navigation .wblm-ps-next {
    text-align: right
}

.wblm-ps-navigation .wblm-ps-next a .wblm-ps-nav-mark {
    right: 0
}

.wblm-ps-related-posts-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 30px 0 0;
    clear: both
}

.wblm-ps-related-posts-holder .wblm-ps-related-posts {
    margin: 0 -15px
}

.wblm-ps-related-posts-holder .wblm-ps-related-post {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box
}

@media only screen and (max-width: 1024px) {
    .wblm-ps-related-posts-holder .wblm-ps-related-post {
        width: 50%
    }

    .wblm-ps-related-posts-holder .wblm-ps-related-post:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width: 680px) {
    .wblm-ps-related-posts-holder .wblm-ps-related-post {
        width: 100%
    }
}

.wblm-ps-related-posts-holder .wblm-ps-related-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-ps-related-posts-holder .wblm-ps-related-image a, .wblm-ps-related-posts-holder .wblm-ps-related-image img {
    display: block
}

.wblm-portfolio-category-list-holder, .wblm-portfolio-category-list-holder article .wblm-pcl-item-inner, .wblm-portfolio-category-list-holder article .wblm-pcli-image, .wblm-ps-related-posts-holder .wblm-ps-related-text {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-ps-related-posts-holder .wblm-ps-related-text {
    margin: 20px 0 0
}

.wblm-ps-related-posts-holder .wblm-ps-related-text .wblm-ps-related-title {
    margin: 0
}

.wblm-ps-related-posts-holder .wblm-ps-related-text .wblm-ps-related-categories {
    margin: 6px 0 0
}

.touch .wblm-portfolio-category-list-holder article {
    cursor: pointer
}

.wblm-portfolio-category-list-holder article:hover .wblm-pcli-text-holder {
    opacity: 1
}

.wblm-portfolio-category-list-holder article .wblm-pcl-item-inner {
    overflow: hidden
}

.wblm-portfolio-category-list-holder article .wblm-pcli-image img {
    display: block;
    width: 100%
}

.wblm-portfolio-category-list-holder article .wblm-pcli-text-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-portfolio-category-list-holder article .wblm-pcli-text-wrapper {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-portfolio-category-list-holder article .wblm-pcli-text {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

.wblm-portfolio-category-list-holder article .wblm-pcli-title {
    margin: 0;
    color: #fff
}

.wblm-portfolio-category-list-holder article .wblm-pcli-excerpt {
    margin: 3px 0 0;
    color: #fff
}

.wblm-portfolio-category-list-holder article .wblm-pcli-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-portfolio-list-holder, .wblm-portfolio-list-holder article .wblm-pl-item-inner, .wblm-portfolio-list-holder article .wblm-pli-image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.touch .wblm-portfolio-list-holder article {
    cursor: pointer
}

.wblm-portfolio-list-holder article .wblm-pli-image img {
    display: block;
    width: 100%
}

.wblm-portfolio-list-holder article .wblm-pli-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-portfolio-list-holder article .wblm-pli-text-wrapper {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-portfolio-list-holder article .wblm-pli-text {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-title {
    margin: 0
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-category-holder {
    position: relative;
    display: block;
    margin: 3px 0 0
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-category-holder a {
    color: #000;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 6px 0 0;
    margin: 0 3px 0 0;
    z-index: 8;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-category-holder a:last-child:after, .wblm-portfolio-list-holder.wblm-pl-no-content .wblm-pli-text-holder {
    display: none
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-category-holder a:after {
    position: absolute;
    top: 0;
    right: -4px;
    content: '/';
    color: inherit;
    font-size: 12px;
    line-height: inherit
}

.wblm-pl-filter-holder ul li span, .wblm-pl-standard-pagination {
    font-family: Poppins, sans-serif;
    font-size: 14px
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-category-holder a:last-child {
    margin: 0;
    padding: 0
}

.wblm-portfolio-list-holder article .wblm-pli-text .wblm-pli-excerpt {
    margin: 3px 0 0
}

.wblm-portfolio-list-holder.wblm-pl-has-filter .wblm-pl-inner {
    overflow: hidden
}

.wblm-pl-filter-holder, .wblm-pl-filter-holder ul, .wblm-pl-filter-holder ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-portfolio-list-holder.wblm-pl-masonry.wblm-fixed-masonry-items article .wblm-pl-item-inner, .wblm-portfolio-list-holder.wblm-pl-masonry.wblm-fixed-masonry-items article .wblm-pli-image {
    height: 100%
}

.wblm-portfolio-list-holder.wblm-pl-has-animation article {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: opacity .8s cubic-bezier(.34, .52, .57, 1.04), transform .8s cubic-bezier(.34, .52, .57, 1.04);
    -moz-transition: opacity .8s cubic-bezier(.34, .52, .57, 1.04), transform .8s cubic-bezier(.34, .52, .57, 1.04);
    transition: opacity .8s cubic-bezier(.34, .52, .57, 1.04), transform .8s cubic-bezier(.34, .52, .57, 1.04)
}

.wblm-portfolio-list-holder.wblm-pl-has-animation article.wblm-item-show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
}

.wblm-portfolio-list-holder.wblm-pl-has-animation article.wblm-item-show.wblm-item-shown {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.touch .wblm-portfolio-list-holder.wblm-pl-has-animation article {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
}

.wblm-pl-filter-holder {
    width: 100%;
    margin: 0 0 30px;
    text-align: center
}

.wblm-pl-filter-holder ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.wblm-pl-filter-holder ul li {
    margin: 0 0 10px;
    padding: 0 22px;
    cursor: pointer
}

@media only screen and (max-width: 1440px) {
    .wblm-pl-filter-holder ul li {
        padding: 0 16px
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-pl-filter-holder ul li {
        padding: 0 10px
    }
}

.wblm-pl-filter-holder ul li span {
    position: relative;
    color: #000;
    font-weight: 600
}

.wblm-pl-filter-holder ul li span:before, .wblm-pl-filter-holder ul li.wblm-pl-current span:before, .wblm-pl-filter-holder ul li:hover span:before {
    position: absolute;
    left: 0;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%;
    right: 0;
    background-color: currentColor;
    content: '';
    height: 1px;
    bottom: 0
}

.wblm-pl-filter-holder ul li span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-pl-filter-holder ul li.wblm-pl-current span:before, .wblm-pl-filter-holder ul li:hover span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-pl-standard-pagination, .wblm-pl-standard-pagination ul, .wblm-pl-standard-pagination ul li {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-portfolio-list-holder.wblm-pl-pag-standard .wblm-pl-inner {
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-portfolio-list-holder.wblm-pl-pag-standard.wblm-pl-pag-standard-animate .wblm-pl-inner {
    opacity: 0
}

.wblm-pl-standard-pagination {
    width: 100%;
    margin: 40px 0 0;
    clear: both;
    font-weight: 500
}

.wblm-pl-standard-pagination ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left
}

.wblm-pl-standard-pagination ul li > a, .wblm-pl-standard-pagination ul li > span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px;
    padding: 0
}

.wblm-pl-standard-pagination ul li > a:before, .wblm-pl-standard-pagination ul li > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pl-standard-pagination ul li > a:hover:before, .wblm-pl-standard-pagination ul li > span:hover:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pl-standard-pagination ul li > a.current:after, .wblm-pl-standard-pagination ul li > span.current:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% + 12px);
    left: -6px;
    right: auto;
    bottom: 0;
    background: #000;
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-pl-standard-pagination ul li:first-child > a, .wblm-pl-standard-pagination ul li:first-child > span {
    margin-left: 0
}

.wblm-pl-standard-pagination ul li:last-child > a, .wblm-pl-standard-pagination ul li:last-child > span {
    margin-right: 0
}

.wblm-pl-standard-pagination ul li.wblm-pag-active a {
    color: #000
}

.wblm-pl-standard-pagination ul li.wblm-pag-active a:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblm-pl-standard-pagination ul li.wblm-pag-first, .wblm-pl-standard-pagination ul li.wblm-pag-last, .wblm-pl-standard-pagination ul li.wblm-pag-next, .wblm-pl-standard-pagination ul li.wblm-pag-prev {
    margin: 0 2px
}

.wblm-pl-standard-pagination ul li.wblm-pag-first a, .wblm-pl-standard-pagination ul li.wblm-pag-last a, .wblm-pl-standard-pagination ul li.wblm-pag-next a, .wblm-pl-standard-pagination ul li.wblm-pag-prev a {
    font-size: 24px
}

.wblm-pl-standard-pagination ul li.wblm-pag-first a span, .wblm-pl-standard-pagination ul li.wblm-pag-first a span:before, .wblm-pl-standard-pagination ul li.wblm-pag-last a span, .wblm-pl-standard-pagination ul li.wblm-pag-last a span:before, .wblm-pl-standard-pagination ul li.wblm-pag-next a span, .wblm-pl-standard-pagination ul li.wblm-pag-next a span:before, .wblm-pl-standard-pagination ul li.wblm-pag-prev a span, .wblm-pl-standard-pagination ul li.wblm-pag-prev a span:before {
    display: block;
    line-height: inherit
}

.wblm-pl-standard-pagination ul li.wblm-pag-first a:after, .wblm-pl-standard-pagination ul li.wblm-pag-first a:before, .wblm-pl-standard-pagination ul li.wblm-pag-last a:after, .wblm-pl-standard-pagination ul li.wblm-pag-last a:before, .wblm-pl-standard-pagination ul li.wblm-pag-next a:after, .wblm-pl-standard-pagination ul li.wblm-pag-next a:before, .wblm-pl-standard-pagination ul li.wblm-pag-prev a:after, .wblm-pl-standard-pagination ul li.wblm-pag-prev a:before {
    content: none;
    display: none
}

.wblm-pl-standard-pagination ul li.wblm-pag-prev a {
    opacity: 0
}

.wblm-pl-standard-pagination ul li.wblm-pag-next a, .wblm-portfolio-list-holder.wblm-pl-gallery-overlay article:hover .wblm-pli-text-holder {
    opacity: 1
}

.wblm-pl-load-more-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-pl-load-more-holder .wblm-pl-load-more {
    margin: 60px 0 0;
    text-align: center
}

.wblm-pl-loading {
    position: relative;
    display: none;
    width: 100%;
    margin: 40px 0 20px;
    color: #000;
    text-align: center
}

.wblm-pl-loading.wblm-filter-trigger {
    position: absolute;
    top: 250px;
    left: 0
}

.wblm-pl-loading.wblm-standard-pag-trigger {
    position: absolute;
    top: 50px;
    left: 0
}

.wblm-pl-has-filter .wblm-pl-loading.wblm-standard-pag-trigger {
    top: 150px
}

.wblm-pl-loading.wblm-showing {
    display: block
}

.wblm-pl-loading > div {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin: 0 3px;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.wblm-pl-loading .wblm-pl-loading-bounce1 {
    -webkit-animation-delay: -.32s;
    -moz-animation-delay: -.32s;
    animation-delay: -.32s
}

.wblm-pl-loading .wblm-pl-loading-bounce2 {
    -webkit-animation-delay: -.16s;
    -moz-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes sk-bouncedelay {
    0%, 100%, 80% {
        -moz-transform: scale(0)
    }
    40% {
        -moz-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wblm-portfolio-list-holder.wblm-pl-gallery-overlay article .wblm-pl-item-inner {
    overflow: hidden
}

.wblm-portfolio-list-holder.wblm-pl-gallery-overlay article .wblm-pli-text .wblm-pli-category-holder a, .wblm-portfolio-list-holder.wblm-pl-gallery-overlay article .wblm-pli-text .wblm-pli-excerpt, .wblm-portfolio-list-holder.wblm-pl-gallery-overlay article .wblm-pli-text .wblm-pli-title {
    color: #fff
}

.wblm-portfolio-list-holder.wblm-pl-gallery-overlay article .wblm-pli-text .wblm-pli-category-holder a:hover {
    color: #000
}

.wblm-portfolio-list-holder.wblm-pl-gallery-overlay .wblm-pli-text-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, .4);
    opacity: 0;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom article:hover .wblm-pli-text-holder, .wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom article:hover .wblm-pli-text-wrapper {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom article .wblm-pl-item-inner {
    overflow: hidden
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom .wblm-pli-text-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    padding: 15px 20px 10px;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .4s ease-in-out;
    -moz-transition: -moz-transform .4s ease-in-out;
    transition: transform .4s ease-in-out
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-bottom .wblm-pli-text-wrapper {
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform .4s ease-in-out;
    -moz-transition: -moz-transform .4s ease-in-out;
    transition: transform .4s ease-in-out
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-right article:hover .wblm-pli-text-holder {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-right article .wblm-pl-item-inner {
    overflow: hidden
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-right article .wblm-pli-text-wrapper {
    width: unset
}

.wblm-portfolio-list-holder.wblm-pl-gallery-slide-from-image-right .wblm-pli-text-holder {
    position: absolute;
    display: block;
    height: auto;
    top: 50%;
    right: 0;
    padding: 15px 20px 10px;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-transform: translate(100%, -50%);
    -moz-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform .4s ease-in-out;
    -moz-transition: -moz-transform .4s ease-in-out;
    transition: transform .4s ease-in-out
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader article {
    overflow: hidden;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader article img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader article:hover img {
    transform: scale(1.06) translate3d(-3%, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader article .wblm-pli-image {
    overflow: hidden
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader article .wblm-pli-link {
    z-index: 2
}

.wblm-portfolio-list-holder.wblm-pl-standard-shader .wblm-pli-text-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 26px 0 0
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images article .wblm-pli-image img {
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images article .wblm-pli-image img:nth-child(1) {
    opacity: 1
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images article .wblm-pli-image img:nth-child(2) {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images .wblm-pli-text-holder, .wblm-portfolio-project-info, .wblm-portfolio-project-info > div, .wblm-portfolio-project-info > div a {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images article.wblm-pl-has-switch-image:hover .wblm-pli-image img:nth-child(1), .wblm-portfolio-list-holder.wblm-pl-standard-switch-images article.wblm-pl-has-switch-image:hover .wblm-pli-image img:nth-child(2) {
    opacity: 1
}

.wblm-portfolio-list-holder.wblm-pl-standard-switch-images .wblm-pli-text-holder {
    width: 100%;
    margin: 35px 0 0
}

.wblm-portfolio-project-info .wblm-ppi-label {
    margin: 0;
    padding: 0
}

.wblm-portfolio-project-info > div a {
    margin: 0 5px 0 0
}

.wblm-portfolio-project-info > div a:last-child {
    margin: 0
}

.wblm-portfolio-project-info .wblm-ppi-image, .wblm-portfolio-project-info .wblm-ppi-title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-portfolio-project-info .wblm-ppi-image img {
    display: block
}

.wblm-portfolio-slider-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-light-skin .owl-nav .owl-next, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-light-skin .owl-nav .owl-prev {
    color: #fff
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-light-skin .owl-nav .owl-next:hover, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-light-skin .owl-nav .owl-prev:hover {
    color: rgba(255, 255, 255, .9)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-dark-skin .owl-nav .owl-next, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-dark-skin .owl-nav .owl-prev {
    color: #000
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-dark-skin .owl-nav .owl-next:hover, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-nav-dark-skin .owl-nav .owl-prev:hover {
    color: rgba(0, 0, 0, .9)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-light-skin .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, .2)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-light-skin .owl-dots .owl-dot.active span, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-light-skin .owl-dots .owl-dot:hover span {
    background-color: rgba(255, 255, 255, .9)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-dark-skin .owl-dots .owl-dot span {
    background-color: rgba(0, 0, 0, .2)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-dark-skin .owl-dots .owl-dot.active span, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-dark-skin .owl-dots .owl-dot:hover span {
    background-color: rgba(0, 0, 0, .9)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-on-slider .owl-nav .owl-next, .wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-on-slider .owl-nav .owl-prev {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-portfolio-slider-holder .wblm-portfolio-list-holder.wblm-pag-on-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    margin: 0
}

.wblm-shop-masonry-gallery-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-shop-masonry-gallery-holder .wblm-smg-grid-gutter {
    width: 0
}

.wblm-shop-masonry-gallery-holder .wblm-no-space .wblm-smg-grid-sizer {
    padding: 0
}

.wblm-shop-masonry-gallery-holder .wblm-tiny-space .wblm-smg-grid-sizer {
    padding: 0 5px
}

.wblm-shop-masonry-gallery-holder .wblm-small-space .wblm-smg-grid-sizer {
    padding: 0 10px
}

.wblm-shop-masonry-gallery-holder .wblm-normal-space .wblm-smg-grid-sizer {
    padding: 0 15px
}

.wblm-elements-holder .wblm-ehi-content, .wblm-shop-masonry-gallery-holder .wblm-medium-space .wblm-smg-grid-sizer {
    padding: 0 20px
}

.wblm-shop-masonry-gallery-holder .wblm-large-space .wblm-smg-grid-sizer {
    padding: 0 25px
}

.wblm-shop-masonry-gallery-holder .wblm-huge-space .wblm-smg-grid-sizer {
    padding: 0 40px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-grid-sizer {
    width: 20%;
    box-sizing: border-box
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item {
    position: relative;
    width: 20%;
    z-index: 1;
    box-sizing: border-box
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-rectangle-landscape, .wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-rectangle-portrait-big, .wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-square-big {
    width: 40%
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-rectangle-landscape .wblm-smg-image img {
    max-height: inherit
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item .wblm-smg-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item .wblm-smg-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item .wblm-smg-image a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .32s ease-in-out;
    -moz-transition: all .32s ease-in-out;
    transition: all .32s ease-in-out
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item .wblm-smg-image a img {
    display: inline-block;
    vertical-align: middle
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) {
    overflow: hidden;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder):hover img {
    transform: scale(1.06) translate3d(-3%, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 111;
    background-color: rgba(255, 255, 255, .9);
    opacity: 0;
    -webkit-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    -moz-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    transition: opacity .4s cubic-bezier(.76, .14, 0, .74)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content {
    position: absolute;
    width: 100%;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-title {
    margin: 0 0 10px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-category {
    margin-top: 3px;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-price {
    margin-top: 11px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-price ins {
    text-decoration: none
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-direction: row-reverse;
    padding: 0 8px;
    border: 1px solid;
    margin-top: 22px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder .added_to_cart, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist {
    height: 43px;
    width: 18px;
    z-index: 300;
    overflow: hidden;
    padding: 0 8px;
    font-size: 0;
    vertical-align: bottom;
    margin: 0;
    border: 0;
    box-sizing: initial;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder .added_to_cart:after, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder .added_to_cart:before, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button:after, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button:before, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button:after, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button:before, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist:before {
    content: initial;
    color: inherit
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder .added_to_cart:hover, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button:hover, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button:hover, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist:hover {
    opacity: .8
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button {
    bottom: 0;
    right: -1px;
    display: inline-block;
    background: 0 0;
    color: #000;
    box-sizing: content-box
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button.added {
    display: none
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart a.button:after {
    font-family: Ionicons;
    content: "\f110";
    font-size: 19px;
    line-height: 42px;
    font-weight: 500
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart .added_to_cart {
    color: unset;
    background-color: unset;
    font-weight: unset
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .wblm-smg-add-to-cart .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button {
    bottom: 0
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-quickview-button:before {
    content: "\f06e";
    font-size: 17px;
    line-height: 43px;
    font-family: FontAwesome
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist {
    bottom: 0
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist > div a {
    height: 100%
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder) .wblm-smg-item-outer .wblm-smg-item-inner .wblm-smg-item-content .wblm-smg-icons-holder > .yith-wcwl-add-to-wishlist > div a:before {
    font-size: 16px;
    line-height: 45px;
    padding: 0;
    margin: 0
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item:not(.wblm-smg-stack-slider-holder):hover .wblm-smg-item-outer .wblm-smg-item-inner {
    opacity: 1
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-smg-banner-overlay-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 112
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-smg-banner-overlay-holder .wblm-smg-banner-text-holder {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-smg-banner-overlay-holder .wblm-smg-banner-text-holder .wblm-smg-banner-text-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    vertical-align: bottom;
    padding: 50px 55px
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-smg-banner-overlay-holder .wblm-smg-banner-text-holder .wblm-smg-banner-text-inner .wblm-smg-banner-title {
    margin-bottom: 10px;
    color: #000
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-info-box-data-hidden {
    display: none;
    pointer-events: none
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-info-box-hidden {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-banner .wblm-info-box-animate {
    animation: infoShow 1s forwards
}

@keyframes infoShow {
    0%, 100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        transform: translateY(5px)
    }
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-next:hover span, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-prev:hover span {
    opacity: .7
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder {
    vertical-align: middle;
    display: block;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-smg-banner-image-holder, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-smg-item-content, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-smg-item-inner, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-smg-item-outer {
    height: 100%;
    width: 100%
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-stack-slider {
    position: relative;
    height: 100%;
    width: 100%;
    display: block
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-stack-slider .wblm-stack-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 22;
    will-change: transform
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-stack-slider .wblm-stack-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-next, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-prev {
    position: absolute;
    bottom: 0;
    z-index: 223;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    width: 57px;
    height: 57px;
    line-height: 57px;
    text-align: center
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-next span, .wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-prev span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 1em;
    text-align: center;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-prev {
    right: 57px;
    left: auto
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .wblm-slider-nav .wblm-next {
    right: 0
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .prepMoveBack {
    transform: translateX(100%)
}

.wblm-shop-masonry-gallery-holder .wblm-smg-stack-slider-holder .disabled {
    pointer-events: none
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-border-around .wblm-testimonial-text-inner {
    border: 1px solid #e0e4f2;
    width: calc(100% - 2px)
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-text-holder {
    display: block;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 9px
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-image {
    text-align: center;
    margin-top: 36px
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-image img {
    max-width: 100%;
    vertical-align: middle
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-content-inner {
    cursor: -webkit-grab;
    cursor: grab
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-text-holder .wblm-testimonial-text-inner {
    display: block;
    text-align: left;
    background-color: #fff;
    padding: 25px;
    box-sizing: border-box
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-text-holder .wblm-testimonial-text {
    margin: 0;
    padding: 0 20px 0 25px
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-text-holder .wblm-testimonial-title {
    margin: 0 0 16px;
    padding: 15px 15px 15px 25px;
    border-bottom: 1px solid #e0e4f2
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-carousel-bottom {
    display: table;
    width: 100%;
    table-layout: fixed
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-image {
    width: 70px;
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0 20px 0 0
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-author {
    display: table-cell;
    vertical-align: middle
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-author .wblm-testimonials-author-job, .wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-author .wblm-testimonials-author-name {
    margin: 0
}

.wblm-testimonials-holder.wblm-testimonials-boxed-text .wblm-testimonial-author .wblm-testimonials-author-job {
    color: rgba(0, 0, 0, .4)
}

.wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .wblm-testimonial-author, .wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .wblm-testimonial-text, .wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .wblm-testimonial-title, .wblm-testimonials-holder.wblm-testimonials-light .wblm-testimonial-author .wblm-testimonials-author-job, .wblm-testimonials-holder.wblm-testimonials-light .wblm-testimonial-author .wblm-testimonials-author-name {
    color: #fff
}

.wblm-testimonials-holder.wblm-testimonials-boxed .wblm-testimonial-content {
    padding: 40px 57px 58px;
    background-color: #fbfbfb;
    box-sizing: border-box
}

.wblm-testimonials-holder.wblm-testimonials-boxed .wblm-testimonials-author-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 9px 0 0
}

.wblm-testimonials-holder.wblm-testimonials-boxed .wblm-testimonials-author-holder .wblm-testimonial-image {
    float: left
}

.wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .owl-dots .owl-dot span {
    border: 2px solid rgba(255, 255, 255, .5)
}

.wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .owl-dots .owl-dot.active span, .wblm-testimonials-holder.wblm-testimonials-boxed.wblm-testimonials-light .owl-dots .owl-dot:hover span {
    background-color: #fff;
    border-color: #fff
}

.wblm-testimonials-holder.wblm-testimonials-carousel {
    opacity: 0;
    text-align: center
}

@media only screen and (max-width: 680px) {
    .wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonials {
        padding: 0
    }
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-text {
    margin-top: 0;
    font-size: 22px;
    color: #595959
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image-nav {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    max-width: 470px;
    margin: 27px auto 0;
    text-align: center
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image-nav .owl-item {
    cursor: pointer
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image-nav .owl-item.active.center .wblm-testimonial-image {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image {
    position: relative;
    display: block;
    width: 94px;
    height: 94px;
    -webkit-transform: scale(.78723);
    -moz-transform: scale(.78723);
    transform: scale(.78723);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out
}

.wblm-owl-custom-slider .owl-item .owl-lazy, .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image img {
    width: 100% !important
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-author {
    margin-top: 22px
}

.wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonials-author-job {
    margin-top: 8px
}

.wblm-testimonials-holder.wblm-testimonials-light .wblm-testimonial-text, .wblm-testimonials-holder.wblm-testimonials-light .wblm-testimonial-title {
    color: #fff
}

.wblm-owl-custom-slider {
    position: relative;
    display: none;
    width: 100%;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    z-index: 1
}

.wblm-owl-custom-slider.owl-loaded {
    display: block
}

.wblm-owl-custom-slider.owl-loading {
    opacity: 0;
    display: block
}

.wblm-owl-custom-slider.owl-hidden {
    opacity: 0
}

.wblm-owl-custom-slider.owl-refresh .owl-item {
    visibility: hidden
}

.wblm-owl-custom-slider.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-custom-slider.owl-grab {
    cursor: move;
    cursor: grab
}

.wblm-owl-custom-slider.owl-rtl .owl-item {
    float: right
}

.no-js .wblm-owl-custom-slider {
    display: block
}

.wblm-owl-custom-slider .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.wblm-owl-custom-slider .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.wblm-owl-custom-slider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.wblm-owl-custom-slider .owl-item, .wblm-owl-custom-slider .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.wblm-owl-custom-slider .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden
}

.wblm-owl-custom-slider .owl-item img {
    display: block;
    width: 100%
}

.wblm-owl-custom-slider .owl-dots.disabled, .wblm-owl-custom-slider .owl-nav.disabled {
    display: none
}

.wblm-owl-custom-slider .owl-item img .owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.wblm-owl-custom-slider .owl-nav .owl-next, .wblm-owl-custom-slider .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-custom-slider .owl-dots .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-owl-custom-slider .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.wblm-owl-custom-slider .owl-animated-in {
    z-index: 0
}

.wblm-owl-custom-slider .owl-animated-out, .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-stage-outer {
    z-index: 1
}

.wblm-owl-custom-slider .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner {
    visibility: hidden;
    position: relative;
    display: none;
    width: 100%;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    z-index: 1;
    padding: 0 50px 0 127px;
    text-align: center
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 25px 0 0
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-image img {
    display: block;
    margin: 0 auto
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-title {
    margin: 0;
    text-align: left
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-author {
    text-align: left;
    margin: 29px 0 0 1px
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonials-author-job {
    margin: 0;
    text-align: left;
    color: #000
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-text {
    margin: 19px 0 0;
    font-size: 30px;
    text-align: left;
    font-style: italic;
    font-weight: 300;
    line-height: 42px
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.wblm-slider-is-moving .owl-item .wblm-block-drag-link {
    z-index: -1 !important
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-carousel .owl-item img {
    -webkit-transform: translateZ(0)
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-loaded {
    display: block
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-loading {
    opacity: 0;
    display: block
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-hidden {
    opacity: 0
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-refresh .owl-item {
    visibility: hidden
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-grab {
    cursor: move;
    cursor: grab
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner.owl-rtl .owl-item {
    float: right
}

.no-js .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner {
    display: block
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-item, .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-item img {
    display: block;
    width: 100%
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-item img .owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-nav.disabled {
    display: none
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-nav .owl-next, .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-animated-in {
    z-index: 0
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .owl-animated-out {
    z-index: 1
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination {
    list-style: none;
    display: inline-block;
    top: 17px;
    left: 0;
    position: absolute;
    z-index: 5
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item {
    position: relative;
    display: inline-block;
    float: left;
    height: 35px;
    width: 35px;
    margin: 0 7px 7px 0;
    cursor: pointer
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item:nth-child(2n+1) {
    clear: both
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item img {
    position: relative
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .2);
    opacity: 1;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-accordion-holder .wblm-accordion-title .wblm-accordion-mark span.wblm_icon_minus, .wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item.active:after, .wblm-testimonials-holder.wblm-testimonials-image-pagination #wblm-testimonial-pagination .wblm-tsp-item:hover:after {
    opacity: 0
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .owl-nav {
    text-align: left;
    margin-top: 3px
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .owl-nav .owl-next, .wblm-testimonials-holder.wblm-testimonials-image-pagination .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    transform: translateY(0) !important
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .owl-nav .owl-prev {
    left: -1px
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination .owl-nav .owl-next {
    left: 12px
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .wblm-testimonial-author, .wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .wblm-testimonial-text, .wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .wblm-testimonial-title, .wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .owl-nav .owl-next, .wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .owl-nav .owl-prev {
    color: #fff
}

.wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .owl-nav .owl-next:hover, .wblm-testimonials-holder.wblm-testimonials-image-pagination.wblm-testimonials-light .owl-nav .owl-prev:hover {
    color: #000
}

.wblm-testimonials-holder.wblm-testimonials-standard {
    text-align: center
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 25px 0 0
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-image img {
    display: block;
    margin: 0 auto
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-title {
    margin: 0
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-author {
    margin: 24px 0 0;
    font-size: 16px
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-author .wblm-testimonials-author-name {
    display: block
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-author .wblm-testimonials-author-job {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em;
    line-height: 21px;
    font-family: Montserrat, sans-serif
}

.wblm-testimonials-holder.wblm-testimonials-standard .wblm-testimonial-text {
    margin: 29px 0 0;
    font-size: 16px;
    color: #3d3d3d;
    line-height: 26px;
    font-weight: 400
}

.wblm-testimonials-holder .wblm-owl-slider .owl-nav .owl-next > span, .wblm-testimonials-holder .wblm-owl-slider .owl-nav .owl-prev > span {
    font-size: 28px
}

.wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .wblm-testimonial-author, .wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .wblm-testimonial-text, .wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .wblm-testimonial-title {
    color: #fff
}

.wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .owl-dots .owl-dot span {
    border: 2px solid rgba(255, 255, 255, .5)
}

.wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .owl-dots .owl-dot.active span, .wblm-testimonials-holder.wblm-testimonials-standard.wblm-testimonials-light .owl-dots .owl-dot:hover span {
    background-color: #fff;
    border-color: #fff
}

.wblm-testimonials-holder, .wblm-testimonials-holder .wblm-testimonial-content, .wblm-testimonials-holder .wblm-testimonial-text-holder, .wblm-testimonials-holder .wblm-testimonials {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-testimonials-holder .wblm-testimonials {
    padding: 0 50px;
    box-sizing: border-box
}

.wblm-testimonials-holder .wblm-testimonial-image img {
    width: auto !important;
    border-radius: 5em
}

.wblm-testimonials-holder .wblm-owl-slider .owl-nav .owl-prev {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    left: 0;
    right: unset;
    background-color: transparent;
    width: 10px
}

.wblm-testimonials-holder .wblm-owl-slider .owl-nav .owl-next {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    right: 0;
    left: unset;
    background-color: transparent;
    width: 10px
}

.wblm-comment-rating-box {
    display: inline-block;
    margin-left: 18px;
    vertical-align: middle
}

.wblm-comment-rating-box .wblm-star-rating {
    position: relative;
    display: inline-block;
    font-family: ElegantIcons;
    color: #c8c8c8;
    font-size: 16px;
    letter-spacing: 5px;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

.wblm-btn, .wblm-countdown .countdown-row .countdown-section .countdown-period, .wblm-counter-holder .wblm-counter, .wblm-counter-holder .wblm-counter-text {
    font-family: Poppins, sans-serif
}

.wblm-comment-rating-box .wblm-star-rating.active {
    color: #ffd740
}

.wblm-comment-rating-box .wblm-star-rating:before {
    content: '\e033'
}

.wblm-reviews-per-criteria .wblm-item-reviews-average-rating {
    color: #000;
    font-size: 60px;
    line-height: 1em;
    font-weight: 700
}

.wblm-reviews-per-criteria .wblm-item-reviews-verbal-description {
    vertical-align: middle;
    margin: 2px 0 0
}

.wblm-reviews-per-criteria .wblm-item-reviews-rating-icon {
    vertical-align: middle;
    font-size: 20px
}

.wblm-reviews-per-criteria .wblm-item-reviews-display-right {
    vertical-align: middle;
    padding-left: 200px;
    box-sizing: border-box
}

.wblm-reviews-per-criteria .wblm-item-reviews-display-right .wblm-item-reviews-display-bar {
    line-height: 28px
}

.wblm-reviews-per-criteria .wblm-item-reviews-display-right .wblm-item-reviews-display-bar .wblm-item-reviews-display-bar-inner {
    padding: 6px 0
}

.wblm-reviews-per-mark .wblm-reviews-number-wrapper {
    padding-top: 23%;
    padding-left: 15%;
    display: table;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    vertical-align: middle
}

.wblm-reviews-per-mark .wblm-reviews-number {
    font-size: 72px;
    color: #ffd740;
    font-weight: 700;
    line-height: 1em;
    margin-right: 22px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: -6px
}

.wblm-reviews-per-mark .wblm-stars-wrapper {
    display: table-cell;
    vertical-align: middle
}

.wblm-reviews-per-mark .wblm-stars-wrapper .wblm-stars {
    display: block
}

.wblm-reviews-per-mark .wblm-stars-wrapper .wblm-stars i {
    color: #ffd740
}

.wblm-reviews-per-mark .wblm-reviews-count {
    font-weight: 700;
    font-size: 14px
}

.wblm-reviews-per-mark .wblm-rating-percentage-wrapper {
    padding: 29px 50px 40px;
    background-color: #fafafa;
    border-left: 1px solid #e5e5e5
}

.wblm-reviews-simple .wblm-reviews-number-wrapper .wblm-reviews-summary {
    display: inline-block;
    vertical-align: middle
}

.wblm-reviews-simple .wblm-reviews-number-wrapper .wblm-stars-wrapper {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 15px
}

.wblm-reviews-simple .wblm-reviews-number-wrapper .wblm-stars-wrapper-inner {
    display: block
}

.wblm-comment-list .wblm-comment-name {
    float: none
}

.wblm-comment-list .wblm-rating-inner, .wblm-comment-list .wblm-review-rating {
    display: inline-block;
    width: 100%
}

.wblm-top-reviews-carousel-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-carousel-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 40px;
    box-sizing: border-box
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-carousel-title {
    margin: 0 0 22px
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-carousel {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    visibility: hidden
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-carousel-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-title {
    margin: 0 0 2px
}

.wblm-top-reviews-carousel-holder .wblm-tour-reviews-criteria-holder {
    display: block;
    width: 100%;
    float: none;
    margin: 0
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-content {
    margin: 20px 0 0
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-content p {
    margin: 0
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-author-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 32px 0 0;
    padding: 0 100px 0 0;
    box-sizing: border-box
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-author-avatar {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 21px 0 0
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-author-avatar img {
    display: block;
    border-radius: 50%
}

.wblm-top-reviews-carousel-holder .wblm-top-reviews-item-author-name {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-top-reviews-carousel-holder .owl-nav {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 60px
}

.wblm-top-reviews-carousel-holder .owl-nav .owl-prev {
    left: 0
}

.wblm-top-reviews-carousel-holder .owl-nav .owl-next {
    right: 0
}

.wblm-accordion-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-accordion-holder .wblm-accordion-title {
    position: relative;
    cursor: pointer;
    margin: 0;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: color .2s ease-out, background-color .2s ease-out;
    -moz-transition: color .2s ease-out, background-color .2s ease-out;
    transition: color .2s ease-out, background-color .2s ease-out
}

.wblm-accordion-holder .wblm-accordion-title .wblm-tab-title {
    display: block;
    line-height: inherit
}

.wblm-accordion-holder .wblm-accordion-title .wblm-accordion-mark {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 18px;
    margin: -1px 0 0;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-accordion-holder .wblm-accordion-title .wblm-accordion-mark span {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 23px;
    line-height: inherit;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-accordion-holder .wblm-accordion-title .wblm-accordion-mark span:before {
    display: block;
    line-height: inherit
}

.wblm-accordion-holder .wblm-accordion-title .wblm-accordion-mark span.wblm_icon_plus, .wblm-accordion-holder .wblm-accordion-title.ui-state-active .wblm-accordion-mark span.wblm_icon_minus, .wblm-accordion-holder .wblm-accordion-title.ui-state-hover .wblm-accordion-mark span.wblm_icon_minus {
    opacity: 1
}

.wblm-accordion-holder .wblm-accordion-title.ui-state-active .wblm-accordion-mark span.wblm_icon_plus, .wblm-accordion-holder .wblm-accordion-title.ui-state-hover .wblm-accordion-mark span.wblm_icon_plus, .wblm-cc-hover-switch-images .wblm-cc-item.wblm-cci-has-link a:hover .wblm-cc-image {
    opacity: 0
}

.wblm-accordion-holder .wblm-accordion-content {
    margin: 0
}

.wblm-accordion-holder .wblm-accordion-content p {
    margin: 0;
    font-size: 16px
}

.wblm-accordion-holder.wblm-ac-boxed.wblm-white-skin .wblm-accordion-title {
    background-color: #fff
}

.wblm-accordion-holder.wblm-ac-boxed .wblm-accordion-title {
    margin: 15px 0 0;
    padding: 18px 25px;
    background-color: #f7f7f9
}

.wblm-accordion-holder.wblm-ac-boxed .wblm-accordion-title:first-child {
    margin: 0
}

.wblm-accordion-holder.wblm-ac-boxed .wblm-accordion-title .wblm-accordion-mark {
    right: 25px
}

.wblm-accordion-holder.wblm-ac-boxed .wblm-accordion-content {
    padding: 0 25px 25px;
    background-color: #f7f7f9
}

.wblm-accordion-holder.wblm-ac-simple .wblm-accordion-title {
    padding: 21px 30px 21px 0;
    border-bottom: 1px solid #ccc
}

.wblm-accordion-holder.wblm-ac-simple .wblm-accordion-title .wblm-accordion-mark > span:before {
    content: "\33" !important
}

.wblm-accordion-holder.wblm-ac-simple .wblm-accordion-content.ui-accordion-content-active {
    border-color: #ccc
}

.wblm-accordion-holder.wblm-ac-simple .wblm-accordion-content {
    padding: 21px 0 16px
}

.wblm-banner-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.touch .wblm-banner-holder {
    cursor: pointer
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim) .wblm-banner-image {
    overflow: hidden
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim) .wblm-banner-image img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim):hover .wblm-banner-image img {
    -webkit-transform: scale(1.1) translateX(-4%);
    -moz-transform: scale(1.1) translateX(-4%);
    transform: scale(1.1) translateX(-4%);
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim).wblm-banner-hover-large-slow .wblm-banner-image img {
    transition-duration: 1.5s
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim).wblm-banner-hover-large-fast .wblm-banner-image img {
    transition-duration: .5s
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim).wblm-banner-hover-small-slow .wblm-banner-image img {
    transition-duration: 1s
}

.wblm-banner-holder:not(.wblm-banner-no-hover-anim) .wblm-banner-inner-image img, .wblm-banner-holder:not(.wblm-banner-no-hover-anim) .wblm-banner-inner-image img:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none
}

.wblm-banner-holder.wblm-banner-vertical-top .wblm-banner-text-inner {
    vertical-align: top
}

.wblm-banner-holder.wblm-banner-vertical-middle .wblm-banner-text-inner {
    vertical-align: middle
}

.wblm-banner-holder.wblm-banner-vertical-bottom .wblm-banner-text-inner {
    vertical-align: bottom
}

.wblm-banner-holder.wblm-banner-horizontal-left .wblm-banner-text-inner {
    text-align: left
}

.wblm-banner-holder.wblm-banner-horizontal-center .wblm-banner-text-inner {
    text-align: center
}

.wblm-banner-holder.wblm-banner-horizontal-right .wblm-banner-text-inner {
    text-align: right
}

.wblm-banner-holder .wblm-banner-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    z-index: 1;
    overflow: hidden
}

.wblm-banner-holder .wblm-banner-text-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 35px;
    box-sizing: border-box;
    z-index: 2
}

.wblm-banner-holder .wblm-banner-text-outer {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-banner-holder .wblm-banner-text-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: bottom
}

.wblm-banner-holder .wblm-banner-text-inner .wblm-banner-button .wblm-btn.wblm-btn-simple:hover > span:after, .wblm-banner-holder .wblm-banner-text-inner .wblm-banner-button .wblm-btn.wblm-btn-simple:hover > span:before, .wblm-banner-holder .wblm-banner-text-inner .wblm-banner-button .wblm-btn.wblm-btn-simple > span:after, .wblm-banner-holder .wblm-banner-text-inner .wblm-banner-button .wblm-btn.wblm-btn-simple > span:before {
    background-color: currentColor
}

.wblm-banner-holder.wblm-banner-skin-light .wblm-banner-title {
    margin: 0;
    color: #fff
}

.wblm-banner-holder.wblm-banner-skin-light .wblm-banner-subtitle {
    margin: 0 0 4px;
    color: #fff
}

.wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid {
    color: #2d2d2d;
    background-color: #fff
}

.wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid:after, .wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid:before, .wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid:hover:after, .wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid:hover:before {
    background-color: #fff !important
}

.wblm-banner-holder.wblm-banner-skin-light .wblm-banner-button .wblm-btn.wblm-btn-solid:hover {
    color: #fff !important;
    background-color: #fff !important
}

.wblm-banner-holder .wblm-banner-shadow-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 8px;
    left: 8px
}

.wblm-banner-row-holder .wblm-banner-full-height {
    height: 100%
}

.wblm-banner-row-holder .wblm-banner-full-height .wblm-banner-image {
    display: none
}

@media only screen and (max-width: 1024px) {
    .wblm-testimonials-holder.wblm-testimonials-carousel .wblm-testimonial-image-nav {
        max-width: 282px
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-1024 {
        height: auto !important;
        background-image: none !important
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-1024 .wblm-banner-image {
        display: block
    }
}

@media only screen and (max-width: 991px) {
    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-992 {
        height: auto !important;
        background-image: none !important
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-992 .wblm-banner-image {
        display: block
    }
}

@media only screen and (max-width: 768px) {
    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-768 {
        height: auto !important;
        background-image: none !important
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-768 .wblm-banner-image {
        display: block
    }
}

@media only screen and (max-width: 680px) {
    .wblm-banner-holder .wblm-banner-text-holder {
        padding: 0 26px 23px 30px !important
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-680 {
        height: auto !important;
        background-image: none !important
    }

    .wblm-banner-row-holder .wblm-banner-full-height.wblm-banner-responsive-680 .wblm-banner-image {
        display: block
    }
}

.wblm-banner-row-holder .wpb_wrapper {
    height: 100%
}

.input-button-wrapper {
    color: #fff;
    border: 1px solid transparent;
    background-color: transparent;
    position: relative;
    display: inline-block
}

.input-button-wrapper:before, .input-button-wrapper:hover:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.input-button-wrapper:before {
    background-color: inherit;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.input-button-wrapper:hover {
    background-color: transparent
}

.input-button-wrapper:hover:before {
    background-color: inherit;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 9px 46px;
    cursor: pointer
}

.wblm-btn.wblm-btn-simple {
    padding: 0 !important;
    color: #000;
    background-color: transparent;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle
}

.wblm-btn.wblm-btn-simple:hover > span:before, .wblm-btn.wblm-btn-simple > span:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: currentColor
}

.wblm-btn.wblm-btn-simple > span:before {
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-btn.wblm-btn-simple:hover > span:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-btn.wblm-btn-solid:before, .wblm-btn.wblm-btn-solid:hover:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -1px;
    right: 0;
    height: 1px;
    width: calc(100% + 2px);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-btn.wblm-btn-simple .wblm-btn-text {
    display: inline-block;
    vertical-align: middle
}

.wblm-btn.wblm-btn-simple:not(.wblm-btn-custom-hover-color):hover {
    color: rgba(0, 0, 0, .9) !important
}

.wblm-btn.wblm-btn-simple:not(.wblm-btn-custom-hover-bg):hover {
    background-color: transparent !important
}

.wblm-btn.wblm-btn-simple:not(.wblm-btn-custom-border-hover):hover {
    border-color: transparent !important
}

.wblm-btn.wblm-btn-solid {
    color: #fff;
    background-color: #000;
    border: 1px solid transparent
}

.wblm-btn.wblm-btn-solid:before {
    background-color: inherit;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-btn.wblm-btn-solid:hover {
    color: #fff;
    background-color: #000
}

.wblm-btn.wblm-btn-solid:hover:before {
    background-color: inherit;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-btn.wblm-btn-solid:not(.wblm-btn-custom-hover-color):hover {
    color: #fff !important
}

.wblm-btn.wblm-btn-solid:not(.wblm-btn-custom-hover-bg):hover {
    background-color: #000 !important
}

.wblm-btn.wblm-btn-solid:not(.wblm-btn-custom-border-hover):hover {
    border-color: #000 !important
}

.wblm-btn.wblm-btn-outline {
    color: #000;
    background-color: transparent;
    border: 1px solid #000
}

.wblm-btn.wblm-btn-outline:before, .wblm-btn.wblm-btn-outline:hover:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -1px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 2px);
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-btn.wblm-btn-outline:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-btn.wblm-btn-outline:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-call-to-action-holder, .wblm-call-to-action-holder.wblm-normal-layout:not(.wblm-content-in-grid) .wblm-cta-inner, .wblm-call-to-action-holder.wblm-simple-layout .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-simple-layout .wblm-cta-text-holder {
    width: 100%
}

.wblm-btn.wblm-btn-small {
    padding: 8px 36px
}

.wblm-btn.wblm-btn-large {
    padding: 13px 86px
}

.wblm-btn.wblm-btn-huge {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 26px
}

.wblm-btn.wblm-btn-icon > i, .wblm-btn.wblm-btn-icon > span:not(.wblm-btn-text) {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 4px;
    font-size: 1.142857142857143em;
    line-height: inherit
}

.wblm-btn.wblm-btn-icon > i:before, .wblm-btn.wblm-btn-icon > span:not(.wblm-btn-text):before {
    display: block;
    line-height: inherit
}

.wblm-call-to-action-holder, .wblm-call-to-action-holder .wblm-cta-button-holder, .wblm-call-to-action-holder .wblm-cta-text-holder {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-call-to-action-holder .wblm-cta-text-holder h1, .wblm-call-to-action-holder .wblm-cta-text-holder h2, .wblm-call-to-action-holder .wblm-cta-text-holder h3, .wblm-call-to-action-holder .wblm-cta-text-holder h4, .wblm-call-to-action-holder .wblm-cta-text-holder h5, .wblm-call-to-action-holder .wblm-cta-text-holder h6 {
    margin: 0
}

.wblm-call-to-action-holder .wblm-cta-button-holder .wblm-btn {
    white-space: nowrap
}

.wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-inner {
    display: table
}

.wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-text-holder {
    display: table-cell;
    box-sizing: border-box
}

.wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-button-holder {
    text-align: right
}

.wblm-call-to-action-holder.wblm-simple-layout .wblm-cta-inner {
    text-align: center
}

.wblm-call-to-action-holder.wblm-simple-layout .wblm-cta-button-holder {
    margin: 28px 0 0
}

.wblm-call-to-action-holder.wblm-two-halves-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-two-halves-columns .wblm-cta-text-holder {
    width: 50%
}

.wblm-call-to-action-holder.wblm-two-thirds-columns .wblm-cta-text-holder {
    width: 66.66666666666667%
}

.wblm-call-to-action-holder.wblm-two-thirds-columns .wblm-cta-button-holder {
    width: 33.33333333333333%
}

.wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-text-holder {
    width: 75%
}

.wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-button-holder {
    width: 25%
}

.wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-text-holder {
    width: 80%
}

.wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-button-holder {
    width: 20%
}

.wblm-clients-carousel-holder, .wblm-clients-carousel-holder .wblm-cc-inner, .wblm-clients-carousel-holder .wblm-cc-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.touch .wblm-clients-carousel-holder .wblm-cc-item {
    cursor: pointer
}

.wblm-clients-carousel-holder .wblm-cc-item img {
    display: block
}

.wblm-clients-carousel-holder .wblm-cc-link {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-cc-hover-switch-images .wblm-cc-item {
    display: flex;
    align-items: center;
    justify-content: center
}

.wblm-cc-hover-switch-images .wblm-cc-item.wblm-cci-has-link a:hover .wblm-cc-hover-image {
    opacity: 1
}

.wblm-cc-hover-switch-images .wblm-cc-item.wblm-cci-no-link:hover .wblm-cc-image {
    opacity: 0
}

.wblm-cc-hover-switch-images .wblm-cc-item.wblm-cci-no-link:hover .wblm-cc-hover-image {
    opacity: 1
}

.wblm-cc-hover-switch-images .wblm-cc-item.wblm-cci-no-link .wblm-cc-hover-image {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wblm-cc-hover-switch-images .wblm-cc-item .wblm-cc-image {
    width: auto;
    opacity: 1;
    will-change: opacity;
    -webkit-transition: opacity .15s ease-out;
    -moz-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out
}

.wblm-cc-hover-switch-images .wblm-cc-item .wblm-cc-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity .15s ease-out;
    -moz-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out
}

.wblm-cc-hover-roll-over .wblm-cc-item {
    overflow: hidden
}

.wblm-cc-hover-roll-over .wblm-cc-item.wblm-cci-has-link a:hover .wblm-cc-image {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.wblm-cc-hover-roll-over .wblm-cc-item.wblm-cci-has-link a:hover .wblm-cc-hover-image {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.wblm-cc-hover-roll-over .wblm-cc-item.wblm-cci-no-link:hover .wblm-cc-image {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.wblm-cc-hover-roll-over .wblm-cc-item.wblm-cci-no-link:hover .wblm-cc-hover-image {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.wblm-cc-hover-roll-over .wblm-cc-item .wblm-cc-image {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    transition: transform .4s ease
}

.wblm-cc-hover-roll-over .wblm-cc-item .wblm-cc-hover-image {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    transition: transform .4s ease
}

.wblm-clients-grid-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center
}

.wblm-clients-grid-holder.wblm-cg-alignment-left {
    text-align: left
}

.wblm-clients-grid-holder.wblm-cg-alignment-right {
    text-align: right
}

.wblm-dropcaps, .wblm-elements-holder .wblm-eh-item.wblm-horizontal-alignment-center {
    text-align: center
}

.wblm-clients-grid-holder .wblm-cc-link {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-countdown, .wblm-countdown .countdown-row, .wblm-countdown .countdown-row .countdown-section {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-countdown {
    width: 100%
}

.wblm-countdown.wblm-light-skin .countdown-row .countdown-section .countdown-amount, .wblm-countdown.wblm-light-skin .countdown-row .countdown-section .countdown-period {
    color: #fff
}

.wblm-countdown .countdown-row {
    width: 100%;
    text-align: center;
    clear: both
}

.wblm-countdown .countdown-row.countdown-show1 .countdown-section {
    width: 100%
}

.wblm-countdown .countdown-row.countdown-show2 .countdown-section {
    width: 50%
}

.wblm-countdown .countdown-row.countdown-show3 .countdown-section {
    width: 33.33333%
}

.wblm-countdown .countdown-row.countdown-show4 .countdown-section {
    width: 25%
}

.wblm-countdown .countdown-row.countdown-show5 .countdown-section {
    width: 20%
}

.wblm-countdown .countdown-row.countdown-show6 .countdown-section {
    width: 16.66667%
}

.wblm-countdown .countdown-row .countdown-section {
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box
}

.wblm-countdown .countdown-row .countdown-section .countdown-amount {
    position: relative;
    display: block;
    color: #000;
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
    font-family: Poppins, sans-serif
}

.wblm-countdown .countdown-row .countdown-section .countdown-period {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px
}

.wblm-counter-holder, .wblm-counter-holder .wblm-counter-inner {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-counter-holder {
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity .2s ease-in;
    -moz-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in
}

.wblm-counter-holder .wblm-counter {
    height: 1em;
    display: inline-block !important;
    vertical-align: middle;
    color: #000;
    line-height: 1em;
    font-weight: 600;
    overflow: hidden;
    font-size: 60px
}

.wblm-counter-holder .wblm-counter-title {
    margin: 5px 0 0
}

.wblm-counter-holder .wblm-counter-text {
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px
}

.wblm-custom-font-holder a {
    position: relative;
    color: inherit
}

.wblm-custom-font-holder a:before, .wblm-custom-font-holder a:hover:before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    left: 0
}

.wblm-custom-font-holder a:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-custom-font-holder a:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-full-screen-image-slider.wblm-fsis-active .wblm-fsis-next-nav, .wblm-full-screen-image-slider.wblm-fsis-active .wblm-fsis-slider .owl-nav .owl-next {
    right: -100px
}

.wblm-custom-font-holder .wblm-cf-typed-wrap {
    width: 0;
    white-space: nowrap
}

.wblm-custom-font-holder .wblm-cf-typed {
    display: inline-block
}

.wblm-custom-font-holder .wblm-cf-typed span {
    display: none
}

.wblm-custom-font-holder .wblm-cf-typed ~ .typed-cursor {
    display: inline-block;
    opacity: 1;
    -webkit-animation: blink .7s infinite;
    animation: blink .7s infinite
}

@-webkit-keyframes blink {
    0%, 100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
    50% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
    50% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

.wblm-dropcaps {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    line-height: 42px;
    font-size: 42px;
    color: #999;
    font-weight: 300;
    margin: 4px 19px 0 0
}

.wblm-dropcaps.wblm-circle, .wblm-dropcaps.wblm-square {
    height: 35px;
    width: 35px;
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    margin: 6px 23px 0 0;
    box-sizing: border-box
}

.wblm-dropcaps.wblm-circle {
    border-radius: 3em
}

.wblm-elements-holder {
    width: 100%;
    display: table;
    table-layout: fixed
}

.wblm-elements-holder.wblm-eh-full-height {
    height: 100%
}

.wblm-elements-holder.wblm-ehi-float .wblm-eh-item {
    float: left
}

.wblm-elements-holder.wblm-two-columns .wblm-eh-item {
    width: 50%
}

.wblm-elements-holder.wblm-three-columns .wblm-eh-item {
    width: 33.33333%
}

.wblm-elements-holder.wblm-four-columns .wblm-eh-item {
    width: 25%
}

.wblm-elements-holder.wblm-five-columns .wblm-eh-item {
    width: 20%
}

.wblm-elements-holder.wblm-six-columns .wblm-eh-item {
    width: 16.66667%
}

.wblm-elements-holder .wblm-eh-item {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.wblm-elements-holder .wblm-eh-item.wblm-vertical-alignment-top {
    vertical-align: top
}

.wblm-elements-holder .wblm-eh-item.wblm-vertical-alignment-bottom {
    vertical-align: bottom
}

.wblm-elements-holder .wblm-eh-item.wblm-horizontal-alignment-right {
    text-align: right
}

.wblm-elements-holder .wblm-eh-item .wblm-elements-holder-background-outer {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    box-sizing: border-box
}

.wblm-elements-holder .wblm-eh-item .wblm-elements-holder-background-outer .wblm-elements-holder-background-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.wblm-elements-holder .wblm-eh-item .wblm-eh-item-inner {
    position: relative;
    z-index: 1
}

.wblm-elements-holder .wblm-eh-item .wblm-elements-holder-item-inner {
    width: 100%
}

.wblm-elements-holder .wblm-eh-item.wblm-eh-expander .wblm-elements-holder-background-inner {
    transform-origin: left;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 1.75s cubic-bezier(.22, .01, 0, 1);
    -moz-transition: -moz-transform 1.75s cubic-bezier(.22, .01, 0, 1);
    transition: transform 1.75s cubic-bezier(.22, .01, 0, 1)
}

.wblm-elements-holder .wblm-eh-item.wblm-eh-expander.wblm-eh-expander-on .wblm-elements-holder-background-inner {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1)
}

.wblm-elements-holder .wblm-eh-item.wblm-eh-expander.wblm-eh-expander-from-right .wblm-elements-holder-background-inner {
    transform-origin: right
}

.wblm-frame-slider-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    padding: 50px 0 48px
}

.wblm-frame-slider-holder .wblm-fs-phone {
    display: inline-block;
    position: relative;
    z-index: 10
}

.wblm-frame-slider-holder .wblm-fs-phone img, .wblm-frame-slider-holder .wblm-fs-slides a, .wblm-frame-slider-holder .wblm-fs-slides img {
    display: block
}

.wblm-frame-slider-holder .wblm-fs-slides {
    position: absolute;
    top: 14%;
    left: 2%;
    cursor: -webkit-grab;
    visibility: hidden;
    -webkit-transform: translateX(-2%);
    -moz-transform: translateX(-2%);
    transform: translateX(-2%)
}

.wblm-full-screen-image-slider.wblm-fsis-active .wblm-fsis-prev-nav, .wblm-full-screen-image-slider.wblm-fsis-active .wblm-fsis-slider .owl-nav .owl-prev {
    left: -100px
}

@media only screen and (max-width: 768px) {
    .wblm-frame-slider-holder .wblm-fs-slides img {
        width: 90%;
        margin: auto
    }
}

@media only screen and (max-width: 480px) {
    .wblm-frame-slider-holder .wblm-fs-slides {
        top: 21%
    }

    .wblm-frame-slider-holder .wblm-fs-slides img {
        width: 80%;
        margin: auto
    }
}

.wblm-frame-slider-holder .wblm-fs-slides .wblm-fs-slide {
    margin: 0 55px;
    position: relative
}

.wblm-frame-slider-holder .wblm-owl-slider .owl-dots {
    margin: 80px 0 0
}

@media only screen and (max-width: 480px) {
    .wblm-frame-slider-holder .wblm-owl-slider .owl-dots {
        margin: 40px 0 0
    }
}

.wblm-frame-slider-holder .wblm-owl-slider .owl-dots .owl-dot {
    margin: 0 14px
}

.wblm-frame-slider-holder .wblm-owl-slider .owl-dots .owl-dot span {
    border: none;
    background-color: #a3a3a3;
    width: 8px;
    height: 8px
}

.wblm-frame-slider-holder .wblm-owl-slider .owl-dots .owl-dot.active span {
    background-color: #000;
    border: none
}

.wblm-full-screen-image-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    opacity: 0
}

.wblm-full-screen-image-slider.wblm-fsis-is-init {
    opacity: 1
}

.wblm-full-screen-image-slider.wblm-fsis-active .wblm-fsis-slider .owl-dots {
    bottom: -30px
}

.wblm-full-screen-image-slider .wblm-fsis-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100vh;
    z-index: inherit
}

.admin-bar .wblm-full-screen-image-slider .wblm-fsis-slider {
    height: calc(100vh - 32px)
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-stage-outer {
    overflow: visible
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-next, .wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-prev {
    width: 40px;
    text-align: center;
    -webkit-transition: left .4s ease, right .4s ease;
    -moz-transition: left .4s ease, right .4s ease;
    transition: left .4s ease, right .4s ease
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-prev {
    left: 25px
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-prev:hover {
    left: 15px
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-next {
    right: 25px
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav .owl-next:hover {
    right: 15px
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: calc(8% - 14px);
    width: 100%;
    margin: 0;
    counter-reset: section;
    z-index: 3;
    -webkit-transition: bottom .4s ease;
    -moz-transition: bottom .4s ease;
    transition: bottom .4s ease
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots .owl-dot {
    margin: 0 14px;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots .owl-dot.active, .wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots .owl-dot:hover {
    color: #000
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots .owl-dot span {
    display: none
}

.wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots .owl-dot:after {
    counter-increment: section;
    content: "0" counter(section)
}

.wblm-full-screen-image-slider .wblm-fsis-thumb-nav {
    position: absolute;
    top: 20%;
    height: 60%;
    width: 100px;
    display: block;
    z-index: 1;
    background-position: 20% 20%
}

.wblm-full-screen-image-slider .wblm-fsis-prev-nav {
    left: 0;
    -webkit-transition: background .3s ease, left .4s ease;
    -moz-transition: background .3s ease, left .4s ease;
    transition: background .3s ease, left .4s ease
}

.wblm-full-screen-image-slider .wblm-fsis-next-nav {
    right: 0;
    -webkit-transition: background .3s ease, right .4s ease;
    -moz-transition: background .3s ease, right .4s ease;
    transition: background .3s ease, right .4s ease
}

.wblm-full-screen-image-slider .wblm-fsis-slider-mask {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.wblm-full-screen-image-slider .wblm-fsis-slider-mask.wblm-drag {
    z-index: 2
}

.wblm-full-screen-image-slider .wblm-fsis-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100vh;
    overflow: hidden
}

.admin-bar .wblm-full-screen-image-slider .wblm-fsis-item {
    height: calc(100vh - 32px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-image-top {
    top: -2%
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-image-left {
    left: 9%
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-image-right {
    right: 14%
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-subtitle, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-title {
    top: 0;
    opacity: 1
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-image-top {
    top: calc(-2% - 10px);
    left: calc(28% - 20px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-image-left {
    bottom: calc(2% - 20px);
    left: calc(9% - 10px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-image-right {
    bottom: calc(7% - 20px);
    right: calc(14% - 10px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-top {
    height: 18%
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-right {
    width: 18%
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-image-top {
    top: calc(-2% - 25px);
    left: calc(28% - 50px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-image-left {
    bottom: calc(2% - 50px);
    left: calc(9% - 25px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-image-right {
    bottom: calc(7% - 50px);
    right: calc(14% - 25px)
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-top {
    height: 0
}

.wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-right {
    width: 0
}

.wblm-full-screen-image-slider .wblm-fsis-image-wrapper {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-full-screen-image-slider .wblm-fsis-image-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center
}

.wblm-full-screen-image-slider .wblm-fsis-image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer
}

.wblm-full-screen-image-slider .wblm-fsis-content-image {
    position: absolute
}

.wblm-full-screen-image-slider .wblm-fsis-content-image img {
    width: auto;
    max-width: 600px
}

.wblm-google-map-holder .wblm-google-map img, .wblm-iwt.wblm-iwt-icon-left .wblm-iwt-icon img, .wblm-iwt.wblm-iwt-icon-left-from-title .wblm-iwt-icon img {
    max-width: none
}

.wblm-full-screen-image-slider .wblm-fsis-image-top {
    top: -50%;
    left: 28%;
    -webkit-transform: rotate(-23deg);
    -moz-transform: rotate(-23deg);
    transform: rotate(-23deg);
    -webkit-transition: top .8s ease, left .8s ease;
    -moz-transition: top .8s ease, left .8s ease;
    transition: top .8s ease, left .8s ease
}

.wblm-full-screen-image-slider .wblm-fsis-image-left {
    bottom: 2%;
    left: -50%;
    -webkit-transform: rotate(-10.5deg);
    -moz-transform: rotate(-10.5deg);
    transform: rotate(-10.5deg);
    -webkit-transition: bottom .8s ease, left .8s ease;
    -moz-transition: bottom .8s ease, left .8s ease;
    transition: bottom .8s ease, left .8s ease
}

.wblm-full-screen-image-slider .wblm-fsis-image-right {
    bottom: 7%;
    right: -50%;
    -webkit-transform: rotate(-12deg);
    -moz-transform: rotate(-12deg);
    transform: rotate(-12deg);
    -webkit-transition: bottom .8s ease, right .8s ease;
    -moz-transition: bottom .8s ease, right .8s ease;
    transition: bottom .8s ease, right .8s ease
}

.wblm-full-screen-image-slider .wblm-fsis-title {
    position: relative;
    top: 15px;
    margin: 0;
    padding: 0 12%;
    line-height: 1.2em;
    color: #fff;
    opacity: 0;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-in, top .3s ease-in;
    -moz-transition: opacity .2s ease-in, top .3s ease-in;
    transition: opacity .2s ease-in, top .3s ease-in
}

.wblm-full-screen-image-slider .wblm-fsis-subtitle {
    position: relative;
    top: 25px;
    margin: 20px 0 0;
    padding: 0 14%;
    color: #fff;
    opacity: 0;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-in, top .3s ease-in;
    -moz-transition: opacity .2s ease-in, top .3s ease-in;
    transition: opacity .2s ease-in, top .3s ease-in
}

.wblm-full-screen-image-slider .wblm-fsis-frame {
    position: fixed;
    background-color: #fff;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease
}

.wblm-full-screen-image-slider .wblm-fsis-frame-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 20%
}

.wblm-full-screen-image-slider .wblm-fsis-frame-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%
}

.wblm-full-screen-image-slider .wblm-fsis-frame-left {
    top: 0;
    left: 0;
    width: 20%;
    height: 100%
}

.wblm-full-screen-image-slider .wblm-fsis-frame-right {
    top: 0;
    right: 0;
    width: 20%;
    height: 100%
}

.fp-enabled body, html.fp-enabled {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent
}

#superContainer {
    height: 100%;
    position: relative;
    -ms-touch-action: none;
    touch-action: none
}

.fp-scrollable {
    overflow: hidden;
    position: relative
}

.fp-scroller {
    overflow: hidden
}

.iScrollIndicator {
    border: 0 !important
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important
}

.fp-auto-height .wblm-fss-slide, .fp-auto-height .fp-tableCell, .fp-auto-height.wblm-fss-item, .fp-responsive .fp-auto-height-responsive .wblm-fss-slide, .fp-responsive .fp-auto-height-responsive .fp-tableCell, .fp-responsive .fp-auto-height-responsive.wblm-fss-item {
    height: auto !important
}

#fp-nav {
    position: fixed;
    top: 50%;
    right: 40px;
    margin: -32px 0 0;
    z-index: 1001
}

#fp-nav ul {
    margin: 0;
    padding: 0
}

#fp-nav ul li {
    position: relative;
    display: block;
    margin: 10px 0;
    padding: 0
}

#fp-nav ul li a {
    position: relative;
    width: 12px;
    height: 12px;
    display: block;
    background-color: rgba(80, 80, 80, .3);
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out
}

.wblm-full-screen-sections .wblm-fss-item .wblm-fss-item-inner a, .wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-has-link .wblm-fss-item-inner a {
    position: relative;
    z-index: 2
}

#fp-nav ul li a.active, #fp-nav ul li a:hover {
    background-color: rgba(80, 80, 80, .7)
}

.wblm-light-header #fp-nav ul li a span {
    background-color: rgba(255, 255, 255, .3)
}

.wblm-light-header #fp-nav ul li a.active span, .wblm-light-header #fp-nav ul li a:hover span {
    background-color: #fff
}

.wblm-dark-header #fp-nav ul li a span {
    background-color: rgba(0, 0, 0, .3)
}

.wblm-dark-header #fp-nav ul li a.active span, .wblm-dark-header #fp-nav ul li a:hover span {
    background-color: #000
}

#fp-nav ul li a span {
    position: relative;
    height: 100%;
    width: 100%;
    display: block
}

.wblm-full-screen-sections {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-full-screen-sections .wblm-fss-wrapper {
    visibility: hidden
}

.wblm-full-screen-sections .wblm-fss-item {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out
}

.wblm-full-screen-sections .wblm-fss-item.active {
    transform: scale(.92)
}

.wblm-full-screen-sections .wblm-fss-item.active.fp-completely {
    transform: scale(1)
}

.wblm-full-screen-sections .wblm-fss-item.fp-completely:not(.active) {
    transform: scale(.92)
}

.wblm-full-screen-sections .wblm-fss-item .fp-scroller > .vc_column_container, .wblm-full-screen-sections .wblm-fss-item .fp-scroller > .vc_column_container > .vc_column-inner {
    padding: 0;
    margin: 0
}

.wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-va-top .wblm-fss-item-inner {
    vertical-align: top
}

.wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-va-bottom .wblm-fss-item-inner {
    vertical-align: bottom
}

.wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-ha-left .wblm-fss-item-inner {
    text-align: left
}

.wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-ha-center .wblm-fss-item-inner {
    text-align: center
}

.wblm-full-screen-sections .wblm-fss-item.wblm-fss-item-ha-right .wblm-fss-item-inner {
    text-align: right
}

.wblm-full-screen-sections .wblm-fss-item .wblm-fss-item-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 5%;
    box-sizing: border-box
}

.wblm-full-screen-sections .wblm-fss-item .wblm-fss-item-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.wblm-full-screen-sections .wblm-fss-nav-holder {
    position: fixed;
    bottom: 48px;
    left: 57px;
    display: block;
    width: 55px;
    text-align: center;
    visibility: hidden;
    z-index: 1001
}

.wblm-full-screen-sections .wblm-fss-nav-holder a {
    display: block;
    font-size: 55px;
    line-height: .9;
    color: #000;
    height: auto;
    opacity: 1;
    -webkit-transition: color .2s ease-out, opacity .25s ease-out;
    -moz-transition: color .2s ease-out, opacity .25s ease-out;
    transition: color .2s ease-out, opacity .25s ease-out
}

.wblm-full-screen-sections .wblm-fss-nav-holder a:hover {
    color: rgba(0, 0, 0, .7)
}

.wblm-light-header .wblm-full-screen-sections .wblm-fss-nav-holder a {
    color: #fff
}

.wblm-light-header .wblm-full-screen-sections .wblm-fss-nav-holder a:hover {
    color: rgba(255, 255, 255, .7)
}

.wblm-dark-header .wblm-full-screen-sections .wblm-fss-nav-holder a {
    color: #000
}

.wblm-dark-header .wblm-full-screen-sections .wblm-fss-nav-holder a:hover {
    color: rgba(0, 0, 0, .7)
}

.wblm-full-screen-sections .wblm-fss-nav-holder a span, .wblm-full-screen-sections .wblm-fss-nav-holder a span:before {
    display: block;
    line-height: inherit
}

@media only screen and (max-width: 1024px) {
    #fp-nav {
        right: 30px
    }

    .wblm-full-screen-sections .wblm-fss-nav-holder {
        bottom: 28px;
        left: 37px
    }
}

.wblm-google-map-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-google-map-holder .wblm-google-map-direction {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0 8px;
    font-size: 13px;
    line-height: 24px;
    color: #000;
    background-color: #fff;
    z-index: 999;
    box-sizing: border-box
}

.wblm-google-map-holder .wblm-google-map-direction:hover {
    color: #000
}

.wblm-google-map-holder .wblm-google-map {
    display: block;
    width: 100%;
    height: 300px
}

.wblm-google-map-holder .wblm-google-map embed, .wblm-google-map-holder .wblm-google-map iframe, .wblm-google-map-holder .wblm-google-map object {
    width: 100%;
    display: block
}

.wblm-google-map-holder .wblm-snazzy-map {
    display: none
}

.wblm-google-map-holder .wblm-google-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000
}

.wblm-icon-list-holder {
    position: relative;
    display: table;
    table-layout: fixed;
    height: auto;
    width: 100%;
    margin-bottom: 8px
}

.wblm-icon-list-holder .wblm-il-icon-holder, .wblm-icon-list-holder .wblm-il-text {
    position: relative;
    display: table-cell;
    vertical-align: top
}

.wblm-icon-list-holder .wblm-il-icon-holder {
    width: 1%
}

.wblm-icon-list-holder .wblm-il-icon-holder > * {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #000;
    font-size: 17px;
    line-height: inherit
}

.wblm-iwt, .wblm-iwt .wblm-iwt-icon a {
    vertical-align: middle
}

.wblm-icon-list-holder .wblm-il-icon-holder > :before {
    display: block;
    line-height: inherit
}

.wblm-iwt, .wblm-iwt .wblm-iwt-icon a, .wblm-iwt .wblm-iwt-title a {
    display: inline-block;
    position: relative
}

.wblm-icon-list-holder .wblm-il-text {
    width: 99%;
    padding: 0 0 0 13px;
    box-sizing: border-box
}

.wblm-iwt {
    width: 100%
}

.wblm-iwt .wblm-iwt-icon .wblm-icon-shortcode {
    line-height: 1
}

.wblm-iwt .wblm-iwt-icon .wblm-icon-shortcode.wblm-circle, .wblm-iwt .wblm-iwt-icon .wblm-icon-shortcode.wblm-dropcaps.wblm-circle, .wblm-iwt .wblm-iwt-icon .wblm-icon-shortcode.wblm-square {
    line-height: 2
}

.wblm-iwt .wblm-iwt-title {
    margin: 0;
    line-height: 1.2em
}

.wblm-iwt .wblm-iwt-title a {
    vertical-align: top
}

.wblm-iwt .wblm-iwt-title-text {
    display: block
}

.wblm-iwt .wblm-iwt-text {
    margin: 12px 0 0
}

.wblm-iwt.wblm-iwt-icon-left {
    width: auto
}

.wblm-iwt.wblm-iwt-icon-left .wblm-iwt-content, .wblm-iwt.wblm-iwt-icon-left .wblm-iwt-icon {
    display: table-cell;
    vertical-align: top
}

.wblm-iwt.wblm-iwt-icon-left .wblm-iwt-icon {
    position: relative;
    top: 1px
}

.wblm-iwt.wblm-iwt-icon-left .wblm-iwt-content {
    padding: 0 0 0 13px
}

.wblm-iwt.wblm-iwt-icon-left-from-title .wblm-iwt-icon, .wblm-iwt.wblm-iwt-icon-left-from-title .wblm-iwt-title-text {
    position: relative;
    display: table-cell;
    vertical-align: middle
}

.wblm-iwt.wblm-iwt-icon-left-from-title .wblm-iwt-icon .wblm-icon-element {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.wblm-iwt.wblm-iwt-icon-left-from-title .wblm-iwt-title-text {
    padding: 0 0 0 17px
}

.wblm-iwt.wblm-iwt-icon-top {
    text-align: center
}

.wblm-iwt.wblm-iwt-icon-top .wblm-iwt-content {
    padding: 23px 0 0
}

.wblm-icon-shortcode {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.1em
}

.wblm-icon-shortcode.wblm-circle, .wblm-icon-shortcode.wblm-dropcaps.wblm-circle, .wblm-icon-shortcode.wblm-square {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    background-color: #000;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out
}

.wblm-icon-shortcode.wblm-circle a, .wblm-icon-shortcode.wblm-dropcaps.wblm-circle a, .wblm-icon-shortcode.wblm-square a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%
}

.wblm-icon-shortcode.wblm-circle .wblm-icon-element, .wblm-icon-shortcode.wblm-dropcaps.wblm-circle .wblm-icon-element, .wblm-icon-shortcode.wblm-square .wblm-icon-element {
    color: #fff;
    line-height: inherit
}

.wblm-icon-shortcode.wblm-circle {
    border-radius: 50%
}

.wblm-icon-shortcode .wblm-icon-element {
    display: block;
    line-height: inherit;
    -webkit-transition: color .15s ease-in-out;
    -moz-transition: color .15s ease-in-out;
    transition: color .15s ease-in-out
}

.wblm-icon-shortcode .wblm-icon-element:before {
    display: block;
    line-height: inherit
}

.wblm-icon-animation-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: transform .15s ease-in-out;
    -moz-transition: transform .15s ease-in-out;
    transition: transform .15s ease-in-out
}

.wblm-icon-animation-holder.wblm-icon-animation-show {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
}

.wblm-icon-tiny {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.wblm-icon-small {
    font-size: 2em
}

.wblm-icon-medium {
    font-size: 3em
}

.wblm-icon-large {
    font-size: 4em
}

.wblm-icon-huge {
    font-size: 5em
}

.wblm-image-gallery {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-image-gallery.wblm-has-shadow.wblm-ig-carousel-type .owl-stage-outer, .wblm-image-gallery.wblm-has-shadow.wblm-ig-slider-type .owl-stage-outer {
    padding: 0 0 20px
}

.wblm-image-gallery .wblm-ig-image a, .wblm-image-gallery .wblm-ig-image img {
    position: relative;
    display: block
}

.wblm-image-gallery .wblm-ig-image-inner, .wblm-image-gallery .wblm-ig-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-image-gallery.wblm-ig-masonry-type .wblm-ig-image.wblm-fixed-masonry-item .wblm-ig-image-inner, .wblm-image-gallery.wblm-ig-masonry-type .wblm-ig-image.wblm-fixed-masonry-item a {
    height: 100%
}

.wblm-image-gallery.wblm-image-behavior-custom-link .wblm-ig-image a:hover:after {
    opacity: 1
}

.wblm-image-gallery.wblm-image-behavior-custom-link .wblm-ig-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-image-gallery.wblm-image-behavior-lightbox .wblm-ig-image a:hover:after {
    opacity: 1
}

.wblm-image-gallery.wblm-image-behavior-lightbox .wblm-ig-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-image-with-text-holder, .wblm-image-with-text-holder .wblm-iwt-image {
    display: inline-block;
    position: relative;
    width: 100%;
    vertical-align: middle
}

.touch .wblm-image-gallery.wblm-image-behavior-zoom .wblm-ig-image {
    cursor: pointer
}

.wblm-image-gallery.wblm-image-behavior-zoom .wblm-ig-image:hover img {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04)
}

.wblm-image-gallery.wblm-image-behavior-zoom .wblm-ig-image .wblm-ig-image-inner {
    overflow: hidden
}

.wblm-image-gallery.wblm-image-behavior-zoom .wblm-ig-image img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out
}

.wblm-image-gallery.wblm-image-behavior-grayscale .wblm-ig-image {
    overflow: hidden
}

.touch .wblm-image-gallery.wblm-image-behavior-grayscale .wblm-ig-image {
    cursor: pointer
}

.wblm-image-gallery.wblm-image-behavior-grayscale .wblm-ig-image:hover img {
    -webkit-filter: grayscale(0);
    filter: none
}

.wblm-image-gallery.wblm-image-behavior-grayscale .wblm-ig-image img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.wblm-image-with-text-holder .wblm-iwt-image a, .wblm-image-with-text-holder .wblm-iwt-image img {
    position: relative;
    display: block
}

.wblm-image-with-text-holder .wblm-iwt-text-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-image-with-text-holder .wblm-iwt-title {
    margin: 32px 0 0
}

.wblm-image-with-text-holder p.wblm-iwt-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .42em;
    line-height: 21px;
    font-family: Montserrat, sans-serif
}

.wblm-image-with-text-holder .wblm-iwt-text {
    margin: 14px 0 0
}

.wblm-image-with-text-holder.wblm-image-behavior-custom-link .wblm-iwt-image {
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s
}

.wblm-image-with-text-holder.wblm-image-behavior-custom-link:hover .wblm-iwt-image {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
}

.wblm-image-with-text-holder.wblm-image-behavior-lightbox .wblm-iwt-image a:hover:after {
    opacity: 1
}

.wblm-image-with-text-holder.wblm-image-behavior-lightbox .wblm-iwt-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-image-with-text-holder.wblm-image-behavior-zoom .wblm-iwt-image {
    overflow: hidden
}

.touch .wblm-image-with-text-holder.wblm-image-behavior-zoom .wblm-iwt-image {
    cursor: pointer
}

.wblm-image-with-text-holder.wblm-image-behavior-zoom .wblm-iwt-image:hover img {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04)
}

.wblm-image-with-text-holder.wblm-image-behavior-zoom .wblm-iwt-image img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out
}

.wblm-image-with-text-holder.wblm-image-behavior-grayscale .wblm-iwt-image {
    overflow: hidden
}

.touch .wblm-image-with-text-holder.wblm-image-behavior-grayscale .wblm-iwt-image {
    cursor: pointer
}

.wblm-image-with-text-holder.wblm-image-behavior-grayscale .wblm-iwt-image:hover img {
    -webkit-filter: grayscale(0);
    filter: none
}

.wblm-image-with-text-holder.wblm-image-behavior-grayscale .wblm-iwt-image img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.wblm-intro-masonry {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1111;
    overflow: hidden
}

@keyframes dotPulse {
    to {
        opacity: 0
    }
}

.wblm-intro-masonry .wblm-im-preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: dotPulse .65s alternate infinite ease-in-out;
    -moz-animation: dotPulse .65s alternate infinite ease-in-out;
    animation: dotPulse .65s alternate infinite ease-in-out
}

.wblm-intro-masonry .wblm-im-preloader:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: currentColor;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.wblm-intro-masonry .wblm-masonry-list-wrapper .wblm-masonry-grid-sizer {
    width: 14.2857143%
}

.wblm-intro-masonry .wblm-masonry-list-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr
}

@media only screen and (max-width: 1200px) {
    .wblm-intro-masonry .wblm-masonry-list-wrapper {
        -ms-grid-columns: 1fr 1fr 1fr 1fr !important;
        grid-template-columns:1fr 1fr 1fr 1fr !important
    }
}

@keyframes wblmIMAppear {
    to {
        opacity: 1
    }
}

.wblm-intro-masonry .wblm-im-image, .wblm-linked-images {
    opacity: 0
}

.wblm-intro-masonry .wblm-im-image.animated {
    -webkit-animation: wblmIMAppear .35s forwards;
    -moz-animation: wblmIMAppear .35s forwards;
    animation: wblmIMAppear .35s forwards
}

.wblm-intro-masonry .wblm-im-image.wblm-masonry-size-large-width-height {
    -ms-grid-row-span: 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    grid-row-end: span 2
}

.wblm-intro-masonry .wblm-im-image.wblm-masonry-size-large-width {
    -ms-grid-column-span: 2;
    grid-column-end: span 2
}

.wblm-intro-masonry .wblm-im-image.wblm-masonry-size-large-height {
    -ms-grid-row-span: 2;
    grid-row-end: span 2
}

.wblm-intro-masonry .wblm-im-image a, .wblm-intro-masonry .wblm-im-image img {
    position: relative;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.wblm-intro-masonry .wblm-im-image.wblm-fixed-masonry-item .wblm-im-image-inner, .wblm-intro-masonry .wblm-im-image.wblm-fixed-masonry-item a {
    height: 100%
}

.wblm-intro-masonry .wblm-im-image-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%
}

.wblm-item-move-up {
    -webkit-transition: transform .5s .65s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .5s .65s cubic-bezier(.165, .84, .44, 1);
    transition: transform .5s .65s cubic-bezier(.165, .84, .44, 1)
}

.wblm-linked-images.wblm-linked-images-no-space {
    margin: 0
}

.wblm-linked-images.wblm-linked-images-no-space .wblm-linked-image-holder {
    padding: 0
}

.wblm-linked-images.wblm-linked-images-tiny-space {
    margin: 0 -6px
}

.wblm-linked-images.wblm-linked-images-tiny-space .wblm-linked-image-holder {
    padding: 0 6px
}

.wblm-linked-images.wblm-linked-images-small-space {
    margin: 0 -10px
}

.wblm-linked-images.wblm-linked-images-small-space .wblm-linked-image-holder {
    padding: 0 10px
}

.wblm-linked-images.wblm-linked-images-normal-space {
    margin: 0 -15px
}

.wblm-linked-images.wblm-linked-images-normal-space .wblm-linked-image-holder {
    padding: 0 15px
}

.wblm-linked-images.wblm-linked-images-medium-space {
    margin: 0 -20px
}

.wblm-linked-images.wblm-linked-images-medium-space .wblm-linked-image-holder {
    padding: 0 20px
}

.wblm-linked-images.wblm-linked-images-large-space {
    margin: 0 -25px
}

.wblm-linked-images.wblm-linked-images-large-space .wblm-linked-image-holder {
    padding: 0 25px
}

.wblm-linked-images.wblm-linked-images-huge-space {
    margin: 0 -40px
}

.wblm-linked-images.wblm-linked-images-huge-space .wblm-linked-image-holder {
    padding: 0 40px
}

.wblm-linked-images .wblm-btn {
    line-height: 2.2em
}

.wblm-linked-images .wblm-linked-image-holder {
    float: left;
    box-sizing: border-box
}

.wblm-linked-images .wblm-linked-image-holder .wblm-linked-image-image-holder {
    position: relative;
    overflow: hidden;
    max-width: 100%
}

.wblm-linked-images .wblm-linked-image-holder .wblm-linked-image-image-holder .wblm-linked-image-image-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 21
}

.wblm-linked-images .wblm-linked-image-holder .wblm-linked-image-image {
    position: relative;
    display: block;
    background-size: cover;
    backface-visibility: hidden;
    width: 110%;
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-linked-images .wblm-linked-image-holder:hover .wblm-linked-image-image {
    -webkit-transform: translateX(-4%) rotate(.1deg);
    -moz-transform: translateX(-4%) rotate(.1deg);
    transform: translateX(-4%) rotate(.1deg);
    -webkit-transition: -webkit-transform 1s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform 1s cubic-bezier(.33, .02, 0, .93);
    transition: transform 1s cubic-bezier(.33, .02, 0, .93)
}

.wblm-linked-images.wblm-linked-images-one-image .wblm-linked-image-holder {
    width: 100%
}

.wblm-linked-images.wblm-linked-images-two-images .wblm-linked-image-holder {
    width: 50%
}

.wblm-linked-images.wblm-linked-images-three-images .wblm-linked-image-holder {
    width: 33.33%
}

.wblm-linked-images.wblm-linked-images-four-images .wblm-linked-image-holder {
    width: 25%
}

.wblm-linked-images.wblm-linked-images-five-images .wblm-linked-image-holder {
    width: 20%
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-holder .wblm-linked-image-image img {
    height: 100%;
    width: auto;
    max-width: none
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder {
    position: relative
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-linked-image-description-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 22;
    text-align: center;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-linked-image-foreground-image {
    display: inline-block
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-btn.wblm-btn-solid {
    color: #000;
    background-color: #fff;
    position: relative;
    z-index: 102
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-btn.wblm-btn-solid:hover {
    color: #000 !important;
    background-color: #fff !important;
    border-color: #fff !important
}

.wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-btn.wblm-btn-solid::after, .wblm-linked-images.wblm-linked-images-full-height .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-btn.wblm-btn-solid::before {
    background-color: #fff
}

.wblm-linked-images.wblm-linked-images-full-height.wblm-predefined-content-position .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-linked-image-description {
    display: block;
    width: 100%;
    height: 100%
}

.wblm-linked-images.wblm-linked-images-full-height.wblm-predefined-content-position .wblm-linked-image-image-holder .wblm-linked-image-description-wrapper .wblm-linked-image-description .wblm-linked-image-button {
    position: relative;
    top: 50%;
    display: inline-block;
    -webkit-transform: translateY(calc(-50% + 85px));
    -moz-transform: translateY(calc(-50% + 85px));
    transform: translateY(calc(-50% + 85px))
}

.wblm-pie-chart-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    opacity: 0;
    -webkit-transition: opacity .2s ease-in;
    -moz-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in
}

.wblm-pie-chart-holder .wblm-pc-percentage {
    position: relative;
    display: block;
    height: 176px;
    width: 176px;
    line-height: 176px;
    text-align: center;
    margin: 0 auto
}

.wblm-pie-chart-holder .wblm-pc-percentage canvas {
    position: absolute;
    top: 0;
    left: 0
}

.wblm-pie-chart-holder .wblm-pc-percentage .wblm-pc-percent {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: #000;
    font-size: 36px;
    line-height: inherit;
    font-weight: 600
}

.wblm-pie-chart-holder .wblm-pc-percentage .wblm-pc-percent:after {
    position: relative;
    top: -15px;
    content: '%';
    font-size: 15px
}

.wblm-pie-chart-holder .wblm-pc-text-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    margin: 30px 0 0
}

.wblm-pie-chart-holder .wblm-pc-text-holder .wblm-pc-title {
    margin: 0
}

.wblm-pie-chart-holder .wblm-pc-text-holder .wblm-pc-text {
    margin: 14px 0 0
}

.wblm-pricing-tables {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

@media only screen and (max-width: 1024px) {
    .wblm-price-table {
        width: 50% !important;
        clear: none
    }
}

@media only screen and (max-width: 768px) {
    .wblm-price-table {
        width: 100% !important;
        clear: none
    }
}

.wblm-price-table .wblm-pt-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    background-color: #f7f8f9
}

.wblm-price-table .wblm-pt-inner .wblm-price-active {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 15px;
    width: 50px;
    height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    z-index: 100;
    box-sizing: border-box;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0);
    right: 1px;
    background-color: #000
}

.wblm-price-table .wblm-pt-inner > ul {
    list-style: none;
    margin: 0;
    padding: 28px 44px 42px
}

@media screen and (max-width: 768px) {
    .wblm-price-table .wblm-pt-inner > ul {
        padding: 28px 20px 42px
    }
}

.wblm-price-table .wblm-pt-inner > ul > li {
    margin: 0
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-title-holder {
    position: relative;
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 1px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-title-holder .wblm-pt-title {
    display: block;
    padding: 17px 0 13px;
    box-sizing: border-box
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-prices {
    position: relative
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-prices .wblm-pt-price, .wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-prices .wblm-pt-value {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
    color: #000;
    font-family: Poppins, sans-serif
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-prices .wblm-pt-mark {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 18px;
    font-family: Poppins, sans-serif;
    bottom: -17px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-prices .wblm-pt-mark:before {
    content: '/';
    font-size: 23px;
    position: relative;
    left: -3px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-content {
    padding: 20px 6px;
    line-height: 26px;
    font-size: 15px;
    font-weight: 400
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-content > ul {
    padding: 20px 0 0;
    list-style: none;
    font-size: 16px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-content > ul > li {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 9px;
    padding-left: 9px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-content > ul > li:before {
    font-family: ElegantIcons;
    content: "\4e";
    font-size: 20px;
    position: relative;
    bottom: -3px;
    left: -15px
}

.wblm-price-table .wblm-pt-inner > ul > li.wblm-pt-button {
    padding: 3px
}

.wblm-process-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-process-holder.wblm-two-columns .wblm-mark-horizontal-holder .wblm-process-mark, .wblm-process-holder.wblm-two-columns .wblm-process-item {
    width: 50%
}

.wblm-process-holder.wblm-two-columns .wblm-mark-vertical-holder .wblm-process-mark {
    height: 50%
}

.wblm-process-holder.wblm-three-columns .wblm-mark-horizontal-holder .wblm-process-mark, .wblm-process-holder.wblm-three-columns .wblm-process-item {
    width: 33.33333%
}

.wblm-process-holder.wblm-three-columns .wblm-mark-vertical-holder .wblm-process-mark {
    height: 33.33333%
}

.wblm-process-holder.wblm-four-columns .wblm-mark-horizontal-holder .wblm-process-mark, .wblm-process-holder.wblm-four-columns .wblm-process-item {
    width: 25%
}

.wblm-process-holder.wblm-four-columns .wblm-mark-vertical-holder .wblm-process-mark {
    height: 25%
}

.wblm-process-holder.wblm-process-appeared .wblm-process-circle {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
}

.wblm-process-holder.wblm-process-appeared .wblm-mark-horizontal-holder .wblm-process-line {
    width: 100%
}

.wblm-process-holder.wblm-process-appeared .wblm-mark-vertical-holder .wblm-process-line {
    height: 100%
}

.wblm-process-holder.wblm-process-appeared .wblm-process-item {
    opacity: 1
}

.wblm-process-holder .wblm-mark-horizontal-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both
}

.wblm-process-holder .wblm-mark-horizontal-holder .wblm-process-mark {
    float: left
}

.wblm-process-holder .wblm-mark-horizontal-holder .wblm-process-line {
    top: 50%;
    left: 50%;
    width: 0;
    height: 1px;
    -webkit-transition: width .4s ease .1s;
    -moz-transition: width .4s ease .1s;
    transition: width .4s ease .1s
}

.wblm-process-holder .wblm-mark-vertical-holder {
    position: absolute;
    top: 26px;
    left: 0;
    display: none;
    width: 46px;
    height: 100%
}

.wblm-process-holder .wblm-mark-vertical-holder .wblm-process-line {
    top: 23px;
    left: 50%;
    width: 1px;
    height: 0;
    -webkit-transition: height .4s ease .1s;
    -moz-transition: height .4s ease .1s;
    transition: height .4s ease .1s
}

.wblm-process-holder .wblm-process-mark {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center
}

.wblm-process-holder .wblm-process-mark:last-child .wblm-process-line {
    display: none
}

.wblm-process-holder .wblm-process-mark:nth-child(2) .wblm-process-circle {
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    transition-delay: .5s
}

.wblm-process-holder .wblm-process-mark:nth-child(2) .wblm-process-line {
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s
}

.wblm-process-holder .wblm-process-mark:nth-child(3) .wblm-process-circle {
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    transition-delay: 1s
}

.wblm-process-holder .wblm-process-mark:nth-child(3) .wblm-process-line {
    -webkit-transition-delay: 1.2s;
    -moz-transition-delay: 1.2s;
    transition-delay: 1.2s
}

.wblm-process-holder .wblm-process-mark:nth-child(4) .wblm-process-circle {
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.wblm-process-holder .wblm-process-mark:nth-child(4) .wblm-process-line {
    -webkit-transition-delay: 1.8s;
    -moz-transition-delay: 1.8s;
    transition-delay: 1.8s
}

.wblm-process-holder .wblm-process-circle {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 46px;
    height: 46px;
    font-size: 18px;
    line-height: 46px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
    -moz-transition: opacity .2s ease, -moz-transform .3s ease;
    transition: opacity .2s ease, transform .3s ease;
    -webkit-transform: scale(.6);
    -moz-transform: scale(.6);
    transform: scale(.6)
}

.wblm-process-holder .wblm-process-line {
    position: absolute;
    background-color: #000
}

.wblm-process-holder .wblm-process-inner {
    margin: 0 -15px
}

.wblm-process-holder .wblm-process-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    padding: 0 15px;
    opacity: 0;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.wblm-process-holder .wblm-process-item:nth-child(2) {
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    transition-delay: .5s
}

.wblm-process-holder .wblm-process-item:nth-child(3) {
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    transition-delay: 1s
}

.wblm-process-holder .wblm-process-item:nth-child(4) {
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.wblm-process-holder .wblm-pi-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 26px 0 10px
}

.wblm-process-holder .wblm-pi-title {
    margin: 0
}

.wblm-process-holder .wblm-pi-text {
    margin: 11px 0 0
}

.wblm-progress-bar {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-progress-bar.wblm-pb-percent-floating {
    width: 100%;
    height: 100%
}

.wblm-progress-bar.wblm-pb-percent-floating .wblm-pb-percent {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wblm-progress-bar .wblm-pb-title-holder {
    position: relative;
    margin: 10px 0 4px
}

.wblm-progress-bar .wblm-pb-title-holder .wblm-pb-title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 100
}

.wblm-progress-bar .wblm-pb-percent {
    position: absolute;
    right: 0;
    bottom: 1px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    z-index: 10
}

.wblm-progress-bar .wblm-pb-percent:after {
    content: '%'
}

.wblm-progress-bar .wblm-pb-content-holder {
    position: relative;
    height: 2px;
    overflow: hidden;
    background-color: #e1e1e1
}

.wblm-progress-bar .wblm-pb-content-holder .wblm-pb-content {
    height: 2px;
    max-width: 100%;
    overflow: hidden;
    background-color: #000
}

.wblm-section-title-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-tiny-space .wblm-st-inner {
    margin: 0 -5px
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-tiny-space .wblm-st-text, .wblm-section-title-holder.wblm-st-two-columns.wblm-st-tiny-space .wblm-st-title {
    padding: 0 5px
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-small-space .wblm-st-inner {
    margin: 0 -10px
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-small-space .wblm-st-text, .wblm-section-title-holder.wblm-st-two-columns.wblm-st-small-space .wblm-st-title {
    padding: 0 10px
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-normal-space .wblm-st-inner {
    margin: 0 -15px
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-normal-space .wblm-st-text, .wblm-section-title-holder.wblm-st-two-columns.wblm-st-normal-space .wblm-st-title {
    padding: 0 15px
}

.wblm-section-title-holder.wblm-st-two-columns .wblm-st-text, .wblm-section-title-holder.wblm-st-two-columns .wblm-st-title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    float: left;
    margin: 0;
    box-sizing: border-box
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-title-left .wblm-st-title {
    text-align: right
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-title-left .wblm-st-text {
    text-align: left
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-title-right .wblm-st-title {
    float: right;
    text-align: left
}

.wblm-section-title-holder.wblm-st-two-columns.wblm-st-title-right .wblm-st-text {
    text-align: right
}

.wblm-section-title-holder .wblm-st-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .29em;
    line-height: 21px;
    font-family: Montserrat, sans-serif;
    color: #3d3d3d
}

.wblm-section-title-holder .wblm-st-title {
    display: block;
    margin: 0;
    padding-top: 6px
}

.wblm-section-title-holder .wblm-st-title .wblm-st-title-bold {
    font-weight: 700
}

.wblm-section-title-holder .wblm-st-title .wblm-st-title-light {
    font-weight: 300
}

.wblm-section-title-holder .wblm-st-title .wblm-st-title-background {
    margin: 0;
    display: inline;
    background-position: 0 100%;
    background-size: 100% 50%;
    padding: 0 4px
}

.wblm-section-title-holder .wblm-st-text {
    display: block;
    margin: 28px 0 0;
    line-height: 27px
}

.wblm-separator, .wblm-single-image-holder, .wblm-single-image-holder .wblm-si-inner {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-separator-holder {
    position: relative;
    height: auto;
    font-size: 0;
    line-height: 1em
}

.wblm-separator-holder.wblm-separator-center {
    text-align: center
}

.wblm-separator-holder.wblm-separator-left {
    text-align: left
}

.wblm-separator-holder.wblm-separator-right {
    text-align: right
}

.wblm-separator-holder.wblm-separator-full-width .wblm-separator {
    width: 100% !important
}

.wblm-separator {
    border-bottom: 1px solid #ebebeb;
    margin: 10px 0
}

.wblm-single-image-holder {
    width: 100%
}

.wblm-single-image-holder .wblm-si-inner {
    width: 100%
}

.wblm-single-image-holder .wblm-si-inner a, .wblm-single-image-holder .wblm-si-inner img {
    position: relative;
    display: block
}

.wblm-single-image-holder.wblm-image-behavior-custom-link .wblm-si-inner a {
    overflow: hidden
}

.wblm-single-image-holder.wblm-image-behavior-custom-link .wblm-si-inner a img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-single-image-holder.wblm-image-behavior-custom-link .wblm-si-inner a:hover img {
    -webkit-transform: scale(1.1) translateX(-4%);
    -moz-transform: scale(1.1) translateX(-4%);
    transform: scale(1.1) translateX(-4%);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93);
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-instagram-feed li a:after, .wblm-single-image-holder.wblm-image-behavior-lightbox .wblm-si-inner a:after {
    content: '';
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out
}

.wblm-single-image-holder.wblm-image-behavior-lightbox .wblm-si-inner a:hover:after {
    opacity: 1
}

.wblm-single-image-holder.wblm-image-behavior-lightbox .wblm-si-inner a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    transition: opacity .2s ease-in-out
}

.wblm-single-image-holder.wblm-image-behavior-zoom .wblm-si-inner {
    overflow: hidden
}

.touch .wblm-single-image-holder.wblm-image-behavior-zoom .wblm-si-inner {
    cursor: pointer
}

.wblm-single-image-holder.wblm-image-behavior-zoom .wblm-si-inner:hover img {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04)
}

.wblm-single-image-holder.wblm-image-behavior-zoom .wblm-si-inner img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out
}

.wblm-single-image-holder.wblm-image-behavior-grayscale .wblm-si-inner {
    overflow: hidden
}

.touch .wblm-single-image-holder.wblm-image-behavior-grayscale .wblm-si-inner {
    cursor: pointer
}

.wblm-single-image-holder.wblm-image-behavior-grayscale .wblm-si-inner:hover img {
    -webkit-filter: grayscale(0);
    filter: none
}

.wblm-single-image-holder.wblm-image-behavior-grayscale .wblm-si-inner img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner {
    overflow: hidden;
    padding: 10% 0;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 120%;
    -webkit-transition: background .7s ease-out;
    -moz-transition: background .7s ease-out;
    transition: background .7s ease-out
}

.wblm-social-share-holder ul, .wblm-social-share-holder.wblm-list li, .wblm-social-share-holder.wblm-text li {
    vertical-align: top;
    padding: 0;
    display: inline-block;
    position: relative
}

.wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner:hover {
    background-position: 90% center
}

.touch .wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner {
    cursor: pointer
}

.wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner img {
    z-index: -1;
    max-width: 80%
}

@media only screen and (max-width: 1024px) {
    .wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner {
        padding: 0;
        background: 0 0
    }

    .wblm-single-image-holder.wblm-image-behavior-moving .wblm-si-inner img {
        z-index: inherit;
        max-width: 100%
    }
}

.wblm-social-share-holder {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-social-share-holder ul {
    list-style: none;
    margin: 0
}

.wblm-social-share-holder.wblm-list .wblm-social-title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px 0 0;
    color: #000;
    font-weight: 600
}

.wblm-social-share-holder.wblm-list li {
    margin: 0 13px 3px 0
}

.wblm-social-share-holder.wblm-list li:last-child {
    margin: 0 0 3px
}

.wblm-social-share-holder.wblm-list li a {
    font-size: 12px;
    color: #000
}

.wblm-social-share-holder.wblm-list li a:hover {
    color: rgba(0, 0, 0, .7)
}

.wblm-social-share-holder.wblm-list li a span {
    color: inherit
}

.wblm-social-share-holder.wblm-text .wblm-social-title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px 0 0;
    color: #000;
    font-weight: 600
}

.wblm-social-share-holder.wblm-text li {
    margin: 0 13px 3px 0
}

.wblm-social-share-holder.wblm-text li:last-child {
    margin: 0 0 3px
}

.wblm-social-share-holder.wblm-text li a {
    font-size: 15px
}

.wblm-social-share-holder.wblm-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: bottom
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown-opener {
    display: block;
    color: #000
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown-opener .wblm-social-share-title {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown-opener .social_share {
    font-size: 12px;
    color: #000
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown-opener:hover {
    color: #000
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown-opener:hover .social_share {
    color: inherit
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown {
    position: relative;
    visibility: hidden;
    z-index: 950
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul {
    position: relative;
    display: block;
    z-index: 990;
    margin: 0;
    padding: 0 !important
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li {
    width: 88px;
    height: 28px;
    line-height: 28px;
    visibility: hidden;
    position: absolute;
    text-align: center;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 12px;
    color: #000;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-out 0s, visibility .2s ease-out 0s, background-color .2s ease-out 0s;
    -moz-transition: opacity .2s ease-out 0s, visibility .2s ease-out 0s, background-color .2s ease-out 0s;
    transition: opacity .2s ease-out 0s, visibility .2s ease-out 0s, background-color .2s ease-out 0s
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:not(:first-child) {
    border-top: none
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-facebook-share:hover {
    background-color: #3b5998;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-twitter-share:hover {
    background-color: #00aced;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-google_plus-share:hover {
    background-color: #dd4b39;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-linkedin-share:hover {
    background-color: #007bb5;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-tumblr-share:hover {
    background-color: #32506d;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-pinterest-share:hover {
    background-color: #cb2027;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li.wblm-vk-share:hover {
    background-color: #45668e;
    color: #fff
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li * {
    display: block;
    line-height: inherit
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li a {
    color: inherit !important
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(1) {
    bottom: -28px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(2) {
    bottom: -56px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(3) {
    bottom: -84px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(4) {
    bottom: -112px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(5) {
    bottom: -140px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(6) {
    bottom: -168px
}

.wblm-social-share-holder.wblm-dropdown .wblm-social-share-dropdown ul li:nth-child(7) {
    bottom: -196px
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li {
    opacity: 1;
    visibility: visible;
    cursor: pointer
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(2) {
    -webkit-transition: opacity .2s ease-out .2s, visibility .2s ease-out .2s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .2s, visibility .2s ease-out .2s, background-color .2s ease-out;
    transition: opacity .2s ease-out .2s, visibility .2s ease-out .2s, background-color .2s ease-out
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(3) {
    -webkit-transition: opacity .2s ease-out .3s, visibility .2s ease-out .3s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .3s, visibility .2s ease-out .3s, background-color .2s ease-out;
    transition: opacity .2s ease-out .3s, visibility .2s ease-out .3s, background-color .2s ease-out
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(4) {
    -webkit-transition: opacity .2s ease-out .4s, visibility .2s ease-out .4s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .4s, visibility .2s ease-out .4s, background-color .2s ease-out;
    transition: opacity .2s ease-out .4s, visibility .2s ease-out .4s, background-color .2s ease-out
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(5) {
    -webkit-transition: opacity .2s ease-out .5s, visibility .2s ease-out .5s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .5s, visibility .2s ease-out .5s, background-color .2s ease-out;
    transition: opacity .2s ease-out .5s, visibility .2s ease-out .5s, background-color .2s ease-out
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(6) {
    -webkit-transition: opacity .2s ease-out .6s, visibility .2s ease-out .6s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .6s, visibility .2s ease-out .6s, background-color .2s ease-out;
    transition: opacity .2s ease-out .6s, visibility .2s ease-out .6s, background-color .2s ease-out
}

.wblm-social-share-holder.wblm-dropdown:hover .wblm-social-share-dropdown ul li:nth-child(7) {
    -webkit-transition: opacity .2s ease-out .7s, visibility .2s ease-out .7s, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out .7s, visibility .2s ease-out .7s, background-color .2s ease-out;
    transition: opacity .2s ease-out .7s, visibility .2s ease-out .7s, background-color .2s ease-out
}

.wblm-ss-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-ss-holder .wblm-ss-image img, .wblm-vss-responsive {
    display: none
}

.wblm-ss-holder.wblm-ss-image-right .wblm-ss-image {
    left: 50%
}

.wblm-ss-holder.wblm-ss-image-right .wblm-ss-content {
    left: 0
}

.wblm-ss-holder .wblm-ss-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.wblm-ss-holder .wblm-ss-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    left: 50%;
    width: 50%;
    padding: 30px;
    box-sizing: border-box
}

.wblm-tabs, .wblm-tabs .wblm-tab-container, .wblm-tabs .wblm-tabs-nav {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-ss-holder .wblm-ss-title {
    margin: 0
}

.wblm-ss-holder .wblm-ss-text {
    margin: 14px 0 0
}

.wblm-ss-holder .wblm-ss-link {
    margin: 25px 0 0
}

.wblm-tabs .wblm-tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none
}

.wblm-tabs .wblm-tabs-nav li {
    float: left;
    margin: 0;
    padding: 0
}

.wblm-tabs .wblm-tabs-nav li a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    -moz-transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out
}

.wblm-tabs .wblm-tab-container {
    box-sizing: border-box
}

.wblm-tabs .wblm-tab-container p {
    margin: 0;
    font-size: 16px
}

.wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li a, .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li a, .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li a, .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li a {
    font-weight: 600;
    font-family: Poppins, sans-serif;
    line-height: 25px;
    font-size: 18px
}

.wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li a {
    padding: 10px 26px;
    letter-spacing: 1px;
    color: #000;
    background-color: #f6f6f6
}

.wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li.ui-state-active a, .wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li.ui-state-hover a, .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li.ui-state-active a, .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li.ui-state-hover a {
    color: #fff;
    background-color: #000
}

.wblm-tabs.wblm-tabs-standard .wblm-tab-container {
    margin: 25px 0 0
}

.wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li {
    margin: 0 12px 0 0
}

.wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li a {
    padding: 7px 26px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #000
}

.wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li:last-child {
    margin: 0
}

.wblm-tabs.wblm-tabs-boxed .wblm-tab-container {
    margin: 25px 0 0
}

.wblm-tabs.wblm-tabs-simple .wblm-tabs-nav {
    border-bottom: 1px solid #ccc
}

.wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li {
    margin: 0 31px 0 0
}

.wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li a {
    padding: 13px 0;
    color: #999
}

.wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li.ui-state-active a, .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li.ui-state-hover a {
    color: #000
}

.wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li:last-child {
    margin: 0
}

.wblm-tabs.wblm-tabs-simple .wblm-tab-container {
    padding: 31px 0;
    border-bottom: 1px solid #ccc
}

.wblm-tabs.wblm-tabs-vertical {
    display: table
}

.wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav {
    display: table-cell;
    vertical-align: top;
    width: 140px;
    height: 100%;
    border-right: 1px solid #ccc;
    box-sizing: border-box
}

.wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li {
    display: block;
    float: none;
    margin: 0 0 24px
}

.wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li a {
    color: #999
}

.wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li.ui-state-active a, .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li.ui-state-hover a {
    color: #000
}

.wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li:last-child {
    margin: 0
}

.wblm-tabs.wblm-tabs-vertical .wblm-tab-container {
    display: table-cell;
    vertical-align: top;
    width: calc(100% - 140px);
    height: 100%;
    padding: 0 0 0 45px;
    box-sizing: border-box
}

.ui-widget-content {
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: 0 0;
    border: 0;
    border-radius: 0
}

.ui-widget-content .ui-widget-header {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: initial;
    background: 0 0;
    border: 0;
    border-radius: 0
}

.ui-widget-content .ui-tabs-nav li {
    position: initial;
    font-weight: inherit;
    color: inherit;
    background: initial;
    border: 0;
    border-radius: 0
}

.ui-widget-content .ui-widget-content {
    color: inherit;
    background: 0 0;
    border: 0;
    border-radius: 0
}

@media only screen and (max-width: 680px) {
    .wblm-intro-masonry .wblm-masonry-list-wrapper {
        -ms-grid-columns: 1fr 1fr 1fr !important;
        grid-template-columns:1fr 1fr 1fr !important
    }

    .wblm-team-carousel-holder .wblm-owl-slider .owl-nav {
        display: none
    }
}

.wblm-team-holder, .wblm-team-holder .wblm-team-image {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100%
}

.wblm-team-carousel-holder .wblm-owl-slider .owl-nav .owl-prev {
    left: -50px
}

.wblm-team-carousel-holder .wblm-owl-slider .owl-nav .owl-next {
    right: -50px
}

.touch .wblm-team-holder.wblm-team-info-on-image {
    cursor: pointer
}

.wblm-team-holder.wblm-team-info-on-image .wblm-team-image .wblm-team-social-holder {
    z-index: 2;
    background-color: #000
}

.wblm-team-holder.wblm-team-info-on-image .wblm-team-image .wblm-team-social-holder a {
    color: #fff
}

.wblm-team-holder.wblm-team-info-on-image:hover .wblm-team-social-wrapper {
    opacity: 1
}

.wblm-team-holder.wblm-team-info-on-image:hover .wblm-team-social-inner {
    -webkit-transition: -webkit-transform .45s cubic-bezier(.64, .01, .15, 1.16), opacity .5s;
    -moz-transition: -moz-transform .45s cubic-bezier(.64, .01, .15, 1.16), opacity .5s;
    transition: transform .45s cubic-bezier(.64, .01, .15, 1.16), opacity .5s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.wblm-team-holder .wblm-team-image {
    overflow: hidden
}

.wblm-team-holder .wblm-team-image img {
    display: block;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.54, .01, .58, 1);
    -moz-transition: -moz-transform .4s cubic-bezier(.54, .01, .58, 1);
    transition: transform .4s cubic-bezier(.54, .01, .58, 1);
    transform-origin: top
}

.wblm-team-holder .wblm-team-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 26px 0 0
}

.wblm-team-holder .wblm-team-name {
    margin: 0
}

.wblm-team-holder .wblm-team-position {
    margin: 2px 0 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em;
    line-height: 21px;
    font-family: Montserrat, sans-serif
}

.wblm-team-holder .wblm-team-text {
    margin: 10px 0 0
}

.wblm-team-holder .wblm-team-social-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .85);
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    transition: opacity .3s
}

.wblm-team-holder .wblm-team-social-outer {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-team-holder .wblm-team-social-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    padding: 20px 40px 33px;
    vertical-align: bottom;
    -webkit-transition: -webkit-transform .2s ease;
    -moz-transition: -moz-transform .2s ease;
    transition: transform .2s ease;
    -webkit-transform: translate3d(0, 40px, 0);
    -moz-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0)
}

.wblm-team-holder .wblm-team-social-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-team-holder .wblm-team-social-holder .wblm-team-icon {
    font-size: 13px;
    line-height: 1em;
    padding: 11px;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.wblm-team-holder .wblm-team-social-holder .wblm-team-icon:hover {
    opacity: .7
}

.wblm-team-holder .wblm-team-social-holder .wblm-team-icon .wblm-icon-element {
    font-size: inherit;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.wblm-team-holder .wblm-team-image .wblm-team-social-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    background: #fff;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.38, .13, .17, .84);
    -moz-transition: -moz-transform .5s cubic-bezier(.38, .13, .17, .84);
    transition: transform .5s cubic-bezier(.38, .13, .17, .84);
    transform-origin: top
}

.wblm-team-holder .wblm-team-image .wblm-team-social-holder .wblm-team-icon {
    display: block
}

.wblm-team-holder:hover .wblm-team-image img {
    -webkit-transform: translateX(-5px) scale(1.06);
    -moz-transform: translateX(-5px) scale(1.06);
    transform: translateX(-5px) scale(1.06)
}

.wblm-team-holder:hover .wblm-team-image .wblm-team-social-holder {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0)
}

.wblm-vss-initialized .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, .wblm-vss-initialized .wblm-content .wblm-content-inner > .wblm-full-width > .wblm-full-width-inner {
    padding: 0
}

.wblm-vertical-split-slider {
    position: relative;
    opacity: 0;
    margin: 0 -2px;
    overflow: hidden
}

.wblm-vertical-split-slider .wblm-vss-ms-left, .wblm-vertical-split-slider .wblm-vss-ms-right {
    position: absolute;
    width: 50%;
    height: 100%;
    box-sizing: border-box
}

.wblm-vertical-split-slider .wblm-vss-ms-left {
    top: 0;
    left: 0
}

.wblm-vertical-split-slider .wblm-vss-ms-left .wblm-vss-ms-section {
    background-position: 100% center;
    background-size: cover
}

.wblm-vertical-split-slider .wblm-vss-ms-right {
    top: 10000px;
    right: 0
}

.wblm-vertical-split-slider .wblm-vss-ms-right .wblm-vss-ms-section {
    background-position: 0 center;
    background-size: cover
}

.wblm-vertical-split-slider .wblm-vss-ms-section.ms-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    box-sizing: border-box
}

.wblm-vertical-split-slider .wblm-vss-ms-section .ms-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -webkit-transition: padding .45s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: padding .45s cubic-bezier(.4, 0, .2, 1);
    transition: padding .45s cubic-bezier(.4, 0, .2, 1)
}

.wblm-vertical-split-slider .wblm-vss-ms-section .ms-easing {
    -webkit-transition: all .7s ease-out;
    -moz-transition: all .7s ease-out;
    transition: all .7s ease-out
}

.wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-ms-left .wblm-vss-ms-section .ms-tableCell {
    padding: 7.5rem 0 7.5rem 7.5rem
}

.wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-ms-right .wblm-vss-ms-section .ms-tableCell {
    padding: 7.5rem 7.5rem 7.5rem 0
}

.wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-horizontal-mask:after, .wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-horizontal-mask:before {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1)
}

.wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-vertical-mask:after, .wblm-vertical-split-slider.wblm-vss-scrolled .wblm-vss-vertical-mask:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1)
}

.wblm-vertical-split-slider .wblm-vss-horizontal-mask:after, .wblm-vertical-split-slider .wblm-vss-horizontal-mask:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 7.5rem;
    z-index: 500;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: -moz-transform .45s cubic-bezier(.4, 0, .2, 1);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.wblm-vertical-split-slider .wblm-vss-horizontal-mask:before {
    top: 0;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top
}

.wblm-vertical-split-slider .wblm-vss-horizontal-mask:after {
    bottom: 0;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

.wblm-vertical-split-slider .wblm-vss-vertical-mask:after, .wblm-vertical-split-slider .wblm-vss-vertical-mask:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #fff;
    width: 7.5rem;
    z-index: 500;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: -moz-transform .45s cubic-bezier(.4, 0, .2, 1);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.wblm-vertical-split-slider .wblm-vss-vertical-mask:before {
    left: 0;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left
}

.wblm-vertical-split-slider .wblm-vss-vertical-mask:after {
    right: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right
}

.wblm-vss-responsive .wblm-vss-ms-section {
    background-position: center;
    background-size: cover
}

#multiscroll-nav {
    position: fixed;
    top: 50%;
    right: 64px;
    margin-top: -10px;
    opacity: 1;
    z-index: 1000;
    -webkit-transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    transition: opacity .5s ease-out
}

.wblm-fullscreen-menu-opened #multiscroll-nav {
    z-index: -1
}

#multiscroll-nav ul {
    margin: 0;
    padding: 0
}

#multiscroll-nav ul li {
    position: relative;
    display: block;
    margin: 12px 3px;
    overflow: hidden
}

#multiscroll-nav ul li a {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, .5);
    border-radius: 3em;
    z-index: 1;
    box-sizing: border-box
}

#multiscroll-nav ul li a.active {
    background-color: #000;
    border-color: #000
}

.wblm-light-header #multiscroll-nav ul li a {
    border-color: #fff
}

.wblm-light-header #multiscroll-nav ul li a.active {
    background-color: #fff
}

.wblm-dark-header #multiscroll-nav ul li a {
    border-color: #000
}

.wblm-dark-header #multiscroll-nav ul li a.active {
    background-color: #000
}

#multiscroll-nav ul li a span {
    display: block
}

.wblm-video-button-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.wblm-video-button-holder.wblm-vb-has-img .wblm-video-button-play, .wblm-video-button-holder.wblm-vb-has-img .wblm-video-button-play-image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.wblm-video-button-holder.wblm-vb-has-img .wblm-video-button-play .wblm-video-button-play-inner, .wblm-video-button-holder.wblm-vb-has-img .wblm-video-button-play-image .wblm-video-button-play-inner {
    position: relative;
    top: 50%;
    left: 0;
    display: block;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-video-button-holder .wblm-video-button-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-video-button-holder .wblm-video-button-image img {
    display: block
}

.wblm-video-button-holder .wblm-video-button-play, .wblm-video-button-holder .wblm-video-button-play-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    z-index: 1
}

.wblm-video-button-holder .wblm-video-button-play {
    color: #000;
    font-size: 106px;
    line-height: 1
}

.wblm-video-button-holder .wblm-video-button-play span, .wblm-video-button-holder .wblm-video-button-play span:before {
    display: block;
    line-height: inherit
}

.wblm-video-button-holder .wblm-video-button-play-image.wblm-vb-has-hover-image:hover img:first-child {
    opacity: 0
}

.wblm-video-button-holder .wblm-video-button-play-image.wblm-vb-has-hover-image:hover img:nth-child(2) {
    opacity: 1
}

.wblm-video-button-holder .wblm-video-button-play-image img {
    display: block;
    margin: 0 auto;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.wblm-video-button-holder .wblm-video-button-play-image img:first-child {
    position: relative;
    opacity: 1
}

.wblm-video-button-holder .wblm-video-button-play-image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateZ(0);
    -moz-transform: translateX(-50%) translateZ(0);
    transform: translateX(-50%) translateZ(0)
}

.wblm-instagram-list-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both
}

.wblm-instagram-list-holder:not(.wblm-il-one-column) .wblm-il-item {
    float: left
}

.wblm-instagram-list-holder .wblm-instagram-carousel .wblm-il-item {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important
}

.wblm-instagram-list-holder .wblm-il-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.wblm-instagram-list-holder.wblm-il-two-columns .wblm-il-item {
    width: 50%
}

@media only screen and (min-width: 1025px) {
    .wblm-instagram-list-holder.wblm-il-two-columns .wblm-il-item:nth-child(2n+1) {
        clear: both
    }
}

.wblm-instagram-list-holder.wblm-il-three-columns .wblm-il-item {
    width: 33.33333%
}

@media only screen and (min-width: 1201px) {
    .wblm-instagram-list-holder.wblm-il-three-columns .wblm-il-item:nth-child(3n+1) {
        clear: both
    }
}

.wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item {
    width: 25%
}

.wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item {
    width: 20%
}

.wblm-instagram-list-holder.wblm-il-six-columns .wblm-il-item {
    width: 16.66667%
}

@media only screen and (min-width: 1281px) {
    .wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item:nth-child(5n+1), .wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item:nth-child(4n+1), .wblm-instagram-list-holder.wblm-il-six-columns .wblm-il-item:nth-child(6n+1) {
        clear: both
    }
}

.wpb_widgetised_column .widget.widget_wblm_instagram_widget, aside.wblm-sidebar .widget.widget_wblm_instagram_widget {
    margin: 0 0 15px
}

.wpb_widgetised_column .widget.widget_wblm_instagram_widget .wblm-widget-title, aside.wblm-sidebar .widget.widget_wblm_instagram_widget .wblm-widget-title {
    margin: 0 0 25px;
    text-align: center;
    z-index: 5;
    position: relative
}

.wblm-instagram-feed {
    list-style: none;
    padding: 0;
    margin: 0
}

.wblm-instagram-feed li {
    float: left;
    box-sizing: border-box;
    border: none !important
}

.wblm-instagram-feed li a {
    position: relative;
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, .9) !important
}

.wblm-instagram-feed li a:hover:after {
    opacity: 1
}

.wblm-instagram-feed li a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    background-color: currentColor
}

.wblm-instagram-feed li a .wblm-instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #000;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.wblm-instagram-feed li a:hover .wblm-instagram-icon {
    opacity: 1
}

.wblm-instagram-feed li img {
    width: 100%;
    display: block
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-no-space, .wblm-instagram-feed.wblm-instagram-gallery.wblm-no-space {
    margin: 0
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-no-space li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-no-space li {
    padding: 0;
    margin: 0
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-tiny-space, .wblm-instagram-feed.wblm-instagram-gallery.wblm-tiny-space {
    margin: 0 -5px -10px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-tiny-space li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-tiny-space li {
    padding: 0 5px;
    margin: 0 0 10px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-small-space, .wblm-instagram-feed.wblm-instagram-gallery.wblm-small-space {
    margin: 0 -10px -20px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-small-space li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-small-space li {
    padding: 0 10px;
    margin: 0 0 20px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-normal-space, .wblm-instagram-feed.wblm-instagram-gallery.wblm-normal-space {
    margin: 0 -15px -30px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-normal-space li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-normal-space li {
    padding: 0 15px;
    margin: 0 0 30px
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-col-2 li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-col-2 li {
    width: 50%
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-col-3 li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-col-3 li {
    width: 33.33333%
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-col-4 li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-col-4 li {
    width: 25%
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-col-6 li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-col-6 li {
    width: 16.66667%
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed.wblm-col-9 li, .wblm-instagram-feed.wblm-instagram-gallery.wblm-col-9 li {
    width: 11.11111%
}

.wblm-instagram-feed.wblm-instagram-gallery-boxed {
    background-color: #faf0ed;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    top: -36px;
    z-index: 1
}

.wblm-instagram-feed.wblm-instagram-carousel li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0
}

.wblm-instagram-feed.wblm-instagram-carousel li a {
    position: relative;
    display: block;
    height: 100%
}

.wblm-twitter-list-holder, .wblm-twitter-list-holder .wblm-tl-item, .wblm-twitter-list-holder .wblm-tli-content, .wblm-twitter-list-holder .wblm-tli-inner, .wblm-twitter-list-holder .wblm-twitter-content-top, .wblm-twitter-list-holder .wblm-twitter-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-twitter-list-holder {
    clear: both
}

.wblm-twitter-list-holder .wblm-twitter-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.wblm-twitter-list-holder .wblm-tl-item {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-tli-inner {
    background-color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.wblm-twitter-list-holder .wblm-tli-inner:hover {
    box-shadow: -2px 4px 13px 0 rgba(81, 137, 162, .05);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    transform: translateY(-3px)
}

.wblm-twitter-list-holder .wblm-tli-content {
    padding: 35px 23px;
    border: 1px solid #f2f2f2;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-twitter-content-top {
    margin-bottom: 25px;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-twitter-link-over {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.wblm-twitter-list-holder .wblm-twitter-user {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding-right: 30px;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-twitter-user .wblm-twitter-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 56px;
    height: 56px
}

.wblm-twitter-list-holder .wblm-twitter-user .wblm-twitter-image img {
    border-radius: 50%
}

.wblm-twitter-list-holder .wblm-twitter-user .wblm-twitter-name {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    width: calc(100% - 56px);
    padding-left: 15px;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-twitter-user .wblm-twitter-name * {
    margin: 0
}

.wblm-twitter-list-holder .wblm-twitter-icon {
    position: absolute;
    top: -7px;
    right: 3px;
    width: 20px;
    display: inline-block;
    vertical-align: top;
    color: #000;
    font-size: 24px;
    text-align: right
}

.wblm-twitter-list-holder .wblm-tweet-text {
    padding-left: 12px;
    box-sizing: border-box
}

.wblm-twitter-list-holder .wblm-tweet-text a {
    position: relative;
    color: grey;
    z-index: 2
}

.wblm-twitter-list-holder .wblm-tweet-text a:hover {
    color: #000
}

.wblm-twitter-list-holder .wblm-twitter-profile a {
    position: relative;
    color: grey;
    z-index: 2
}

.wblm-twitter-list-holder .wblm-twitter-profile a:hover {
    color: #000
}

textarea {
    padding: 13px 25px !important;
    margin-top: 10px !important;
    font-size: 10px !important;
    text-transform: none !important;
    letter-spacing: .16em !important;
    font-weight: 400 !important
}

.widget.widget_wblm_twitter_widget {
    margin: 0 0 20px
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li:not(:last-child) {
    margin: 0 0 22px
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-twitter-icon {
    font-size: 18px;
    color: #000
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text {
    position: relative
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text span {
    color: #000
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text a {
    position: relative;
    color: #000
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text a:hover {
    color: #000
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text a.wblm-tweet-time {
    display: block
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget li .wblm-tweet-text a.wblm-tweet-time span {
    margin: 0 2px 0 0
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-standard li .wblm-twitter-icon {
    position: absolute;
    top: 2px;
    left: 0
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-standard li .wblm-tweet-text {
    padding: 0 0 0 40px
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0 40px;
    text-align: center;
    box-sizing: border-box
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-slider li {
    overflow: hidden
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-slider li .wblm-tweet-text a.wblm-tweet-time {
    margin: 21px 0 0
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-slider .owl-nav .owl-prev {
    left: 0
}

.widget.widget_wblm_twitter_widget .wblm-twitter-widget.wblm-twitter-slider .owl-nav .owl-next {
    right: 0
}

@charset "UTF-8";

@font-face {
    font-family: "dripicons-v2";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/dripicons/fonts/dripicons-v2.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/dripicons/fonts/dripicons-v2.eot?#iefix") format("embedded-opentype"),
    url("/wp-content/themes/onea/framework/lib/icons-pack/dripicons/fonts/dripicons-v2.woff") format("woff"),
    url("/wp-content/themes/onea/framework/lib/icons-pack/dripicons/fonts/dripicons-v2.ttf") format("truetype"),
    url("/wp-content/themes/onea/framework/lib/icons-pack/dripicons/fonts/dripicons-v2.svg#dripicons-v2") format("svg");
    font-weight: normal;
    font-style: normal;

}

[data-icon]:before {
    font-family: "dripicons-v2" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
    font-family: "dripicons-v2" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dripicons-alarm:before {
    content: "\61";
}

.dripicons-align-center:before {
    content: "\62";
}

.dripicons-align-justify:before {
    content: "\63";
}

.dripicons-align-left:before {
    content: "\64";
}

.dripicons-align-right:before {
    content: "\65";
}

.dripicons-anchor:before {
    content: "\66";
}

.dripicons-archive:before {
    content: "\67";
}

.dripicons-arrow-down:before {
    content: "\68";
}

.dripicons-arrow-left:before {
    content: "\69";
}

.dripicons-arrow-right:before {
    content: "\6a";
}

.dripicons-arrow-thin-down:before {
    content: "\6b";
}

.dripicons-arrow-thin-left:before {
    content: "\6c";
}

.dripicons-arrow-thin-right:before {
    content: "\6d";
}

.dripicons-arrow-thin-up:before {
    content: "\6e";
}

.dripicons-arrow-up:before {
    content: "\6f";
}

.dripicons-article:before {
    content: "\70";
}

.dripicons-backspace:before {
    content: "\71";
}

.dripicons-basket:before {
    content: "\72";
}

.dripicons-basketball:before {
    content: "\73";
}

.dripicons-battery-empty:before {
    content: "\74";
}

.dripicons-battery-full:before {
    content: "\75";
}

.dripicons-battery-low:before {
    content: "\76";
}

.dripicons-battery-medium:before {
    content: "\77";
}

.dripicons-bell:before {
    content: "\78";
}

.dripicons-blog:before {
    content: "\79";
}

.dripicons-bluetooth:before {
    content: "\7a";
}

.dripicons-bold:before {
    content: "\41";
}

.dripicons-bookmark:before {
    content: "\42";
}

.dripicons-bookmarks:before {
    content: "\43";
}

.dripicons-box:before {
    content: "\44";
}

.dripicons-briefcase:before {
    content: "\45";
}

.dripicons-brightness-low:before {
    content: "\46";
}

.dripicons-brightness-max:before {
    content: "\47";
}

.dripicons-brightness-medium:before {
    content: "\48";
}

.dripicons-broadcast:before {
    content: "\49";
}

.dripicons-browser:before {
    content: "\4a";
}

.dripicons-browser-upload:before {
    content: "\4b";
}

.dripicons-brush:before {
    content: "\4c";
}

.dripicons-calendar:before {
    content: "\4d";
}

.dripicons-camcorder:before {
    content: "\4e";
}

.dripicons-camera:before {
    content: "\4f";
}

.dripicons-card:before {
    content: "\50";
}

.dripicons-cart:before {
    content: "\51";
}

.dripicons-checklist:before {
    content: "\52";
}

.dripicons-checkmark:before {
    content: "\53";
}

.dripicons-chevron-down:before {
    content: "\54";
}

.dripicons-chevron-left:before {
    content: "\55";
}

.dripicons-chevron-right:before {
    content: "\56";
}

.dripicons-chevron-up:before {
    content: "\57";
}

.dripicons-clipboard:before {
    content: "\58";
}

.dripicons-clock:before {
    content: "\59";
}

.dripicons-clockwise:before {
    content: "\5a";
}

.dripicons-cloud:before {
    content: "\30";
}

.dripicons-cloud-download:before {
    content: "\31";
}

.dripicons-cloud-upload:before {
    content: "\32";
}

.dripicons-code:before {
    content: "\33";
}

.dripicons-contract:before {
    content: "\34";
}

.dripicons-contract-2:before {
    content: "\35";
}

.dripicons-conversation:before {
    content: "\36";
}

.dripicons-copy:before {
    content: "\37";
}

.dripicons-crop:before {
    content: "\38";
}

.dripicons-cross:before {
    content: "\39";
}

.dripicons-crosshair:before {
    content: "\21";
}

.dripicons-cutlery:before {
    content: "\22";
}

.dripicons-device-desktop:before {
    content: "\23";
}

.dripicons-device-mobile:before {
    content: "\24";
}

.dripicons-device-tablet:before {
    content: "\25";
}

.dripicons-direction:before {
    content: "\26";
}

.dripicons-disc:before {
    content: "\27";
}

.dripicons-document:before {
    content: "\28";
}

.dripicons-document-delete:before {
    content: "\29";
}

.dripicons-document-edit:before {
    content: "\2a";
}

.dripicons-document-new:before {
    content: "\2b";
}

.dripicons-document-remove:before {
    content: "\2c";
}

.dripicons-dot:before {
    content: "\2d";
}

.dripicons-dots-2:before {
    content: "\2e";
}

.dripicons-dots-3:before {
    content: "\2f";
}

.dripicons-download:before {
    content: "\3a";
}

.dripicons-duplicate:before {
    content: "\3b";
}

.dripicons-enter:before {
    content: "\3c";
}

.dripicons-exit:before {
    content: "\3d";
}

.dripicons-expand:before {
    content: "\3e";
}

.dripicons-expand-2:before {
    content: "\3f";
}

.dripicons-experiment:before {
    content: "\40";
}

.dripicons-export:before {
    content: "\5b";
}

.dripicons-feed:before {
    content: "\5d";
}

.dripicons-flag:before {
    content: "\5e";
}

.dripicons-flashlight:before {
    content: "\5f";
}

.dripicons-folder:before {
    content: "\60";
}

.dripicons-folder-open:before {
    content: "\7b";
}

.dripicons-forward:before {
    content: "\7c";
}

.dripicons-gaming:before {
    content: "\7d";
}

.dripicons-gear:before {
    content: "\7e";
}

.dripicons-graduation:before {
    content: "\5c";
}

.dripicons-graph-bar:before {
    content: "\e000";
}

.dripicons-graph-line:before {
    content: "\e001";
}

.dripicons-graph-pie:before {
    content: "\e002";
}

.dripicons-headset:before {
    content: "\e003";
}

.dripicons-heart:before {
    content: "\e004";
}

.dripicons-help:before {
    content: "\e005";
}

.dripicons-home:before {
    content: "\e006";
}

.dripicons-hourglass:before {
    content: "\e007";
}

.dripicons-inbox:before {
    content: "\e008";
}

.dripicons-information:before {
    content: "\e009";
}

.dripicons-italic:before {
    content: "\e00a";
}

.dripicons-jewel:before {
    content: "\e00b";
}

.dripicons-lifting:before {
    content: "\e00c";
}

.dripicons-lightbulb:before {
    content: "\e00d";
}

.dripicons-link:before {
    content: "\e00e";
}

.dripicons-link-broken:before {
    content: "\e00f";
}

.dripicons-list:before {
    content: "\e010";
}

.dripicons-loading:before {
    content: "\e011";
}

.dripicons-location:before {
    content: "\e012";
}

.dripicons-lock:before {
    content: "\e013";
}

.dripicons-lock-open:before {
    content: "\e014";
}

.dripicons-mail:before {
    content: "\e015";
}

.dripicons-map:before {
    content: "\e016";
}

.dripicons-media-loop:before {
    content: "\e017";
}

.dripicons-media-next:before {
    content: "\e018";
}

.dripicons-media-pause:before {
    content: "\e019";
}

.dripicons-media-play:before {
    content: "\e01a";
}

.dripicons-media-previous:before {
    content: "\e01b";
}

.dripicons-media-record:before {
    content: "\e01c";
}

.dripicons-media-shuffle:before {
    content: "\e01d";
}

.dripicons-media-stop:before {
    content: "\e01e";
}

.dripicons-medical:before {
    content: "\e01f";
}

.dripicons-menu:before {
    content: "\e020";
}

.dripicons-message:before {
    content: "\e021";
}

.dripicons-meter:before {
    content: "\e022";
}

.dripicons-microphone:before {
    content: "\e023";
}

.dripicons-minus:before {
    content: "\e024";
}

.dripicons-monitor:before {
    content: "\e025";
}

.dripicons-move:before {
    content: "\e026";
}

.dripicons-music:before {
    content: "\e027";
}

.dripicons-network-1:before {
    content: "\e028";
}

.dripicons-network-2:before {
    content: "\e029";
}

.dripicons-network-3:before {
    content: "\e02a";
}

.dripicons-network-4:before {
    content: "\e02b";
}

.dripicons-network-5:before {
    content: "\e02c";
}

.dripicons-pamphlet:before {
    content: "\e02d";
}

.dripicons-paperclip:before {
    content: "\e02e";
}

.dripicons-pencil:before {
    content: "\e02f";
}

.dripicons-phone:before {
    content: "\e030";
}

.dripicons-photo:before {
    content: "\e031";
}

.dripicons-photo-group:before {
    content: "\e032";
}

.dripicons-pill:before {
    content: "\e033";
}

.dripicons-pin:before {
    content: "\e034";
}

.dripicons-plus:before {
    content: "\e035";
}

.dripicons-power:before {
    content: "\e036";
}

.dripicons-preview:before {
    content: "\e037";
}

.dripicons-print:before {
    content: "\e038";
}

.dripicons-pulse:before {
    content: "\e039";
}

.dripicons-question:before {
    content: "\e03a";
}

.dripicons-reply:before {
    content: "\e03b";
}

.dripicons-reply-all:before {
    content: "\e03c";
}

.dripicons-return:before {
    content: "\e03d";
}

.dripicons-retweet:before {
    content: "\e03e";
}

.dripicons-rocket:before {
    content: "\e03f";
}

.dripicons-scale:before {
    content: "\e040";
}

.dripicons-search:before {
    content: "\e041";
}

.dripicons-shopping-bag:before {
    content: "\e042";
}

.dripicons-skip:before {
    content: "\e043";
}

.dripicons-stack:before {
    content: "\e044";
}

.dripicons-star:before {
    content: "\e045";
}

.dripicons-stopwatch:before {
    content: "\e046";
}

.dripicons-store:before {
    content: "\e047";
}

.dripicons-suitcase:before {
    content: "\e048";
}

.dripicons-swap:before {
    content: "\e049";
}

.dripicons-tag:before {
    content: "\e04a";
}

.dripicons-tag-delete:before {
    content: "\e04b";
}

.dripicons-tags:before {
    content: "\e04c";
}

.dripicons-thumbs-down:before {
    content: "\e04d";
}

.dripicons-thumbs-up:before {
    content: "\e04e";
}

.dripicons-ticket:before {
    content: "\e04f";
}

.dripicons-time-reverse:before {
    content: "\e050";
}

.dripicons-to-do:before {
    content: "\e051";
}

.dripicons-toggles:before {
    content: "\e052";
}

.dripicons-trash:before {
    content: "\e053";
}

.dripicons-trophy:before {
    content: "\e054";
}

.dripicons-upload:before {
    content: "\e055";
}

.dripicons-user:before {
    content: "\e056";
}

.dripicons-user-group:before {
    content: "\e057";
}

.dripicons-user-id:before {
    content: "\e058";
}

.dripicons-vibrate:before {
    content: "\e059";
}

.dripicons-view-apps:before {
    content: "\e05a";
}

.dripicons-view-list:before {
    content: "\e05b";
}

.dripicons-view-list-large:before {
    content: "\e05c";
}

.dripicons-view-thumb:before {
    content: "\e05d";
}

.dripicons-volume-full:before {
    content: "\e05e";
}

.dripicons-volume-low:before {
    content: "\e05f";
}

.dripicons-volume-medium:before {
    content: "\e060";
}

.dripicons-volume-off:before {
    content: "\e061";
}

.dripicons-wallet:before {
    content: "\e062";
}

.dripicons-warning:before {
    content: "\e063";
}

.dripicons-web:before {
    content: "\e064";
}

.dripicons-weight:before {
    content: "\e065";
}

.dripicons-wifi:before {
    content: "\e066";
}

.dripicons-wrong:before {
    content: "\e067";
}

.dripicons-zoom-in:before {
    content: "\e068";
}

.dripicons-zoom-out:before {
    content: "\e069";
}

@font-face {
    font-family: 'ElegantIcons';
    src: url('https://vipbaby.gr/fonts/ElegantIcons.eot');
    src: url('https://vipbaby.gr/fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
    url('https://vipbaby.gr/fonts/ElegantIcons.woff') format('woff'),
    url('https://vipbaby.gr/fonts/ElegantIcons.ttf') format('truetype'),
    url('https://vipbaby.gr/fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal
}

[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, .arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, .arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, .arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, .arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, .arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, .arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, .arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, .arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, .arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, .arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, .arrow_triangle-down_alt2, .arrow_triangle-left_alt2, .arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, .icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, .icon_check_alt2, .icon_zoom-out_alt, .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, .icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, .icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, .icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, .icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, .icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, .icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, .icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, .icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, .icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, .icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, .icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, .icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, .icon_gift_alt, .icon_house_alt, .icon_genius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, .icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, .icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, .icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, .icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, .icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, .icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, .icon_lifesaver, .icon_piechart, .icon_refresh, .icon_link_alt, .icon_link, .icon_loading, .icon_blocked, .icon_archive_alt, .icon_heart_alt, .icon_star_alt, .icon_star-half_alt, .icon_star, .icon_star-half, .icon_tools, .icon_tool, .icon_cog, .icon_cogs, .arrow_up_alt, .arrow_down_alt, .arrow_left_alt, .arrow_right_alt, .arrow_left-up_alt, .arrow_right-up_alt, .arrow_right-down_alt, .arrow_left-down_alt, .arrow_condense_alt, .arrow_expand_alt3, .arrow_carrot_up_alt, .arrow_carrot-down_alt, .arrow_carrot-left_alt, .arrow_carrot-right_alt, .arrow_carrot-2up_alt, .arrow_carrot-2dwnn_alt, .arrow_carrot-2left_alt, .arrow_carrot-2right_alt, .arrow_triangle-up_alt, .arrow_triangle-down_alt, .arrow_triangle-left_alt, .arrow_triangle-right_alt, .icon_minus_alt, .icon_plus_alt, .icon_close_alt, .icon_check_alt, .icon_zoom-out, .icon_zoom-in, .icon_stop_alt, .icon_menu-square_alt, .icon_menu-circle_alt, .icon_document, .icon_documents, .icon_pencil_alt, .icon_folder, .icon_folder-open, .icon_folder-add, .icon_folder_upload, .icon_folder_download, .icon_info, .icon_error-circle, .icon_error-oct, .icon_error-triangle, .icon_question_alt, .icon_comment, .icon_chat, .icon_vol-mute, .icon_volume-low, .icon_volume-high, .icon_quotations_alt, .icon_clock, .icon_lock, .icon_lock-open, .icon_key, .icon_cloud, .icon_cloud-upload, .icon_cloud-download, .icon_lightbulb, .icon_gift, .icon_house, .icon_camera, .icon_mail, .icon_cone, .icon_ribbon, .icon_bag, .icon_cart, .icon_tag, .icon_tags, .icon_trash, .icon_cursor, .icon_mic, .icon_compass, .icon_pin, .icon_pushpin, .icon_map, .icon_drawer, .icon_toolbox, .icon_book, .icon_contacts, .icon_archive, .icon_heart, .icon_profile, .icon_group, .icon_grid-2x2, .icon_grid-3x3, .icon_music, .icon_pause_alt, .icon_phone, .icon_upload, .icon_download, .social_facebook, .social_twitter, .social_pinterest, .social_googleplus, .social_tumblr, .social_tumbleupon, .social_wordpress, .social_instagram, .social_dribbble, .social_vimeo, .social_linkedin, .social_rss, .social_deviantart, .social_share, .social_myspace, .social_skype, .social_youtube, .social_picassa, .social_googledrive, .social_flickr, .social_blogger, .social_spotify, .social_delicious, .social_facebook_circle, .social_twitter_circle, .social_pinterest_circle, .social_googleplus_circle, .social_tumblr_circle, .social_stumbleupon_circle, .social_wordpress_circle, .social_instagram_circle, .social_dribbble_circle, .social_vimeo_circle, .social_linkedin_circle, .social_rss_circle, .social_deviantart_circle, .social_share_circle, .social_myspace_circle, .social_skype_circle, .social_youtube_circle, .social_picassa_circle, .social_googledrive_alt2, .social_flickr_circle, .social_blogger_circle, .social_spotify_circle, .social_delicious_circle, .social_facebook_square, .social_twitter_square, .social_pinterest_square, .social_googleplus_square, .social_tumblr_square, .social_stumbleupon_square, .social_wordpress_square, .social_instagram_square, .social_dribbble_square, .social_vimeo_square, .social_linkedin_square, .social_rss_square, .social_deviantart_square, .social_share_square, .social_myspace_square, .social_skype_square, .social_youtube_square, .social_picassa_square, .social_googledrive_square, .social_flickr_square, .social_blogger_square, .social_spotify_square, .social_delicious_square, .icon_printer, .icon_calulator, .icon_building, .icon_floppy, .icon_drive, .icon_search-2, .icon_id, .icon_id-2, .icon_puzzle, .icon_like, .icon_dislike, .icon_mug, .icon_currency, .icon_wallet, .icon_pens, .icon_easel, .icon_flowchart, .icon_datareport, .icon_briefcase, .icon_shield, .icon_percent, .icon_globe, .icon_globe-2, .icon_target, .icon_hourglass, .icon_balance, .icon_rook, .icon_printer-alt, .icon_calculator_alt, .icon_building_alt, .icon_floppy_alt, .icon_drive_alt, .icon_search_alt, .icon_id_alt, .icon_id-2_alt, .icon_puzzle_alt, .icon_like_alt, .icon_dislike_alt, .icon_mug_alt, .icon_currency_alt, .icon_wallet_alt, .icon_pens_alt, .icon_easel_alt, .icon_flowchart_alt, .icon_datareport_alt, .icon_briefcase_alt, .icon_shield_alt, .icon_percent_alt, .icon_globe_alt, .icon_clipboard {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.arrow_up:before {
    content: "\21"
}

.arrow_down:before {
    content: "\22"
}

.arrow_left:before {
    content: "\23"
}

.arrow_right:before {
    content: "\24"
}

.arrow_left-up:before {
    content: "\25"
}

.arrow_right-up:before {
    content: "\26"
}

.arrow_right-down:before {
    content: "\27"
}

.arrow_left-down:before {
    content: "\28"
}

.arrow-up-down:before {
    content: "\29"
}

.arrow_up-down_alt:before {
    content: "\2a"
}

.arrow_left-right_alt:before {
    content: "\2b"
}

.arrow_left-right:before {
    content: "\2c"
}

.arrow_expand_alt2:before {
    content: "\2d"
}

.arrow_expand_alt:before {
    content: "\2e"
}

.arrow_condense:before {
    content: "\2f"
}

.arrow_expand:before {
    content: "\30"
}

.arrow_move:before {
    content: "\31"
}

.arrow_carrot-up:before {
    content: "\32"
}

.arrow_carrot-down:before {
    content: "\33"
}

.arrow_carrot-left:before {
    content: "\34"
}

.arrow_carrot-right:before {
    content: "\35"
}

.arrow_carrot-2up:before {
    content: "\36"
}

.arrow_carrot-2down:before {
    content: "\37"
}

.arrow_carrot-2left:before {
    content: "\38"
}

.arrow_carrot-2right:before {
    content: "\39"
}

.arrow_carrot-up_alt2:before {
    content: "\3a"
}

.arrow_carrot-down_alt2:before {
    content: "\3b"
}

.arrow_carrot-left_alt2:before {
    content: "\3c"
}

.arrow_carrot-right_alt2:before {
    content: "\3d"
}

.arrow_carrot-2up_alt2:before {
    content: "\3e"
}

.arrow_carrot-2down_alt2:before {
    content: "\3f"
}

.arrow_carrot-2left_alt2:before {
    content: "\40"
}

.arrow_carrot-2right_alt2:before {
    content: "\41"
}

.arrow_triangle-up:before {
    content: "\42"
}

.arrow_triangle-down:before {
    content: "\43"
}

.arrow_triangle-left:before {
    content: "\44"
}

.arrow_triangle-right:before {
    content: "\45"
}

.arrow_triangle-up_alt2:before {
    content: "\46"
}

.arrow_triangle-down_alt2:before {
    content: "\47"
}

.arrow_triangle-left_alt2:before {
    content: "\48"
}

.arrow_triangle-right_alt2:before {
    content: "\49"
}

.arrow_back:before {
    content: "\4a"
}

.icon_minus-06:before {
    content: "\4b"
}

.icon_plus:before {
    content: "\4c"
}

.icon_close:before {
    content: "\4d"
}

.icon_check:before {
    content: "\4e"
}

.icon_minus_alt2:before {
    content: "\4f"
}

.icon_plus_alt2:before {
    content: "\50"
}

.icon_close_alt2:before {
    content: "\51"
}

.icon_check_alt2:before {
    content: "\52"
}

.icon_zoom-out_alt:before {
    content: "\53"
}

.icon_zoom-in_alt:before {
    content: "\54"
}

.icon_search:before {
    content: "\55"
}

.icon_box-empty:before {
    content: "\56"
}

.icon_box-selected:before {
    content: "\57"
}

.icon_minus-box:before {
    content: "\58"
}

.icon_plus-box:before {
    content: "\59"
}

.icon_box-checked:before {
    content: "\5a"
}

.icon_circle-empty:before {
    content: "\5b"
}

.icon_circle-slelected:before {
    content: "\5c"
}

.icon_stop_alt2:before {
    content: "\5d"
}

.icon_stop:before {
    content: "\5e"
}

.icon_pause_alt2:before {
    content: "\5f"
}

.icon_pause:before {
    content: "\60"
}

.icon_menu:before {
    content: "\61"
}

.icon_menu-square_alt2:before {
    content: "\62"
}

.icon_menu-circle_alt2:before {
    content: "\63"
}

.icon_ul:before {
    content: "\64"
}

.icon_ol:before {
    content: "\65"
}

.icon_adjust-horiz:before {
    content: "\66"
}

.icon_adjust-vert:before {
    content: "\67"
}

.icon_document_alt:before {
    content: "\68"
}

.icon_documents_alt:before {
    content: "\69"
}

.icon_pencil:before {
    content: "\6a"
}

.icon_pencil-edit_alt:before {
    content: "\6b"
}

.icon_pencil-edit:before {
    content: "\6c"
}

.icon_folder-alt:before {
    content: "\6d"
}

.icon_folder-open_alt:before {
    content: "\6e"
}

.icon_folder-add_alt:before {
    content: "\6f"
}

.icon_info_alt:before {
    content: "\70"
}

.icon_error-oct_alt:before {
    content: "\71"
}

.icon_error-circle_alt:before {
    content: "\72"
}

.icon_error-triangle_alt:before {
    content: "\73"
}

.icon_question_alt2:before {
    content: "\74"
}

.icon_question:before {
    content: "\75"
}

.icon_comment_alt:before {
    content: "\76"
}

.icon_chat_alt:before {
    content: "\77"
}

.icon_vol-mute_alt:before {
    content: "\78"
}

.icon_volume-low_alt:before {
    content: "\79"
}

.icon_volume-high_alt:before {
    content: "\7a"
}

.icon_quotations:before {
    content: "\7b"
}

.icon_quotations_alt2:before {
    content: "\7c"
}

.icon_clock_alt:before {
    content: "\7d"
}

.icon_lock_alt:before {
    content: "\7e"
}

.icon_lock-open_alt:before {
    content: "\e000"
}

.icon_key_alt:before {
    content: "\e001"
}

.icon_cloud_alt:before {
    content: "\e002"
}

.icon_cloud-upload_alt:before {
    content: "\e003"
}

.icon_cloud-download_alt:before {
    content: "\e004"
}

.icon_image:before {
    content: "\e005"
}

.icon_images:before {
    content: "\e006"
}

.icon_lightbulb_alt:before {
    content: "\e007"
}

.icon_gift_alt:before {
    content: "\e008"
}

.icon_house_alt:before {
    content: "\e009"
}

.icon_genius:before {
    content: "\e00a"
}

.icon_mobile:before {
    content: "\e00b"
}

.icon_tablet:before {
    content: "\e00c"
}

.icon_laptop:before {
    content: "\e00d"
}

.icon_desktop:before {
    content: "\e00e"
}

.icon_camera_alt:before {
    content: "\e00f"
}

.icon_mail_alt:before {
    content: "\e010"
}

.icon_cone_alt:before {
    content: "\e011"
}

.icon_ribbon_alt:before {
    content: "\e012"
}

.icon_bag_alt:before {
    content: "\e013"
}

.icon_creditcard:before {
    content: "\e014"
}

.icon_cart_alt:before {
    content: "\e015"
}

.icon_paperclip:before {
    content: "\e016"
}

.icon_tag_alt:before {
    content: "\e017"
}

.icon_tags_alt:before {
    content: "\e018"
}

.icon_trash_alt:before {
    content: "\e019"
}

.icon_cursor_alt:before {
    content: "\e01a"
}

.icon_mic_alt:before {
    content: "\e01b"
}

.icon_compass_alt:before {
    content: "\e01c"
}

.icon_pin_alt:before {
    content: "\e01d"
}

.icon_pushpin_alt:before {
    content: "\e01e"
}

.icon_map_alt:before {
    content: "\e01f"
}

.icon_drawer_alt:before {
    content: "\e020"
}

.icon_toolbox_alt:before {
    content: "\e021"
}

.icon_book_alt:before {
    content: "\e022"
}

.icon_calendar:before {
    content: "\e023"
}

.icon_film:before {
    content: "\e024"
}

.icon_table:before {
    content: "\e025"
}

.icon_contacts_alt:before {
    content: "\e026"
}

.icon_headphones:before {
    content: "\e027"
}

.icon_lifesaver:before {
    content: "\e028"
}

.icon_piechart:before {
    content: "\e029"
}

.icon_refresh:before {
    content: "\e02a"
}

.icon_link_alt:before {
    content: "\e02b"
}

.icon_link:before {
    content: "\e02c"
}

.icon_loading:before {
    content: "\e02d"
}

.icon_blocked:before {
    content: "\e02e"
}

.icon_archive_alt:before {
    content: "\e02f"
}

.icon_heart_alt:before {
    content: "\e030"
}

.icon_star_alt:before {
    content: "\e031"
}

.icon_star-half_alt:before {
    content: "\e032"
}

.icon_star:before {
    content: "\e033"
}

.icon_star-half:before {
    content: "\e034"
}

.icon_tools:before {
    content: "\e035"
}

.icon_tool:before {
    content: "\e036"
}

.icon_cog:before {
    content: "\e037"
}

.icon_cogs:before {
    content: "\e038"
}

.arrow_up_alt:before {
    content: "\e039"
}

.arrow_down_alt:before {
    content: "\e03a"
}

.arrow_left_alt:before {
    content: "\e03b"
}

.arrow_right_alt:before {
    content: "\e03c"
}

.arrow_left-up_alt:before {
    content: "\e03d"
}

.arrow_right-up_alt:before {
    content: "\e03e"
}

.arrow_right-down_alt:before {
    content: "\e03f"
}

.arrow_left-down_alt:before {
    content: "\e040"
}

.arrow_condense_alt:before {
    content: "\e041"
}

.arrow_expand_alt3:before {
    content: "\e042"
}

.arrow_carrot_up_alt:before {
    content: "\e043"
}

.arrow_carrot-down_alt:before {
    content: "\e044"
}

.arrow_carrot-left_alt:before {
    content: "\e045"
}

.arrow_carrot-right_alt:before {
    content: "\e046"
}

.arrow_carrot-2up_alt:before {
    content: "\e047"
}

.arrow_carrot-2dwnn_alt:before {
    content: "\e048"
}

.arrow_carrot-2left_alt:before {
    content: "\e049"
}

.arrow_carrot-2right_alt:before {
    content: "\e04a"
}

.arrow_triangle-up_alt:before {
    content: "\e04b"
}

.arrow_triangle-down_alt:before {
    content: "\e04c"
}

.arrow_triangle-left_alt:before {
    content: "\e04d"
}

.arrow_triangle-right_alt:before {
    content: "\e04e"
}

.icon_minus_alt:before {
    content: "\e04f"
}

.icon_plus_alt:before {
    content: "\e050"
}

.icon_close_alt:before {
    content: "\e051"
}

.icon_check_alt:before {
    content: "\e052"
}

.icon_zoom-out:before {
    content: "\e053"
}

.icon_zoom-in:before {
    content: "\e054"
}

.icon_stop_alt:before {
    content: "\e055"
}

.icon_menu-square_alt:before {
    content: "\e056"
}

.icon_menu-circle_alt:before {
    content: "\e057"
}

.icon_document:before {
    content: "\e058"
}

.icon_documents:before {
    content: "\e059"
}

.icon_pencil_alt:before {
    content: "\e05a"
}

.icon_folder:before {
    content: "\e05b"
}

.icon_folder-open:before {
    content: "\e05c"
}

.icon_folder-add:before {
    content: "\e05d"
}

.icon_folder_upload:before {
    content: "\e05e"
}

.icon_folder_download:before {
    content: "\e05f"
}

.icon_info:before {
    content: "\e060"
}

.icon_error-circle:before {
    content: "\e061"
}

.icon_error-oct:before {
    content: "\e062"
}

.icon_error-triangle:before {
    content: "\e063"
}

.icon_question_alt:before {
    content: "\e064"
}

.icon_comment:before {
    content: "\e065"
}

.icon_chat:before {
    content: "\e066"
}

.icon_vol-mute:before {
    content: "\e067"
}

.icon_volume-low:before {
    content: "\e068"
}

.icon_volume-high:before {
    content: "\e069"
}

.icon_quotations_alt:before {
    content: "\e06a"
}

.icon_clock:before {
    content: "\e06b"
}

.icon_lock:before {
    content: "\e06c"
}

.icon_lock-open:before {
    content: "\e06d"
}

.icon_key:before {
    content: "\e06e"
}

.icon_cloud:before {
    content: "\e06f"
}

.icon_cloud-upload:before {
    content: "\e070"
}

.icon_cloud-download:before {
    content: "\e071"
}

.icon_lightbulb:before {
    content: "\e072"
}

.icon_gift:before {
    content: "\e073"
}

.icon_house:before {
    content: "\e074"
}

.icon_camera:before {
    content: "\e075"
}

.icon_mail:before {
    content: "\e076"
}

.icon_cone:before {
    content: "\e077"
}

.icon_ribbon:before {
    content: "\e078"
}

.icon_bag:before {
    content: "\e079"
}

.icon_cart:before {
    content: "\e07a"
}

.icon_tag:before {
    content: "\e07b"
}

.icon_tags:before {
    content: "\e07c"
}

.icon_trash:before {
    content: "\e07d"
}

.icon_cursor:before {
    content: "\e07e"
}

.icon_mic:before {
    content: "\e07f"
}

.icon_compass:before {
    content: "\e080"
}

.icon_pin:before {
    content: "\e081"
}

.icon_pushpin:before {
    content: "\e082"
}

.icon_map:before {
    content: "\e083"
}

.icon_drawer:before {
    content: "\e084"
}

.icon_toolbox:before {
    content: "\e085"
}

.icon_book:before {
    content: "\e086"
}

.icon_contacts:before {
    content: "\e087"
}

.icon_archive:before {
    content: "\e088"
}

.icon_heart:before {
    content: "\e089"
}

.icon_profile:before {
    content: "\e08a"
}

.icon_group:before {
    content: "\e08b"
}

.icon_grid-2x2:before {
    content: "\e08c"
}

.icon_grid-3x3:before {
    content: "\e08d"
}

.icon_music:before {
    content: "\e08e"
}

.icon_pause_alt:before {
    content: "\e08f"
}

.icon_phone:before {
    content: "\e090"
}

.icon_upload:before {
    content: "\e091"
}

.icon_download:before {
    content: "\e092"
}

.social_facebook:before {
    content: "\e093"
}

.social_twitter:before {
    content: "\e094"
}

.social_pinterest:before {
    content: "\e095"
}

.social_googleplus:before {
    content: "\e096"
}

.social_tumblr:before {
    content: "\e097"
}

.social_tumbleupon:before {
    content: "\e098"
}

.social_wordpress:before {
    content: "\e099"
}

.social_instagram:before {
    content: "\e09a"
}

.social_dribbble:before {
    content: "\e09b"
}

.social_vimeo:before {
    content: "\e09c"
}

.social_linkedin:before {
    content: "\e09d"
}

.social_rss:before {
    content: "\e09e"
}

.social_deviantart:before {
    content: "\e09f"
}

.social_share:before {
    content: "\e0a0"
}

.social_myspace:before {
    content: "\e0a1"
}

.social_skype:before {
    content: "\e0a2"
}

.social_youtube:before {
    content: "\e0a3"
}

.social_picassa:before {
    content: "\e0a4"
}

.social_googledrive:before {
    content: "\e0a5"
}

.social_flickr:before {
    content: "\e0a6"
}

.social_blogger:before {
    content: "\e0a7"
}

.social_spotify:before {
    content: "\e0a8"
}

.social_delicious:before {
    content: "\e0a9"
}

.social_facebook_circle:before {
    content: "\e0aa"
}

.social_twitter_circle:before {
    content: "\e0ab"
}

.social_pinterest_circle:before {
    content: "\e0ac"
}

.social_googleplus_circle:before {
    content: "\e0ad"
}

.social_tumblr_circle:before {
    content: "\e0ae"
}

.social_stumbleupon_circle:before {
    content: "\e0af"
}

.social_wordpress_circle:before {
    content: "\e0b0"
}

.social_instagram_circle:before {
    content: "\e0b1"
}

.social_dribbble_circle:before {
    content: "\e0b2"
}

.social_vimeo_circle:before {
    content: "\e0b3"
}

.social_linkedin_circle:before {
    content: "\e0b4"
}

.social_rss_circle:before {
    content: "\e0b5"
}

.social_deviantart_circle:before {
    content: "\e0b6"
}

.social_share_circle:before {
    content: "\e0b7"
}

.social_myspace_circle:before {
    content: "\e0b8"
}

.social_skype_circle:before {
    content: "\e0b9"
}

.social_youtube_circle:before {
    content: "\e0ba"
}

.social_picassa_circle:before {
    content: "\e0bb"
}

.social_googledrive_alt2:before {
    content: "\e0bc"
}

.social_flickr_circle:before {
    content: "\e0bd"
}

.social_blogger_circle:before {
    content: "\e0be"
}

.social_spotify_circle:before {
    content: "\e0bf"
}

.social_delicious_circle:before {
    content: "\e0c0"
}

.social_facebook_square:before {
    content: "\e0c1"
}

.social_twitter_square:before {
    content: "\e0c2"
}

.social_pinterest_square:before {
    content: "\e0c3"
}

.social_googleplus_square:before {
    content: "\e0c4"
}

.social_tumblr_square:before {
    content: "\e0c5"
}

.social_stumbleupon_square:before {
    content: "\e0c6"
}

.social_wordpress_square:before {
    content: "\e0c7"
}

.social_instagram_square:before {
    content: "\e0c8"
}

.social_dribbble_square:before {
    content: "\e0c9"
}

.social_vimeo_square:before {
    content: "\e0ca"
}

.social_linkedin_square:before {
    content: "\e0cb"
}

.social_rss_square:before {
    content: "\e0cc"
}

.social_deviantart_square:before {
    content: "\e0cd"
}

.social_share_square:before {
    content: "\e0ce"
}

.social_myspace_square:before {
    content: "\e0cf"
}

.social_skype_square:before {
    content: "\e0d0"
}

.social_youtube_square:before {
    content: "\e0d1"
}

.social_picassa_square:before {
    content: "\e0d2"
}

.social_googledrive_square:before {
    content: "\e0d3"
}

.social_flickr_square:before {
    content: "\e0d4"
}

.social_blogger_square:before {
    content: "\e0d5"
}

.social_spotify_square:before {
    content: "\e0d6"
}

.social_delicious_square:before {
    content: "\e0d7"
}

.icon_printer:before {
    content: "\e103"
}

.icon_calulator:before {
    content: "\e0ee"
}

.icon_building:before {
    content: "\e0ef"
}

.icon_floppy:before {
    content: "\e0e8"
}

.icon_drive:before {
    content: "\e0ea"
}

.icon_search-2:before {
    content: "\e101"
}

.icon_id:before {
    content: "\e107"
}

.icon_id-2:before {
    content: "\e108"
}

.icon_puzzle:before {
    content: "\e102"
}

.icon_like:before {
    content: "\e106"
}

.icon_dislike:before {
    content: "\e0eb"
}

.icon_mug:before {
    content: "\e105"
}

.icon_currency:before {
    content: "\e0ed"
}

.icon_wallet:before {
    content: "\e100"
}

.icon_pens:before {
    content: "\e104"
}

.icon_easel:before {
    content: "\e0e9"
}

.icon_flowchart:before {
    content: "\e109"
}

.icon_datareport:before {
    content: "\e0ec"
}

.icon_briefcase:before {
    content: "\e0fe"
}

.icon_shield:before {
    content: "\e0f6"
}

.icon_percent:before {
    content: "\e0fb"
}

.icon_globe:before {
    content: "\e0e2"
}

.icon_globe-2:before {
    content: "\e0e3"
}

.icon_target:before {
    content: "\e0f5"
}

.icon_hourglass:before {
    content: "\e0e1"
}

.icon_balance:before {
    content: "\e0ff"
}

.icon_rook:before {
    content: "\e0f8"
}

.icon_printer-alt:before {
    content: "\e0fa"
}

.icon_calculator_alt:before {
    content: "\e0e7"
}

.icon_building_alt:before {
    content: "\e0fd"
}

.icon_floppy_alt:before {
    content: "\e0e4"
}

.icon_drive_alt:before {
    content: "\e0e5"
}

.icon_search_alt:before {
    content: "\e0f7"
}

.icon_id_alt:before {
    content: "\e0e0"
}

.icon_id-2_alt:before {
    content: "\e0fc"
}

.icon_puzzle_alt:before {
    content: "\e0f9"
}

.icon_like_alt:before {
    content: "\e0dd"
}

.icon_dislike_alt:before {
    content: "\e0f1"
}

.icon_mug_alt:before {
    content: "\e0dc"
}

.icon_currency_alt:before {
    content: "\e0f3"
}

.icon_wallet_alt:before {
    content: "\e0d8"
}

.icon_pens_alt:before {
    content: "\e0db"
}

.icon_easel_alt:before {
    content: "\e0f0"
}

.icon_flowchart_alt:before {
    content: "\e0df"
}

.icon_datareport_alt:before {
    content: "\e0f2"
}

.icon_briefcase_alt:before {
    content: "\e0f4"
}

.icon_shield_alt:before {
    content: "\e0d9"
}

.icon_percent_alt:before {
    content: "\e0da"
}

.icon_globe_alt:before {
    content: "\e0de"
}

.icon_clipboard:before {
    content: "\e0e6"
}

.glyph {
    float: left;
    text-align: center;
    padding: .75em;
    margin: .4em 1.5em .75em 0;
    width: 6em;
    text-shadow: none
}

.glyph_big {
    font-size: 128px;
    color: #59c5dc;
    float: left;
    margin-right: 20px
}

.glyph div {
    padding-bottom: 10px
}

.glyph input {
    font-family: consolas, monospace;
    font-size: 12px;
    width: 100%;
    text-align: center;
    border: 0;
    box-shadow: 0 0 0 1px #ccc;
    padding: .2em;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px
}

.centered {
    margin-left: auto;
    margin-right: auto
}

.glyph .fs1 {
    font-size: 2em
}

/*!
 * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul > li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: a 2s infinite linear;
    animation: a 2s infinite linear
}

.fa-pulse {
    -webkit-animation: a 1s infinite steps(8);
    animation: a 1s infinite steps(8)
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1);
    transform: scale(-1)
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em
}

.fa-stack-1x, .fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-aws:before {
    content: "\f375"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comments:before {
    content: "\f086"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frown:before {
    content: "\f119"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-key:before {
    content: "\f084"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-male:before {
    content: "\f183"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-moon:before {
    content: "\f186"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nintendo-switch:before {
    content: "\f418"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-percent:before {
    content: "\f295"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-plane:before {
    content: "\f072"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-print:before {
    content: "\f02f"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-random:before {
    content: "\f074"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-rendact:before {
    content: "\f3e4"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-road:before {
    content: "\f018"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-safari:before {
    content: "\f267"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-strava:before {
    content: "\f428"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-train:before {
    content: "\f238"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

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

.sr-only-focusable:active, .sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-family: Font Awesome\ 5 Brands;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/webfonts/fa-brands-400.eot);
    src: url(/fonts/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/fonts/webfonts/fa-brands-400.woff2) format("woff2"), url(/fonts/webfonts/fa-brands-400.woff) format("woff"), url(/fonts/webfonts/fa-brands-400.ttf) format("truetype"), url(/fonts/webfonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: Font Awesome\ 5 Brands
}

@font-face {
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/webfonts/fa-regular-400.eot);
    src: url(/fonts/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(/fonts/webfonts/fa-regular-400.woff2) format("woff2"), url(/fonts/webfonts/fa-regular-400.woff) format("woff"), url(/fonts/webfonts/fa-regular-400.ttf) format("truetype"), url(/fonts/webfonts/fa-regular-400.svg#fontawesome) format("svg")
}

.far {
    font-weight: 400
}

@font-face {
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 900;
    src: url(/fonts/webfonts/fa-solid-900.eot);
    src: url(/fonts/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/fonts/webfonts/fa-solid-900.woff2) format("woff2"), url(/fonts/webfonts/fa-solid-900.woff) format("woff"), url(/fonts/webfonts/fa-solid-900.ttf) format("truetype"), url(/fonts/webfonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .far, .fas {
    font-family: Font Awesome\ 5 Free
}

.fa, .fas {
    font-weight: 900
}

@charset "UTF-8";
/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
    font-family: "Ionicons";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/ion-icons/fonts/ionicons.eot?v=2.0.0");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/ion-icons/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/ion-icons/fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/ion-icons/fonts/ionicons.woff?v=2.0.0") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/ion-icons/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal
}

.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ion-alert:before {
    content: "\f101"
}

.ion-alert-circled:before {
    content: "\f100"
}

.ion-android-add:before {
    content: "\f2c7"
}

.ion-android-add-circle:before {
    content: "\f359"
}

.ion-android-alarm-clock:before {
    content: "\f35a"
}

.ion-android-alert:before {
    content: "\f35b"
}

.ion-android-apps:before {
    content: "\f35c"
}

.ion-android-archive:before {
    content: "\f2c9"
}

.ion-android-arrow-back:before {
    content: "\f2ca"
}

.ion-android-arrow-down:before {
    content: "\f35d"
}

.ion-android-arrow-dropdown:before {
    content: "\f35f"
}

.ion-android-arrow-dropdown-circle:before {
    content: "\f35e"
}

.ion-android-arrow-dropleft:before {
    content: "\f361"
}

.ion-android-arrow-dropleft-circle:before {
    content: "\f360"
}

.ion-android-arrow-dropright:before {
    content: "\f363"
}

.ion-android-arrow-dropright-circle:before {
    content: "\f362"
}

.ion-android-arrow-dropup:before {
    content: "\f365"
}

.ion-android-arrow-dropup-circle:before {
    content: "\f364"
}

.ion-android-arrow-forward:before {
    content: "\f30f"
}

.ion-android-arrow-up:before {
    content: "\f366"
}

.ion-android-attach:before {
    content: "\f367"
}

.ion-android-bar:before {
    content: "\f368"
}

.ion-android-bicycle:before {
    content: "\f369"
}

.ion-android-boat:before {
    content: "\f36a"
}

.ion-android-bookmark:before {
    content: "\f36b"
}

.ion-android-bulb:before {
    content: "\f36c"
}

.ion-android-bus:before {
    content: "\f36d"
}

.ion-android-calendar:before {
    content: "\f2d1"
}

.ion-android-call:before {
    content: "\f2d2"
}

.ion-android-camera:before {
    content: "\f2d3"
}

.ion-android-cancel:before {
    content: "\f36e"
}

.ion-android-car:before {
    content: "\f36f"
}

.ion-android-cart:before {
    content: "\f370"
}

.ion-android-chat:before {
    content: "\f2d4"
}

.ion-android-checkbox:before {
    content: "\f374"
}

.ion-android-checkbox-blank:before {
    content: "\f371"
}

.ion-android-checkbox-outline:before {
    content: "\f373"
}

.ion-android-checkbox-outline-blank:before {
    content: "\f372"
}

.ion-android-checkmark-circle:before {
    content: "\f375"
}

.ion-android-clipboard:before {
    content: "\f376"
}

.ion-android-close:before {
    content: "\f2d7"
}

.ion-android-cloud:before {
    content: "\f37a"
}

.ion-android-cloud-circle:before {
    content: "\f377"
}

.ion-android-cloud-done:before {
    content: "\f378"
}

.ion-android-cloud-outline:before {
    content: "\f379"
}

.ion-android-color-palette:before {
    content: "\f37b"
}

.ion-android-compass:before {
    content: "\f37c"
}

.ion-android-contact:before {
    content: "\f2d8"
}

.ion-android-contacts:before {
    content: "\f2d9"
}

.ion-android-contract:before {
    content: "\f37d"
}

.ion-android-create:before {
    content: "\f37e"
}

.ion-android-delete:before {
    content: "\f37f"
}

.ion-android-desktop:before {
    content: "\f380"
}

.ion-android-document:before {
    content: "\f381"
}

.ion-android-done:before {
    content: "\f383"
}

.ion-android-done-all:before {
    content: "\f382"
}

.ion-android-download:before {
    content: "\f2dd"
}

.ion-android-drafts:before {
    content: "\f384"
}

.ion-android-exit:before {
    content: "\f385"
}

.ion-android-expand:before {
    content: "\f386"
}

.ion-android-favorite:before {
    content: "\f388"
}

.ion-android-favorite-outline:before {
    content: "\f387"
}

.ion-android-film:before {
    content: "\f389"
}

.ion-android-folder:before {
    content: "\f2e0"
}

.ion-android-folder-open:before {
    content: "\f38a"
}

.ion-android-funnel:before {
    content: "\f38b"
}

.ion-android-globe:before {
    content: "\f38c"
}

.ion-android-hand:before {
    content: "\f2e3"
}

.ion-android-hangout:before {
    content: "\f38d"
}

.ion-android-happy:before {
    content: "\f38e"
}

.ion-android-home:before {
    content: "\f38f"
}

.ion-android-image:before {
    content: "\f2e4"
}

.ion-android-laptop:before {
    content: "\f390"
}

.ion-android-list:before {
    content: "\f391"
}

.ion-android-locate:before {
    content: "\f2e9"
}

.ion-android-lock:before {
    content: "\f392"
}

.ion-android-mail:before {
    content: "\f2eb"
}

.ion-android-map:before {
    content: "\f393"
}

.ion-android-menu:before {
    content: "\f394"
}

.ion-android-microphone:before {
    content: "\f2ec"
}

.ion-android-microphone-off:before {
    content: "\f395"
}

.ion-android-more-horizontal:before {
    content: "\f396"
}

.ion-android-more-vertical:before {
    content: "\f397"
}

.ion-android-navigate:before {
    content: "\f398"
}

.ion-android-notifications:before {
    content: "\f39b"
}

.ion-android-notifications-none:before {
    content: "\f399"
}

.ion-android-notifications-off:before {
    content: "\f39a"
}

.ion-android-open:before {
    content: "\f39c"
}

.ion-android-options:before {
    content: "\f39d"
}

.ion-android-people:before {
    content: "\f39e"
}

.ion-android-person:before {
    content: "\f3a0"
}

.ion-android-person-add:before {
    content: "\f39f"
}

.ion-android-phone-landscape:before {
    content: "\f3a1"
}

.ion-android-phone-portrait:before {
    content: "\f3a2"
}

.ion-android-pin:before {
    content: "\f3a3"
}

.ion-android-plane:before {
    content: "\f3a4"
}

.ion-android-playstore:before {
    content: "\f2f0"
}

.ion-android-print:before {
    content: "\f3a5"
}

.ion-android-radio-button-off:before {
    content: "\f3a6"
}

.ion-android-radio-button-on:before {
    content: "\f3a7"
}

.ion-android-refresh:before {
    content: "\f3a8"
}

.ion-android-remove:before {
    content: "\f2f4"
}

.ion-android-remove-circle:before {
    content: "\f3a9"
}

.ion-android-restaurant:before {
    content: "\f3aa"
}

.ion-android-sad:before {
    content: "\f3ab"
}

.ion-android-search:before {
    content: "\f2f5"
}

.ion-android-send:before {
    content: "\f2f6"
}

.ion-android-settings:before {
    content: "\f2f7"
}

.ion-android-share:before {
    content: "\f2f8"
}

.ion-android-share-alt:before {
    content: "\f3ac"
}

.ion-android-star:before {
    content: "\f2fc"
}

.ion-android-star-half:before {
    content: "\f3ad"
}

.ion-android-star-outline:before {
    content: "\f3ae"
}

.ion-android-stopwatch:before {
    content: "\f2fd"
}

.ion-android-subway:before {
    content: "\f3af"
}

.ion-android-sunny:before {
    content: "\f3b0"
}

.ion-android-sync:before {
    content: "\f3b1"
}

.ion-android-textsms:before {
    content: "\f3b2"
}

.ion-android-time:before {
    content: "\f3b3"
}

.ion-android-train:before {
    content: "\f3b4"
}

.ion-android-unlock:before {
    content: "\f3b5"
}

.ion-android-upload:before {
    content: "\f3b6"
}

.ion-android-volume-down:before {
    content: "\f3b7"
}

.ion-android-volume-mute:before {
    content: "\f3b8"
}

.ion-android-volume-off:before {
    content: "\f3b9"
}

.ion-android-volume-up:before {
    content: "\f3ba"
}

.ion-android-walk:before {
    content: "\f3bb"
}

.ion-android-warning:before {
    content: "\f3bc"
}

.ion-android-watch:before {
    content: "\f3bd"
}

.ion-android-wifi:before {
    content: "\f305"
}

.ion-aperture:before {
    content: "\f313"
}

.ion-archive:before {
    content: "\f102"
}

.ion-arrow-down-a:before {
    content: "\f103"
}

.ion-arrow-down-b:before {
    content: "\f104"
}

.ion-arrow-down-c:before {
    content: "\f105"
}

.ion-arrow-expand:before {
    content: "\f25e"
}

.ion-arrow-graph-down-left:before {
    content: "\f25f"
}

.ion-arrow-graph-down-right:before {
    content: "\f260"
}

.ion-arrow-graph-up-left:before {
    content: "\f261"
}

.ion-arrow-graph-up-right:before {
    content: "\f262"
}

.ion-arrow-left-a:before {
    content: "\f106"
}

.ion-arrow-left-b:before {
    content: "\f107"
}

.ion-arrow-left-c:before {
    content: "\f108"
}

.ion-arrow-move:before {
    content: "\f263"
}

.ion-arrow-resize:before {
    content: "\f264"
}

.ion-arrow-return-left:before {
    content: "\f265"
}

.ion-arrow-return-right:before {
    content: "\f266"
}

.ion-arrow-right-a:before {
    content: "\f109"
}

.ion-arrow-right-b:before {
    content: "\f10a"
}

.ion-arrow-right-c:before {
    content: "\f10b"
}

.ion-arrow-shrink:before {
    content: "\f267"
}

.ion-arrow-swap:before {
    content: "\f268"
}

.ion-arrow-up-a:before {
    content: "\f10c"
}

.ion-arrow-up-b:before {
    content: "\f10d"
}

.ion-arrow-up-c:before {
    content: "\f10e"
}

.ion-asterisk:before {
    content: "\f314"
}

.ion-at:before {
    content: "\f10f"
}

.ion-backspace:before {
    content: "\f3bf"
}

.ion-backspace-outline:before {
    content: "\f3be"
}

.ion-bag:before {
    content: "\f110"
}

.ion-battery-charging:before {
    content: "\f111"
}

.ion-battery-empty:before {
    content: "\f112"
}

.ion-battery-full:before {
    content: "\f113"
}

.ion-battery-half:before {
    content: "\f114"
}

.ion-battery-low:before {
    content: "\f115"
}

.ion-beaker:before {
    content: "\f269"
}

.ion-beer:before {
    content: "\f26a"
}

.ion-bluetooth:before {
    content: "\f116"
}

.ion-bonfire:before {
    content: "\f315"
}

.ion-bookmark:before {
    content: "\f26b"
}

.ion-bowtie:before {
    content: "\f3c0"
}

.ion-briefcase:before {
    content: "\f26c"
}

.ion-bug:before {
    content: "\f2be"
}

.ion-calculator:before {
    content: "\f26d"
}

.ion-calendar:before {
    content: "\f117"
}

.ion-camera:before {
    content: "\f118"
}

.ion-card:before {
    content: "\f119"
}

.ion-cash:before {
    content: "\f316"
}

.ion-chatbox:before {
    content: "\f11b"
}

.ion-chatbox-working:before {
    content: "\f11a"
}

.ion-chatboxes:before {
    content: "\f11c"
}

.ion-chatbubble:before {
    content: "\f11e"
}

.ion-chatbubble-working:before {
    content: "\f11d"
}

.ion-chatbubbles:before {
    content: "\f11f"
}

.ion-checkmark:before {
    content: "\f122"
}

.ion-checkmark-circled:before {
    content: "\f120"
}

.ion-checkmark-round:before {
    content: "\f121"
}

.ion-chevron-down:before {
    content: "\f123"
}

.ion-chevron-left:before {
    content: "\f124"
}

.ion-chevron-right:before {
    content: "\f125"
}

.ion-chevron-up:before {
    content: "\f126"
}

.ion-clipboard:before {
    content: "\f127"
}

.ion-clock:before {
    content: "\f26e"
}

.ion-close:before {
    content: "\f12a"
}

.ion-close-circled:before {
    content: "\f128"
}

.ion-close-round:before {
    content: "\f129"
}

.ion-closed-captioning:before {
    content: "\f317"
}

.ion-cloud:before {
    content: "\f12b"
}

.ion-code:before {
    content: "\f271"
}

.ion-code-download:before {
    content: "\f26f"
}

.ion-code-working:before {
    content: "\f270"
}

.ion-coffee:before {
    content: "\f272"
}

.ion-compass:before {
    content: "\f273"
}

.ion-compose:before {
    content: "\f12c"
}

.ion-connection-bars:before {
    content: "\f274"
}

.ion-contrast:before {
    content: "\f275"
}

.ion-crop:before {
    content: "\f3c1"
}

.ion-cube:before {
    content: "\f318"
}

.ion-disc:before {
    content: "\f12d"
}

.ion-document:before {
    content: "\f12f"
}

.ion-document-text:before {
    content: "\f12e"
}

.ion-drag:before {
    content: "\f130"
}

.ion-earth:before {
    content: "\f276"
}

.ion-easel:before {
    content: "\f3c2"
}

.ion-edit:before {
    content: "\f2bf"
}

.ion-egg:before {
    content: "\f277"
}

.ion-eject:before {
    content: "\f131"
}

.ion-email:before {
    content: "\f132"
}

.ion-email-unread:before {
    content: "\f3c3"
}

.ion-erlenmeyer-flask:before {
    content: "\f3c5"
}

.ion-erlenmeyer-flask-bubbles:before {
    content: "\f3c4"
}

.ion-eye:before {
    content: "\f133"
}

.ion-eye-disabled:before {
    content: "\f306"
}

.ion-female:before {
    content: "\f278"
}

.ion-filing:before {
    content: "\f134"
}

.ion-film-marker:before {
    content: "\f135"
}

.ion-fireball:before {
    content: "\f319"
}

.ion-flag:before {
    content: "\f279"
}

.ion-flame:before {
    content: "\f31a"
}

.ion-flash:before {
    content: "\f137"
}

.ion-flash-off:before {
    content: "\f136"
}

.ion-folder:before {
    content: "\f139"
}

.ion-fork:before {
    content: "\f27a"
}

.ion-fork-repo:before {
    content: "\f2c0"
}

.ion-forward:before {
    content: "\f13a"
}

.ion-funnel:before {
    content: "\f31b"
}

.ion-gear-a:before {
    content: "\f13d"
}

.ion-gear-b:before {
    content: "\f13e"
}

.ion-grid:before {
    content: "\f13f"
}

.ion-hammer:before {
    content: "\f27b"
}

.ion-happy:before {
    content: "\f31c"
}

.ion-happy-outline:before {
    content: "\f3c6"
}

.ion-headphone:before {
    content: "\f140"
}

.ion-heart:before {
    content: "\f141"
}

.ion-heart-broken:before {
    content: "\f31d"
}

.ion-help:before {
    content: "\f143"
}

.ion-help-buoy:before {
    content: "\f27c"
}

.ion-help-circled:before {
    content: "\f142"
}

.ion-home:before {
    content: "\f144"
}

.ion-icecream:before {
    content: "\f27d"
}

.ion-image:before {
    content: "\f147"
}

.ion-images:before {
    content: "\f148"
}

.ion-information:before {
    content: "\f14a"
}

.ion-information-circled:before {
    content: "\f149"
}

.ion-ionic:before {
    content: "\f14b"
}

.ion-ios-alarm:before {
    content: "\f3c8"
}

.ion-ios-alarm-outline:before {
    content: "\f3c7"
}

.ion-ios-albums:before {
    content: "\f3ca"
}

.ion-ios-albums-outline:before {
    content: "\f3c9"
}

.ion-ios-americanfootball:before {
    content: "\f3cc"
}

.ion-ios-americanfootball-outline:before {
    content: "\f3cb"
}

.ion-ios-analytics:before {
    content: "\f3ce"
}

.ion-ios-analytics-outline:before {
    content: "\f3cd"
}

.ion-ios-arrow-back:before {
    content: "\f3cf"
}

.ion-ios-arrow-down:before {
    content: "\f3d0"
}

.ion-ios-arrow-forward:before {
    content: "\f3d1"
}

.ion-ios-arrow-left:before {
    content: "\f3d2"
}

.ion-ios-arrow-right:before {
    content: "\f3d3"
}

.ion-ios-arrow-thin-down:before {
    content: "\f3d4"
}

.ion-ios-arrow-thin-left:before {
    content: "\f3d5"
}

.ion-ios-arrow-thin-right:before {
    content: "\f3d6"
}

.ion-ios-arrow-thin-up:before {
    content: "\f3d7"
}

.ion-ios-arrow-up:before {
    content: "\f3d8"
}

.ion-ios-at:before {
    content: "\f3da"
}

.ion-ios-at-outline:before {
    content: "\f3d9"
}

.ion-ios-barcode:before {
    content: "\f3dc"
}

.ion-ios-barcode-outline:before {
    content: "\f3db"
}

.ion-ios-baseball:before {
    content: "\f3de"
}

.ion-ios-baseball-outline:before {
    content: "\f3dd"
}

.ion-ios-basketball:before {
    content: "\f3e0"
}

.ion-ios-basketball-outline:before {
    content: "\f3df"
}

.ion-ios-bell:before {
    content: "\f3e2"
}

.ion-ios-bell-outline:before {
    content: "\f3e1"
}

.ion-ios-body:before {
    content: "\f3e4"
}

.ion-ios-body-outline:before {
    content: "\f3e3"
}

.ion-ios-bolt:before {
    content: "\f3e6"
}

.ion-ios-bolt-outline:before {
    content: "\f3e5"
}

.ion-ios-book:before {
    content: "\f3e8"
}

.ion-ios-book-outline:before {
    content: "\f3e7"
}

.ion-ios-bookmarks:before {
    content: "\f3ea"
}

.ion-ios-bookmarks-outline:before {
    content: "\f3e9"
}

.ion-ios-box:before {
    content: "\f3ec"
}

.ion-ios-box-outline:before {
    content: "\f3eb"
}

.ion-ios-briefcase:before {
    content: "\f3ee"
}

.ion-ios-briefcase-outline:before {
    content: "\f3ed"
}

.ion-ios-browsers:before {
    content: "\f3f0"
}

.ion-ios-browsers-outline:before {
    content: "\f3ef"
}

.ion-ios-calculator:before {
    content: "\f3f2"
}

.ion-ios-calculator-outline:before {
    content: "\f3f1"
}

.ion-ios-calendar:before {
    content: "\f3f4"
}

.ion-ios-calendar-outline:before {
    content: "\f3f3"
}

.ion-ios-camera:before {
    content: "\f3f6"
}

.ion-ios-camera-outline:before {
    content: "\f3f5"
}

.ion-ios-cart:before {
    content: "\f3f8"
}

.ion-ios-cart-outline:before {
    content: "\f3f7"
}

.ion-ios-chatboxes:before {
    content: "\f3fa"
}

.ion-ios-chatboxes-outline:before {
    content: "\f3f9"
}

.ion-ios-chatbubble:before {
    content: "\f3fc"
}

.ion-ios-chatbubble-outline:before {
    content: "\f3fb"
}

.ion-ios-checkmark:before {
    content: "\f3ff"
}

.ion-ios-checkmark-empty:before {
    content: "\f3fd"
}

.ion-ios-checkmark-outline:before {
    content: "\f3fe"
}

.ion-ios-circle-filled:before {
    content: "\f400"
}

.ion-ios-circle-outline:before {
    content: "\f401"
}

.ion-ios-clock:before {
    content: "\f403"
}

.ion-ios-clock-outline:before {
    content: "\f402"
}

.ion-ios-close:before {
    content: "\f406"
}

.ion-ios-close-empty:before {
    content: "\f404"
}

.ion-ios-close-outline:before {
    content: "\f405"
}

.ion-ios-cloud:before {
    content: "\f40c"
}

.ion-ios-cloud-download:before {
    content: "\f408"
}

.ion-ios-cloud-download-outline:before {
    content: "\f407"
}

.ion-ios-cloud-outline:before {
    content: "\f409"
}

.ion-ios-cloud-upload:before {
    content: "\f40b"
}

.ion-ios-cloud-upload-outline:before {
    content: "\f40a"
}

.ion-ios-cloudy:before {
    content: "\f410"
}

.ion-ios-cloudy-night:before {
    content: "\f40e"
}

.ion-ios-cloudy-night-outline:before {
    content: "\f40d"
}

.ion-ios-cloudy-outline:before {
    content: "\f40f"
}

.ion-ios-cog:before {
    content: "\f412"
}

.ion-ios-cog-outline:before {
    content: "\f411"
}

.ion-ios-color-filter:before {
    content: "\f414"
}

.ion-ios-color-filter-outline:before {
    content: "\f413"
}

.ion-ios-color-wand:before {
    content: "\f416"
}

.ion-ios-color-wand-outline:before {
    content: "\f415"
}

.ion-ios-compose:before {
    content: "\f418"
}

.ion-ios-compose-outline:before {
    content: "\f417"
}

.ion-ios-contact:before {
    content: "\f41a"
}

.ion-ios-contact-outline:before {
    content: "\f419"
}

.ion-ios-copy:before {
    content: "\f41c"
}

.ion-ios-copy-outline:before {
    content: "\f41b"
}

.ion-ios-crop:before {
    content: "\f41e"
}

.ion-ios-crop-strong:before {
    content: "\f41d"
}

.ion-ios-download:before {
    content: "\f420"
}

.ion-ios-download-outline:before {
    content: "\f41f"
}

.ion-ios-drag:before {
    content: "\f421"
}

.ion-ios-email:before {
    content: "\f423"
}

.ion-ios-email-outline:before {
    content: "\f422"
}

.ion-ios-eye:before {
    content: "\f425"
}

.ion-ios-eye-outline:before {
    content: "\f424"
}

.ion-ios-fastforward:before {
    content: "\f427"
}

.ion-ios-fastforward-outline:before {
    content: "\f426"
}

.ion-ios-filing:before {
    content: "\f429"
}

.ion-ios-filing-outline:before {
    content: "\f428"
}

.ion-ios-film:before {
    content: "\f42b"
}

.ion-ios-film-outline:before {
    content: "\f42a"
}

.ion-ios-flag:before {
    content: "\f42d"
}

.ion-ios-flag-outline:before {
    content: "\f42c"
}

.ion-ios-flame:before {
    content: "\f42f"
}

.ion-ios-flame-outline:before {
    content: "\f42e"
}

.ion-ios-flask:before {
    content: "\f431"
}

.ion-ios-flask-outline:before {
    content: "\f430"
}

.ion-ios-flower:before {
    content: "\f433"
}

.ion-ios-flower-outline:before {
    content: "\f432"
}

.ion-ios-folder:before {
    content: "\f435"
}

.ion-ios-folder-outline:before {
    content: "\f434"
}

.ion-ios-football:before {
    content: "\f437"
}

.ion-ios-football-outline:before {
    content: "\f436"
}

.ion-ios-game-controller-a:before {
    content: "\f439"
}

.ion-ios-game-controller-a-outline:before {
    content: "\f438"
}

.ion-ios-game-controller-b:before {
    content: "\f43b"
}

.ion-ios-game-controller-b-outline:before {
    content: "\f43a"
}

.ion-ios-gear:before {
    content: "\f43d"
}

.ion-ios-gear-outline:before {
    content: "\f43c"
}

.ion-ios-glasses:before {
    content: "\f43f"
}

.ion-ios-glasses-outline:before {
    content: "\f43e"
}

.ion-ios-grid-view:before {
    content: "\f441"
}

.ion-ios-grid-view-outline:before {
    content: "\f440"
}

.ion-ios-heart:before {
    content: "\f443"
}

.ion-ios-heart-outline:before {
    content: "\f442"
}

.ion-ios-help:before {
    content: "\f446"
}

.ion-ios-help-empty:before {
    content: "\f444"
}

.ion-ios-help-outline:before {
    content: "\f445"
}

.ion-ios-home:before {
    content: "\f448"
}

.ion-ios-home-outline:before {
    content: "\f447"
}

.ion-ios-infinite:before {
    content: "\f44a"
}

.ion-ios-infinite-outline:before {
    content: "\f449"
}

.ion-ios-information:before {
    content: "\f44d"
}

.ion-ios-information-empty:before {
    content: "\f44b"
}

.ion-ios-information-outline:before {
    content: "\f44c"
}

.ion-ios-ionic-outline:before {
    content: "\f44e"
}

.ion-ios-keypad:before {
    content: "\f450"
}

.ion-ios-keypad-outline:before {
    content: "\f44f"
}

.ion-ios-lightbulb:before {
    content: "\f452"
}

.ion-ios-lightbulb-outline:before {
    content: "\f451"
}

.ion-ios-list:before {
    content: "\f454"
}

.ion-ios-list-outline:before {
    content: "\f453"
}

.ion-ios-location:before {
    content: "\f456"
}

.ion-ios-location-outline:before {
    content: "\f455"
}

.ion-ios-locked:before {
    content: "\f458"
}

.ion-ios-locked-outline:before {
    content: "\f457"
}

.ion-ios-loop:before {
    content: "\f45a"
}

.ion-ios-loop-strong:before {
    content: "\f459"
}

.ion-ios-medical:before {
    content: "\f45c"
}

.ion-ios-medical-outline:before {
    content: "\f45b"
}

.ion-ios-medkit:before {
    content: "\f45e"
}

.ion-ios-medkit-outline:before {
    content: "\f45d"
}

.ion-ios-mic:before {
    content: "\f461"
}

.ion-ios-mic-off:before {
    content: "\f45f"
}

.ion-ios-mic-outline:before {
    content: "\f460"
}

.ion-ios-minus:before {
    content: "\f464"
}

.ion-ios-minus-empty:before {
    content: "\f462"
}

.ion-ios-minus-outline:before {
    content: "\f463"
}

.ion-ios-monitor:before {
    content: "\f466"
}

.ion-ios-monitor-outline:before {
    content: "\f465"
}

.ion-ios-moon:before {
    content: "\f468"
}

.ion-ios-moon-outline:before {
    content: "\f467"
}

.ion-ios-more:before {
    content: "\f46a"
}

.ion-ios-more-outline:before {
    content: "\f469"
}

.ion-ios-musical-note:before {
    content: "\f46b"
}

.ion-ios-musical-notes:before {
    content: "\f46c"
}

.ion-ios-navigate:before {
    content: "\f46e"
}

.ion-ios-navigate-outline:before {
    content: "\f46d"
}

.ion-ios-nutrition:before {
    content: "\f470"
}

.ion-ios-nutrition-outline:before {
    content: "\f46f"
}

.ion-ios-paper:before {
    content: "\f472"
}

.ion-ios-paper-outline:before {
    content: "\f471"
}

.ion-ios-paperplane:before {
    content: "\f474"
}

.ion-ios-paperplane-outline:before {
    content: "\f473"
}

.ion-ios-partlysunny:before {
    content: "\f476"
}

.ion-ios-partlysunny-outline:before {
    content: "\f475"
}

.ion-ios-pause:before {
    content: "\f478"
}

.ion-ios-pause-outline:before {
    content: "\f477"
}

.ion-ios-paw:before {
    content: "\f47a"
}

.ion-ios-paw-outline:before {
    content: "\f479"
}

.ion-ios-people:before {
    content: "\f47c"
}

.ion-ios-people-outline:before {
    content: "\f47b"
}

.ion-ios-person:before {
    content: "\f47e"
}

.ion-ios-person-outline:before {
    content: "\f47d"
}

.ion-ios-personadd:before {
    content: "\f480"
}

.ion-ios-personadd-outline:before {
    content: "\f47f"
}

.ion-ios-photos:before {
    content: "\f482"
}

.ion-ios-photos-outline:before {
    content: "\f481"
}

.ion-ios-pie:before {
    content: "\f484"
}

.ion-ios-pie-outline:before {
    content: "\f483"
}

.ion-ios-pint:before {
    content: "\f486"
}

.ion-ios-pint-outline:before {
    content: "\f485"
}

.ion-ios-play:before {
    content: "\f488"
}

.ion-ios-play-outline:before {
    content: "\f487"
}

.ion-ios-plus:before {
    content: "\f48b"
}

.ion-ios-plus-empty:before {
    content: "\f489"
}

.ion-ios-plus-outline:before {
    content: "\f48a"
}

.ion-ios-pricetag:before {
    content: "\f48d"
}

.ion-ios-pricetag-outline:before {
    content: "\f48c"
}

.ion-ios-pricetags:before {
    content: "\f48f"
}

.ion-ios-pricetags-outline:before {
    content: "\f48e"
}

.ion-ios-printer:before {
    content: "\f491"
}

.ion-ios-printer-outline:before {
    content: "\f490"
}

.ion-ios-pulse:before {
    content: "\f493"
}

.ion-ios-pulse-strong:before {
    content: "\f492"
}

.ion-ios-rainy:before {
    content: "\f495"
}

.ion-ios-rainy-outline:before {
    content: "\f494"
}

.ion-ios-recording:before {
    content: "\f497"
}

.ion-ios-recording-outline:before {
    content: "\f496"
}

.ion-ios-redo:before {
    content: "\f499"
}

.ion-ios-redo-outline:before {
    content: "\f498"
}

.ion-ios-refresh:before {
    content: "\f49c"
}

.ion-ios-refresh-empty:before {
    content: "\f49a"
}

.ion-ios-refresh-outline:before {
    content: "\f49b"
}

.ion-ios-reload:before {
    content: "\f49d"
}

.ion-ios-reverse-camera:before {
    content: "\f49f"
}

.ion-ios-reverse-camera-outline:before {
    content: "\f49e"
}

.ion-ios-rewind:before {
    content: "\f4a1"
}

.ion-ios-rewind-outline:before {
    content: "\f4a0"
}

.ion-ios-rose:before {
    content: "\f4a3"
}

.ion-ios-rose-outline:before {
    content: "\f4a2"
}

.ion-ios-search:before {
    content: "\f4a5"
}

.ion-ios-search-strong:before {
    content: "\f4a4"
}

.ion-ios-settings:before {
    content: "\f4a7"
}

.ion-ios-settings-strong:before {
    content: "\f4a6"
}

.ion-ios-shuffle:before {
    content: "\f4a9"
}

.ion-ios-shuffle-strong:before {
    content: "\f4a8"
}

.ion-ios-skipbackward:before {
    content: "\f4ab"
}

.ion-ios-skipbackward-outline:before {
    content: "\f4aa"
}

.ion-ios-skipforward:before {
    content: "\f4ad"
}

.ion-ios-skipforward-outline:before {
    content: "\f4ac"
}

.ion-ios-snowy:before {
    content: "\f4ae"
}

.ion-ios-speedometer:before {
    content: "\f4b0"
}

.ion-ios-speedometer-outline:before {
    content: "\f4af"
}

.ion-ios-star:before {
    content: "\f4b3"
}

.ion-ios-star-half:before {
    content: "\f4b1"
}

.ion-ios-star-outline:before {
    content: "\f4b2"
}

.ion-ios-stopwatch:before {
    content: "\f4b5"
}

.ion-ios-stopwatch-outline:before {
    content: "\f4b4"
}

.ion-ios-sunny:before {
    content: "\f4b7"
}

.ion-ios-sunny-outline:before {
    content: "\f4b6"
}

.ion-ios-telephone:before {
    content: "\f4b9"
}

.ion-ios-telephone-outline:before {
    content: "\f4b8"
}

.ion-ios-tennisball:before {
    content: "\f4bb"
}

.ion-ios-tennisball-outline:before {
    content: "\f4ba"
}

.ion-ios-thunderstorm:before {
    content: "\f4bd"
}

.ion-ios-thunderstorm-outline:before {
    content: "\f4bc"
}

.ion-ios-time:before {
    content: "\f4bf"
}

.ion-ios-time-outline:before {
    content: "\f4be"
}

.ion-ios-timer:before {
    content: "\f4c1"
}

.ion-ios-timer-outline:before {
    content: "\f4c0"
}

.ion-ios-toggle:before {
    content: "\f4c3"
}

.ion-ios-toggle-outline:before {
    content: "\f4c2"
}

.ion-ios-trash:before {
    content: "\f4c5"
}

.ion-ios-trash-outline:before {
    content: "\f4c4"
}

.ion-ios-undo:before {
    content: "\f4c7"
}

.ion-ios-undo-outline:before {
    content: "\f4c6"
}

.ion-ios-unlocked:before {
    content: "\f4c9"
}

.ion-ios-unlocked-outline:before {
    content: "\f4c8"
}

.ion-ios-upload:before {
    content: "\f4cb"
}

.ion-ios-upload-outline:before {
    content: "\f4ca"
}

.ion-ios-videocam:before {
    content: "\f4cd"
}

.ion-ios-videocam-outline:before {
    content: "\f4cc"
}

.ion-ios-volume-high:before {
    content: "\f4ce"
}

.ion-ios-volume-low:before {
    content: "\f4cf"
}

.ion-ios-wineglass:before {
    content: "\f4d1"
}

.ion-ios-wineglass-outline:before {
    content: "\f4d0"
}

.ion-ios-world:before {
    content: "\f4d3"
}

.ion-ios-world-outline:before {
    content: "\f4d2"
}

.ion-ipad:before {
    content: "\f1f9"
}

.ion-iphone:before {
    content: "\f1fa"
}

.ion-ipod:before {
    content: "\f1fb"
}

.ion-jet:before {
    content: "\f295"
}

.ion-key:before {
    content: "\f296"
}

.ion-knife:before {
    content: "\f297"
}

.ion-laptop:before {
    content: "\f1fc"
}

.ion-leaf:before {
    content: "\f1fd"
}

.ion-levels:before {
    content: "\f298"
}

.ion-lightbulb:before {
    content: "\f299"
}

.ion-link:before {
    content: "\f1fe"
}

.ion-load-a:before {
    content: "\f29a"
}

.ion-load-b:before {
    content: "\f29b"
}

.ion-load-c:before {
    content: "\f29c"
}

.ion-load-d:before {
    content: "\f29d"
}

.ion-location:before {
    content: "\f1ff"
}

.ion-lock-combination:before {
    content: "\f4d4"
}

.ion-locked:before {
    content: "\f200"
}

.ion-log-in:before {
    content: "\f29e"
}

.ion-log-out:before {
    content: "\f29f"
}

.ion-loop:before {
    content: "\f201"
}

.ion-magnet:before {
    content: "\f2a0"
}

.ion-male:before {
    content: "\f2a1"
}

.ion-man:before {
    content: "\f202"
}

.ion-map:before {
    content: "\f203"
}

.ion-medkit:before {
    content: "\f2a2"
}

.ion-merge:before {
    content: "\f33f"
}

.ion-mic-a:before {
    content: "\f204"
}

.ion-mic-b:before {
    content: "\f205"
}

.ion-mic-c:before {
    content: "\f206"
}

.ion-minus:before {
    content: "\f209"
}

.ion-minus-circled:before {
    content: "\f207"
}

.ion-minus-round:before {
    content: "\f208"
}

.ion-model-s:before {
    content: "\f2c1"
}

.ion-monitor:before {
    content: "\f20a"
}

.ion-more:before {
    content: "\f20b"
}

.ion-mouse:before {
    content: "\f340"
}

.ion-music-note:before {
    content: "\f20c"
}

.ion-navicon:before {
    content: "\f20e"
}

.ion-navicon-round:before {
    content: "\f20d"
}

.ion-navigate:before {
    content: "\f2a3"
}

.ion-network:before {
    content: "\f341"
}

.ion-no-smoking:before {
    content: "\f2c2"
}

.ion-nuclear:before {
    content: "\f2a4"
}

.ion-outlet:before {
    content: "\f342"
}

.ion-paintbrush:before {
    content: "\f4d5"
}

.ion-paintbucket:before {
    content: "\f4d6"
}

.ion-paper-airplane:before {
    content: "\f2c3"
}

.ion-paperclip:before {
    content: "\f20f"
}

.ion-pause:before {
    content: "\f210"
}

.ion-person:before {
    content: "\f213"
}

.ion-person-add:before {
    content: "\f211"
}

.ion-person-stalker:before {
    content: "\f212"
}

.ion-pie-graph:before {
    content: "\f2a5"
}

.ion-pin:before {
    content: "\f2a6"
}

.ion-pinpoint:before {
    content: "\f2a7"
}

.ion-pizza:before {
    content: "\f2a8"
}

.ion-plane:before {
    content: "\f214"
}

.ion-planet:before {
    content: "\f343"
}

.ion-play:before {
    content: "\f215"
}

.ion-playstation:before {
    content: "\f30a"
}

.ion-plus:before {
    content: "\f218"
}

.ion-plus-circled:before {
    content: "\f216"
}

.ion-plus-round:before {
    content: "\f217"
}

.ion-podium:before {
    content: "\f344"
}

.ion-pound:before {
    content: "\f219"
}

.ion-power:before {
    content: "\f2a9"
}

.ion-pricetag:before {
    content: "\f2aa"
}

.ion-pricetags:before {
    content: "\f2ab"
}

.ion-printer:before {
    content: "\f21a"
}

.ion-pull-request:before {
    content: "\f345"
}

.ion-qr-scanner:before {
    content: "\f346"
}

.ion-quote:before {
    content: "\f347"
}

.ion-radio-waves:before {
    content: "\f2ac"
}

.ion-record:before {
    content: "\f21b"
}

.ion-refresh:before {
    content: "\f21c"
}

.ion-reply:before {
    content: "\f21e"
}

.ion-reply-all:before {
    content: "\f21d"
}

.ion-ribbon-a:before {
    content: "\f348"
}

.ion-ribbon-b:before {
    content: "\f349"
}

.ion-sad:before {
    content: "\f34a"
}

.ion-sad-outline:before {
    content: "\f4d7"
}

.ion-scissors:before {
    content: "\f34b"
}

.ion-search:before {
    content: "\f21f"
}

.ion-settings:before {
    content: "\f2ad"
}

.ion-share:before {
    content: "\f220"
}

.ion-shuffle:before {
    content: "\f221"
}

.ion-skip-backward:before {
    content: "\f222"
}

.ion-skip-forward:before {
    content: "\f223"
}

.ion-social-android:before {
    content: "\f225"
}

.ion-social-android-outline:before {
    content: "\f224"
}

.ion-social-angular:before {
    content: "\f4d9"
}

.ion-social-angular-outline:before {
    content: "\f4d8"
}

.ion-social-apple:before {
    content: "\f227"
}

.ion-social-apple-outline:before {
    content: "\f226"
}

.ion-social-bitcoin:before {
    content: "\f2af"
}

.ion-social-bitcoin-outline:before {
    content: "\f2ae"
}

.ion-social-buffer:before {
    content: "\f229"
}

.ion-social-buffer-outline:before {
    content: "\f228"
}

.ion-social-chrome:before {
    content: "\f4db"
}

.ion-social-chrome-outline:before {
    content: "\f4da"
}

.ion-social-codepen:before {
    content: "\f4dd"
}

.ion-social-codepen-outline:before {
    content: "\f4dc"
}

.ion-social-css3:before {
    content: "\f4df"
}

.ion-social-css3-outline:before {
    content: "\f4de"
}

.ion-social-designernews:before {
    content: "\f22b"
}

.ion-social-designernews-outline:before {
    content: "\f22a"
}

.ion-social-dribbble:before {
    content: "\f22d"
}

.ion-social-dribbble-outline:before {
    content: "\f22c"
}

.ion-social-dropbox:before {
    content: "\f22f"
}

.ion-social-dropbox-outline:before {
    content: "\f22e"
}

.ion-social-euro:before {
    content: "\f4e1"
}

.ion-social-euro-outline:before {
    content: "\f4e0"
}

.ion-social-facebook:before {
    content: "\f231"
}

.ion-social-facebook-outline:before {
    content: "\f230"
}

.ion-social-foursquare:before {
    content: "\f34d"
}

.ion-social-foursquare-outline:before {
    content: "\f34c"
}

.ion-social-freebsd-devil:before {
    content: "\f2c4"
}

.ion-social-github:before {
    content: "\f233"
}

.ion-social-github-outline:before {
    content: "\f232"
}

.ion-social-google:before {
    content: "\f34f"
}

.ion-social-google-outline:before {
    content: "\f34e"
}

.ion-social-googleplus:before {
    content: "\f235"
}

.ion-social-googleplus-outline:before {
    content: "\f234"
}

.ion-social-hackernews:before {
    content: "\f237"
}

.ion-social-hackernews-outline:before {
    content: "\f236"
}

.ion-social-html5:before {
    content: "\f4e3"
}

.ion-social-html5-outline:before {
    content: "\f4e2"
}

.ion-social-instagram:before {
    content: "\f351"
}

.ion-social-instagram-outline:before {
    content: "\f350"
}

.ion-social-javascript:before {
    content: "\f4e5"
}

.ion-social-javascript-outline:before {
    content: "\f4e4"
}

.ion-social-linkedin:before {
    content: "\f239"
}

.ion-social-linkedin-outline:before {
    content: "\f238"
}

.ion-social-markdown:before {
    content: "\f4e6"
}

.ion-social-nodejs:before {
    content: "\f4e7"
}

.ion-social-octocat:before {
    content: "\f4e8"
}

.ion-social-pinterest:before {
    content: "\f2b1"
}

.ion-social-pinterest-outline:before {
    content: "\f2b0"
}

.ion-social-python:before {
    content: "\f4e9"
}

.ion-social-reddit:before {
    content: "\f23b"
}

.ion-social-reddit-outline:before {
    content: "\f23a"
}

.ion-social-rss:before {
    content: "\f23d"
}

.ion-social-rss-outline:before {
    content: "\f23c"
}

.ion-social-sass:before {
    content: "\f4ea"
}

.ion-social-skype:before {
    content: "\f23f"
}

.ion-social-skype-outline:before {
    content: "\f23e"
}

.ion-social-snapchat:before {
    content: "\f4ec"
}

.ion-social-snapchat-outline:before {
    content: "\f4eb"
}

.ion-social-tumblr:before {
    content: "\f241"
}

.ion-social-tumblr-outline:before {
    content: "\f240"
}

.ion-social-tux:before {
    content: "\f2c5"
}

.ion-social-twitch:before {
    content: "\f4ee"
}

.ion-social-twitch-outline:before {
    content: "\f4ed"
}

.ion-social-twitter:before {
    content: "\f243"
}

.ion-social-twitter-outline:before {
    content: "\f242"
}

.ion-social-usd:before {
    content: "\f353"
}

.ion-social-usd-outline:before {
    content: "\f352"
}

.ion-social-vimeo:before {
    content: "\f245"
}

.ion-social-vimeo-outline:before {
    content: "\f244"
}

.ion-social-whatsapp:before {
    content: "\f4f0"
}

.ion-social-whatsapp-outline:before {
    content: "\f4ef"
}

.ion-social-windows:before {
    content: "\f247"
}

.ion-social-windows-outline:before {
    content: "\f246"
}

.ion-social-wordpress:before {
    content: "\f249"
}

.ion-social-wordpress-outline:before {
    content: "\f248"
}

.ion-social-yahoo:before {
    content: "\f24b"
}

.ion-social-yahoo-outline:before {
    content: "\f24a"
}

.ion-social-yen:before {
    content: "\f4f2"
}

.ion-social-yen-outline:before {
    content: "\f4f1"
}

.ion-social-youtube:before {
    content: "\f24d"
}

.ion-social-youtube-outline:before {
    content: "\f24c"
}

.ion-soup-can:before {
    content: "\f4f4"
}

.ion-soup-can-outline:before {
    content: "\f4f3"
}

.ion-speakerphone:before {
    content: "\f2b2"
}

.ion-speedometer:before {
    content: "\f2b3"
}

.ion-spoon:before {
    content: "\f2b4"
}

.ion-star:before {
    content: "\f24e"
}

.ion-stats-bars:before {
    content: "\f2b5"
}

.ion-steam:before {
    content: "\f30b"
}

.ion-stop:before {
    content: "\f24f"
}

.ion-thermometer:before {
    content: "\f2b6"
}

.ion-thumbsdown:before {
    content: "\f250"
}

.ion-thumbsup:before {
    content: "\f251"
}

.ion-toggle:before {
    content: "\f355"
}

.ion-toggle-filled:before {
    content: "\f354"
}

.ion-transgender:before {
    content: "\f4f5"
}

.ion-trash-a:before {
    content: "\f252"
}

.ion-trash-b:before {
    content: "\f253"
}

.ion-trophy:before {
    content: "\f356"
}

.ion-tshirt:before {
    content: "\f4f7"
}

.ion-tshirt-outline:before {
    content: "\f4f6"
}

.ion-umbrella:before {
    content: "\f2b7"
}

.ion-university:before {
    content: "\f357"
}

.ion-unlocked:before {
    content: "\f254"
}

.ion-upload:before {
    content: "\f255"
}

.ion-usb:before {
    content: "\f2b8"
}

.ion-videocamera:before {
    content: "\f256"
}

.ion-volume-high:before {
    content: "\f257"
}

.ion-volume-low:before {
    content: "\f258"
}

.ion-volume-medium:before {
    content: "\f259"
}

.ion-volume-mute:before {
    content: "\f25a"
}

.ion-wand:before {
    content: "\f358"
}

.ion-waterdrop:before {
    content: "\f25b"
}

.ion-wifi:before {
    content: "\f25c"
}

.ion-wineglass:before {
    content: "\f2b9"
}

.ion-woman:before {
    content: "\f25d"
}

.ion-wrench:before {
    content: "\f2ba"
}

.ion-xbox:before {
    content: "\f30c"
}

@charset "UTF-8";
@font-face {
    font-family: "linea-arrows-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/arrows/fonts/linea-arrows-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/arrows/fonts/linea-arrows-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/arrows/fonts/linea-arrows-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/arrows/fonts/linea-arrows-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/arrows/fonts/linea-arrows-10.svg#linea-arrows-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-basic-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic/fonts/linea-basic-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic/fonts/linea-basic-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic/fonts/linea-basic-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic/fonts/linea-basic-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic/fonts/linea-basic-10.svg#linea-basic-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-basic-elaboration-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic-elaboration/fonts/linea-basic-elaboration-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic-elaboration/fonts/linea-basic-elaboration-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic-elaboration/fonts/linea-basic-elaboration-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic-elaboration/fonts/linea-basic-elaboration-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/basic-elaboration/fonts/linea-basic-elaboration-10.svg#linea-basic-elaboration-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-ecommerce-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/ecommerce/fonts/linea-ecommerce-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/ecommerce/fonts/linea-ecommerce-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/ecommerce/fonts/linea-ecommerce-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/ecommerce/fonts/linea-ecommerce-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/ecommerce/fonts/linea-ecommerce-10.svg#linea-ecommerce-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-music-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/music/fonts/linea-music-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/music/fonts/linea-music-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/music/fonts/linea-music-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/music/fonts/linea-music-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/music/fonts/linea-music-10.svg#linea-music-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-software-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/software/fonts/linea-software-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/software/fonts/linea-software-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/software/fonts/linea-software-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/software/fonts/linea-software-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/software/fonts/linea-software-10.svg#linea-software-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "linea-weather-10";
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/weather/fonts/linea-weather-10.eot");
    src: url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/weather/fonts/linea-weather-10.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/weather/fonts/linea-weather-10.woff") format("woff"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/weather/fonts/linea-weather-10.ttf") format("truetype"), url("/wp-content/themes/onea/framework/lib/icons-pack/linea-icons/weather/fonts/linea-weather-10.svg#linea-weather-10") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* line 1, arrows/_styles.scss */
[class^="icon-arrows"][data-icon]:before {
    font-family: "linea-arrows-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 15, arrows/_styles.scss */
[class^="icon-arrows-"]:before,
[class*=" icon-arrows-"]:before {
    font-family: "linea-arrows-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 27, arrows/_styles.scss */
.icon-arrows-anticlockwise:before {
    content: "\e000";
}

/* line 30, arrows/_styles.scss */
.icon-arrows-anticlockwise-dashed:before {
    content: "\e001";
}

/* line 33, arrows/_styles.scss */
.icon-arrows-button-down:before {
    content: "\e002";
}

/* line 36, arrows/_styles.scss */
.icon-arrows-button-off:before {
    content: "\e003";
}

/* line 39, arrows/_styles.scss */
.icon-arrows-button-on:before {
    content: "\e004";
}

/* line 42, arrows/_styles.scss */
.icon-arrows-button-up:before {
    content: "\e005";
}

/* line 45, arrows/_styles.scss */
.icon-arrows-check:before {
    content: "\e006";
}

/* line 48, arrows/_styles.scss */
.icon-arrows-circle-check:before {
    content: "\e007";
}

/* line 51, arrows/_styles.scss */
.icon-arrows-circle-down:before {
    content: "\e008";
}

/* line 54, arrows/_styles.scss */
.icon-arrows-circle-downleft:before {
    content: "\e009";
}

/* line 57, arrows/_styles.scss */
.icon-arrows-circle-downright:before {
    content: "\e00a";
}

/* line 60, arrows/_styles.scss */
.icon-arrows-circle-left:before {
    content: "\e00b";
}

/* line 63, arrows/_styles.scss */
.icon-arrows-circle-minus:before {
    content: "\e00c";
}

/* line 66, arrows/_styles.scss */
.icon-arrows-circle-plus:before {
    content: "\e00d";
}

/* line 69, arrows/_styles.scss */
.icon-arrows-circle-remove:before {
    content: "\e00e";
}

/* line 72, arrows/_styles.scss */
.icon-arrows-circle-right:before {
    content: "\e00f";
}

/* line 75, arrows/_styles.scss */
.icon-arrows-circle-up:before {
    content: "\e010";
}

/* line 78, arrows/_styles.scss */
.icon-arrows-circle-upleft:before {
    content: "\e011";
}

/* line 81, arrows/_styles.scss */
.icon-arrows-circle-upright:before {
    content: "\e012";
}

/* line 84, arrows/_styles.scss */
.icon-arrows-clockwise:before {
    content: "\e013";
}

/* line 87, arrows/_styles.scss */
.icon-arrows-clockwise-dashed:before {
    content: "\e014";
}

/* line 90, arrows/_styles.scss */
.icon-arrows-compress:before {
    content: "\e015";
}

/* line 93, arrows/_styles.scss */
.icon-arrows-deny:before {
    content: "\e016";
}

/* line 96, arrows/_styles.scss */
.icon-arrows-diagonal:before {
    content: "\e017";
}

/* line 99, arrows/_styles.scss */
.icon-arrows-diagonal2:before {
    content: "\e018";
}

/* line 102, arrows/_styles.scss */
.icon-arrows-down:before {
    content: "\e019";
}

/* line 105, arrows/_styles.scss */
.icon-arrows-down-double:before {
    content: "\e01a";
}

/* line 108, arrows/_styles.scss */
.icon-arrows-downleft:before {
    content: "\e01b";
}

/* line 111, arrows/_styles.scss */
.icon-arrows-downright:before {
    content: "\e01c";
}

/* line 114, arrows/_styles.scss */
.icon-arrows-drag-down:before {
    content: "\e01d";
}

/* line 117, arrows/_styles.scss */
.icon-arrows-drag-down-dashed:before {
    content: "\e01e";
}

/* line 120, arrows/_styles.scss */
.icon-arrows-drag-horiz:before {
    content: "\e01f";
}

/* line 123, arrows/_styles.scss */
.icon-arrows-drag-left:before {
    content: "\e020";
}

/* line 126, arrows/_styles.scss */
.icon-arrows-drag-left-dashed:before {
    content: "\e021";
}

/* line 129, arrows/_styles.scss */
.icon-arrows-drag-right:before {
    content: "\e022";
}

/* line 132, arrows/_styles.scss */
.icon-arrows-drag-right-dashed:before {
    content: "\e023";
}

/* line 135, arrows/_styles.scss */
.icon-arrows-drag-up:before {
    content: "\e024";
}

/* line 138, arrows/_styles.scss */
.icon-arrows-drag-up-dashed:before {
    content: "\e025";
}

/* line 141, arrows/_styles.scss */
.icon-arrows-drag-vert:before {
    content: "\e026";
}

/* line 144, arrows/_styles.scss */
.icon-arrows-exclamation:before {
    content: "\e027";
}

/* line 147, arrows/_styles.scss */
.icon-arrows-expand:before {
    content: "\e028";
}

/* line 150, arrows/_styles.scss */
.icon-arrows-expand-diagonal1:before {
    content: "\e029";
}

/* line 153, arrows/_styles.scss */
.icon-arrows-expand-horizontal1:before {
    content: "\e02a";
}

/* line 156, arrows/_styles.scss */
.icon-arrows-expand-vertical1:before {
    content: "\e02b";
}

/* line 159, arrows/_styles.scss */
.icon-arrows-fit-horizontal:before {
    content: "\e02c";
}

/* line 162, arrows/_styles.scss */
.icon-arrows-fit-vertical:before {
    content: "\e02d";
}

/* line 165, arrows/_styles.scss */
.icon-arrows-glide:before {
    content: "\e02e";
}

/* line 168, arrows/_styles.scss */
.icon-arrows-glide-horizontal:before {
    content: "\e02f";
}

/* line 171, arrows/_styles.scss */
.icon-arrows-glide-vertical:before {
    content: "\e030";
}

/* line 174, arrows/_styles.scss */
.icon-arrows-hamburger1:before {
    content: "\e031";
}

/* line 177, arrows/_styles.scss */
.icon-arrows-hamburger-2:before {
    content: "\e032";
}

/* line 180, arrows/_styles.scss */
.icon-arrows-horizontal:before {
    content: "\e033";
}

/* line 183, arrows/_styles.scss */
.icon-arrows-info:before {
    content: "\e034";
}

/* line 186, arrows/_styles.scss */
.icon-arrows-keyboard-alt:before {
    content: "\e035";
}

/* line 189, arrows/_styles.scss */
.icon-arrows-keyboard-cmd:before {
    content: "\e036";
}

/* line 192, arrows/_styles.scss */
.icon-arrows-keyboard-delete:before {
    content: "\e037";
}

/* line 195, arrows/_styles.scss */
.icon-arrows-keyboard-down:before {
    content: "\e038";
}

/* line 198, arrows/_styles.scss */
.icon-arrows-keyboard-left:before {
    content: "\e039";
}

/* line 201, arrows/_styles.scss */
.icon-arrows-keyboard-return:before {
    content: "\e03a";
}

/* line 204, arrows/_styles.scss */
.icon-arrows-keyboard-right:before {
    content: "\e03b";
}

/* line 207, arrows/_styles.scss */
.icon-arrows-keyboard-shift:before {
    content: "\e03c";
}

/* line 210, arrows/_styles.scss */
.icon-arrows-keyboard-tab:before {
    content: "\e03d";
}

/* line 213, arrows/_styles.scss */
.icon-arrows-keyboard-up:before {
    content: "\e03e";
}

/* line 216, arrows/_styles.scss */
.icon-arrows-left:before {
    content: "\e03f";
}

/* line 219, arrows/_styles.scss */
.icon-arrows-left-double-32:before {
    content: "\e040";
}

/* line 222, arrows/_styles.scss */
.icon-arrows-minus:before {
    content: "\e041";
}

/* line 225, arrows/_styles.scss */
.icon-arrows-move:before {
    content: "\e042";
}

/* line 228, arrows/_styles.scss */
.icon-arrows-move2:before {
    content: "\e043";
}

/* line 231, arrows/_styles.scss */
.icon-arrows-move-bottom:before {
    content: "\e044";
}

/* line 234, arrows/_styles.scss */
.icon-arrows-move-left:before {
    content: "\e045";
}

/* line 237, arrows/_styles.scss */
.icon-arrows-move-right:before {
    content: "\e046";
}

/* line 240, arrows/_styles.scss */
.icon-arrows-move-top:before {
    content: "\e047";
}

/* line 243, arrows/_styles.scss */
.icon-arrows-plus:before {
    content: "\e048";
}

/* line 246, arrows/_styles.scss */
.icon-arrows-question:before {
    content: "\e049";
}

/* line 249, arrows/_styles.scss */
.icon-arrows-remove:before {
    content: "\e04a";
}

/* line 252, arrows/_styles.scss */
.icon-arrows-right:before {
    content: "\e04b";
}

/* line 255, arrows/_styles.scss */
.icon-arrows-right-double:before {
    content: "\e04c";
}

/* line 258, arrows/_styles.scss */
.icon-arrows-rotate:before {
    content: "\e04d";
}

/* line 261, arrows/_styles.scss */
.icon-arrows-rotate-anti:before {
    content: "\e04e";
}

/* line 264, arrows/_styles.scss */
.icon-arrows-rotate-anti-dashed:before {
    content: "\e04f";
}

/* line 267, arrows/_styles.scss */
.icon-arrows-rotate-dashed:before {
    content: "\e050";
}

/* line 270, arrows/_styles.scss */
.icon-arrows-shrink:before {
    content: "\e051";
}

/* line 273, arrows/_styles.scss */
.icon-arrows-shrink-diagonal1:before {
    content: "\e052";
}

/* line 276, arrows/_styles.scss */
.icon-arrows-shrink-diagonal2:before {
    content: "\e053";
}

/* line 279, arrows/_styles.scss */
.icon-arrows-shrink-horizonal2:before {
    content: "\e054";
}

/* line 282, arrows/_styles.scss */
.icon-arrows-shrink-horizontal1:before {
    content: "\e055";
}

/* line 285, arrows/_styles.scss */
.icon-arrows-shrink-vertical1:before {
    content: "\e056";
}

/* line 288, arrows/_styles.scss */
.icon-arrows-shrink-vertical2:before {
    content: "\e057";
}

/* line 291, arrows/_styles.scss */
.icon-arrows-sign-down:before {
    content: "\e058";
}

/* line 294, arrows/_styles.scss */
.icon-arrows-sign-left:before {
    content: "\e059";
}

/* line 297, arrows/_styles.scss */
.icon-arrows-sign-right:before {
    content: "\e05a";
}

/* line 300, arrows/_styles.scss */
.icon-arrows-sign-up:before {
    content: "\e05b";
}

/* line 303, arrows/_styles.scss */
.icon-arrows-slide-down1:before {
    content: "\e05c";
}

/* line 306, arrows/_styles.scss */
.icon-arrows-slide-down2:before {
    content: "\e05d";
}

/* line 309, arrows/_styles.scss */
.icon-arrows-slide-left1:before {
    content: "\e05e";
}

/* line 312, arrows/_styles.scss */
.icon-arrows-slide-left2:before {
    content: "\e05f";
}

/* line 315, arrows/_styles.scss */
.icon-arrows-slide-right1:before {
    content: "\e060";
}

/* line 318, arrows/_styles.scss */
.icon-arrows-slide-right2:before {
    content: "\e061";
}

/* line 321, arrows/_styles.scss */
.icon-arrows-slide-up1:before {
    content: "\e062";
}

/* line 324, arrows/_styles.scss */
.icon-arrows-slide-up2:before {
    content: "\e063";
}

/* line 327, arrows/_styles.scss */
.icon-arrows-slim-down:before {
    content: "\e064";
}

/* line 330, arrows/_styles.scss */
.icon-arrows-slim-down-dashed:before {
    content: "\e065";
}

/* line 333, arrows/_styles.scss */
.icon-arrows-slim-left:before {
    content: "\e066";
}

/* line 336, arrows/_styles.scss */
.icon-arrows-slim-left-dashed:before {
    content: "\e067";
}

/* line 339, arrows/_styles.scss */
.icon-arrows-slim-right:before {
    content: "\e068";
}

/* line 342, arrows/_styles.scss */
.icon-arrows-slim-right-dashed:before {
    content: "\e069";
}

/* line 345, arrows/_styles.scss */
.icon-arrows-slim-up:before {
    content: "\e06a";
}

/* line 348, arrows/_styles.scss */
.icon-arrows-slim-up-dashed:before {
    content: "\e06b";
}

/* line 351, arrows/_styles.scss */
.icon-arrows-square-check:before {
    content: "\e06c";
}

/* line 354, arrows/_styles.scss */
.icon-arrows-square-down:before {
    content: "\e06d";
}

/* line 357, arrows/_styles.scss */
.icon-arrows-square-downleft:before {
    content: "\e06e";
}

/* line 360, arrows/_styles.scss */
.icon-arrows-square-downright:before {
    content: "\e06f";
}

/* line 363, arrows/_styles.scss */
.icon-arrows-square-left:before {
    content: "\e070";
}

/* line 366, arrows/_styles.scss */
.icon-arrows-square-minus:before {
    content: "\e071";
}

/* line 369, arrows/_styles.scss */
.icon-arrows-square-plus:before {
    content: "\e072";
}

/* line 372, arrows/_styles.scss */
.icon-arrows-square-remove:before {
    content: "\e073";
}

/* line 375, arrows/_styles.scss */
.icon-arrows-square-right:before {
    content: "\e074";
}

/* line 378, arrows/_styles.scss */
.icon-arrows-square-up:before {
    content: "\e075";
}

/* line 381, arrows/_styles.scss */
.icon-arrows-square-upleft:before {
    content: "\e076";
}

/* line 384, arrows/_styles.scss */
.icon-arrows-square-upright:before {
    content: "\e077";
}

/* line 387, arrows/_styles.scss */
.icon-arrows-squares:before {
    content: "\e078";
}

/* line 390, arrows/_styles.scss */
.icon-arrows-stretch-diagonal1:before {
    content: "\e079";
}

/* line 393, arrows/_styles.scss */
.icon-arrows-stretch-diagonal2:before {
    content: "\e07a";
}

/* line 396, arrows/_styles.scss */
.icon-arrows-stretch-diagonal3:before {
    content: "\e07b";
}

/* line 399, arrows/_styles.scss */
.icon-arrows-stretch-diagonal4:before {
    content: "\e07c";
}

/* line 402, arrows/_styles.scss */
.icon-arrows-stretch-horizontal1:before {
    content: "\e07d";
}

/* line 405, arrows/_styles.scss */
.icon-arrows-stretch-horizontal2:before {
    content: "\e07e";
}

/* line 408, arrows/_styles.scss */
.icon-arrows-stretch-vertical1:before {
    content: "\e07f";
}

/* line 411, arrows/_styles.scss */
.icon-arrows-stretch-vertical2:before {
    content: "\e080";
}

/* line 414, arrows/_styles.scss */
.icon-arrows-switch-horizontal:before {
    content: "\e081";
}

/* line 417, arrows/_styles.scss */
.icon-arrows-switch-vertical:before {
    content: "\e082";
}

/* line 420, arrows/_styles.scss */
.icon-arrows-up:before {
    content: "\e083";
}

/* line 423, arrows/_styles.scss */
.icon-arrows-up-double-33:before {
    content: "\e084";
}

/* line 426, arrows/_styles.scss */
.icon-arrows-upleft:before {
    content: "\e085";
}

/* line 429, arrows/_styles.scss */
.icon-arrows-upright:before {
    content: "\e086";
}

/* line 432, arrows/_styles.scss */
.icon-arrows-vertical:before {
    content: "\e087";
}

/* line 1, basic/_styles.scss */
[class^="icon-basic-"][data-icon]:before {
    font-family: "linea-basic-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 15, basic/_styles.scss */
[class^="icon-basic-"]:before,
[class*=" icon-basic-"]:before {
    font-family: "linea-basic-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 27, basic/_styles.scss */
.icon-basic-accelerator:before {
    content: "a";
}

/* line 30, basic/_styles.scss */
.icon-basic-alarm:before {
    content: "b";
}

/* line 33, basic/_styles.scss */
.icon-basic-anchor:before {
    content: "c";
}

/* line 36, basic/_styles.scss */
.icon-basic-anticlockwise:before {
    content: "d";
}

/* line 39, basic/_styles.scss */
.icon-basic-archive:before {
    content: "e";
}

/* line 42, basic/_styles.scss */
.icon-basic-archive-full:before {
    content: "f";
}

/* line 45, basic/_styles.scss */
.icon-basic-ban:before {
    content: "g";
}

/* line 48, basic/_styles.scss */
.icon-basic-battery-charge:before {
    content: "h";
}

/* line 51, basic/_styles.scss */
.icon-basic-battery-empty:before {
    content: "i";
}

/* line 54, basic/_styles.scss */
.icon-basic-battery-full:before {
    content: "j";
}

/* line 57, basic/_styles.scss */
.icon-basic-battery-half:before {
    content: "k";
}

/* line 60, basic/_styles.scss */
.icon-basic-bolt:before {
    content: "l";
}

/* line 63, basic/_styles.scss */
.icon-basic-book:before {
    content: "m";
}

/* line 66, basic/_styles.scss */
.icon-basic-book-pen:before {
    content: "n";
}

/* line 69, basic/_styles.scss */
.icon-basic-book-pencil:before {
    content: "o";
}

/* line 72, basic/_styles.scss */
.icon-basic-bookmark:before {
    content: "p";
}

/* line 75, basic/_styles.scss */
.icon-basic-calculator:before {
    content: "q";
}

/* line 78, basic/_styles.scss */
.icon-basic-calendar:before {
    content: "r";
}

/* line 81, basic/_styles.scss */
.icon-basic-cards-diamonds:before {
    content: "s";
}

/* line 84, basic/_styles.scss */
.icon-basic-cards-hearts:before {
    content: "t";
}

/* line 87, basic/_styles.scss */
.icon-basic-case:before {
    content: "u";
}

/* line 90, basic/_styles.scss */
.icon-basic-chronometer:before {
    content: "v";
}

/* line 93, basic/_styles.scss */
.icon-basic-clessidre:before {
    content: "w";
}

/* line 96, basic/_styles.scss */
.icon-basic-clock:before {
    content: "x";
}

/* line 99, basic/_styles.scss */
.icon-basic-clockwise:before {
    content: "y";
}

/* line 102, basic/_styles.scss */
.icon-basic-cloud:before {
    content: "z";
}

/* line 105, basic/_styles.scss */
.icon-basic-clubs:before {
    content: "A";
}

/* line 108, basic/_styles.scss */
.icon-basic-compass:before {
    content: "B";
}

/* line 111, basic/_styles.scss */
.icon-basic-cup:before {
    content: "C";
}

/* line 114, basic/_styles.scss */
.icon-basic-diamonds:before {
    content: "D";
}

/* line 117, basic/_styles.scss */
.icon-basic-display:before {
    content: "E";
}

/* line 120, basic/_styles.scss */
.icon-basic-download:before {
    content: "F";
}

/* line 123, basic/_styles.scss */
.icon-basic-exclamation:before {
    content: "G";
}

/* line 126, basic/_styles.scss */
.icon-basic-eye:before {
    content: "H";
}

/* line 129, basic/_styles.scss */
.icon-basic-eye-closed:before {
    content: "I";
}

/* line 132, basic/_styles.scss */
.icon-basic-female:before {
    content: "J";
}

/* line 135, basic/_styles.scss */
.icon-basic-flag1:before {
    content: "K";
}

/* line 138, basic/_styles.scss */
.icon-basic-flag2:before {
    content: "L";
}

/* line 141, basic/_styles.scss */
.icon-basic-floppydisk:before {
    content: "M";
}

/* line 144, basic/_styles.scss */
.icon-basic-folder:before {
    content: "N";
}

/* line 147, basic/_styles.scss */
.icon-basic-folder-multiple:before {
    content: "O";
}

/* line 150, basic/_styles.scss */
.icon-basic-gear:before {
    content: "P";
}

/* line 153, basic/_styles.scss */
.icon-basic-geolocalize-01:before {
    content: "Q";
}

/* line 156, basic/_styles.scss */
.icon-basic-geolocalize-05:before {
    content: "R";
}

/* line 159, basic/_styles.scss */
.icon-basic-globe:before {
    content: "S";
}

/* line 162, basic/_styles.scss */
.icon-basic-gunsight:before {
    content: "T";
}

/* line 165, basic/_styles.scss */
.icon-basic-hammer:before {
    content: "U";
}

/* line 168, basic/_styles.scss */
.icon-basic-headset:before {
    content: "V";
}

/* line 171, basic/_styles.scss */
.icon-basic-heart:before {
    content: "W";
}

/* line 174, basic/_styles.scss */
.icon-basic-heart-broken:before {
    content: "X";
}

/* line 177, basic/_styles.scss */
.icon-basic-helm:before {
    content: "Y";
}

/* line 180, basic/_styles.scss */
.icon-basic-home:before {
    content: "Z";
}

/* line 183, basic/_styles.scss */
.icon-basic-info:before {
    content: "0";
}

/* line 186, basic/_styles.scss */
.icon-basic-ipod:before {
    content: "1";
}

/* line 189, basic/_styles.scss */
.icon-basic-joypad:before {
    content: "2";
}

/* line 192, basic/_styles.scss */
.icon-basic-key:before {
    content: "3";
}

/* line 195, basic/_styles.scss */
.icon-basic-keyboard:before {
    content: "4";
}

/* line 198, basic/_styles.scss */
.icon-basic-laptop:before {
    content: "5";
}

/* line 201, basic/_styles.scss */
.icon-basic-life-buoy:before {
    content: "6";
}

/* line 204, basic/_styles.scss */
.icon-basic-lightbulb:before {
    content: "7";
}

/* line 207, basic/_styles.scss */
.icon-basic-link:before {
    content: "8";
}

/* line 210, basic/_styles.scss */
.icon-basic-lock:before {
    content: "9";
}

/* line 213, basic/_styles.scss */
.icon-basic-lock-open:before {
    content: "!";
}

/* line 216, basic/_styles.scss */
.icon-basic-magic-mouse:before {
    content: "\"";
}

/* line 219, basic/_styles.scss */
.icon-basic-magnifier:before {
    content: "#";
}

/* line 222, basic/_styles.scss */
.icon-basic-magnifier-minus:before {
    content: "$";
}

/* line 225, basic/_styles.scss */
.icon-basic-magnifier-plus:before {
    content: "%";
}

/* line 228, basic/_styles.scss */
.icon-basic-mail:before {
    content: "&";
}

/* line 231, basic/_styles.scss */
.icon-basic-mail-multiple:before {
    content: "'";
}

/* line 234, basic/_styles.scss */
.icon-basic-mail-open:before {
    content: "(";
}

/* line 237, basic/_styles.scss */
.icon-basic-mail-open-text:before {
    content: ")";
}

/* line 240, basic/_styles.scss */
.icon-basic-male:before {
    content: "*";
}

/* line 243, basic/_styles.scss */
.icon-basic-map:before {
    content: "+";
}

/* line 246, basic/_styles.scss */
.icon-basic-message:before {
    content: ",";
}

/* line 249, basic/_styles.scss */
.icon-basic-message-multiple:before {
    content: "-";
}

/* line 252, basic/_styles.scss */
.icon-basic-message-txt:before {
    content: ".";
}

/* line 255, basic/_styles.scss */
.icon-basic-mixer2:before {
    content: "/";
}

/* line 258, basic/_styles.scss */
.icon-basic-mouse:before {
    content: ":";
}

/* line 261, basic/_styles.scss */
.icon-basic-notebook:before {
    content: ";";
}

/* line 264, basic/_styles.scss */
.icon-basic-notebook-pen:before {
    content: "<";
}

/* line 267, basic/_styles.scss */
.icon-basic-notebook-pencil:before {
    content: "=";
}

/* line 270, basic/_styles.scss */
.icon-basic-paperplane:before {
    content: ">";
}

/* line 273, basic/_styles.scss */
.icon-basic-pencil-ruler:before {
    content: "?";
}

/* line 276, basic/_styles.scss */
.icon-basic-pencil-ruler-pen:before {
    content: "@";
}

/* line 279, basic/_styles.scss */
.icon-basic-photo:before {
    content: "[";
}

/* line 282, basic/_styles.scss */
.icon-basic-picture:before {
    content: "]";
}

/* line 285, basic/_styles.scss */
.icon-basic-picture-multiple:before {
    content: "^";
}

/* line 288, basic/_styles.scss */
.icon-basic-pin1:before {
    content: "_";
}

/* line 291, basic/_styles.scss */
.icon-basic-pin2:before {
    content: "`";
}

/* line 294, basic/_styles.scss */
.icon-basic-postcard:before {
    content: "{";
}

/* line 297, basic/_styles.scss */
.icon-basic-postcard-multiple:before {
    content: "|";
}

/* line 300, basic/_styles.scss */
.icon-basic-printer:before {
    content: "}";
}

/* line 303, basic/_styles.scss */
.icon-basic-question:before {
    content: "~";
}

/* line 306, basic/_styles.scss */
.icon-basic-rss:before {
    content: "\\";
}

/* line 309, basic/_styles.scss */
.icon-basic-server:before {
    content: "\e000";
}

/* line 312, basic/_styles.scss */
.icon-basic-server2:before {
    content: "\e001";
}

/* line 315, basic/_styles.scss */
.icon-basic-server-cloud:before {
    content: "\e002";
}

/* line 318, basic/_styles.scss */
.icon-basic-server-download:before {
    content: "\e003";
}

/* line 321, basic/_styles.scss */
.icon-basic-server-upload:before {
    content: "\e004";
}

/* line 324, basic/_styles.scss */
.icon-basic-settings:before {
    content: "\e005";
}

/* line 327, basic/_styles.scss */
.icon-basic-share:before {
    content: "\e006";
}

/* line 330, basic/_styles.scss */
.icon-basic-sheet:before {
    content: "\e007";
}

/* line 333, basic/_styles.scss */
.icon-basic-sheet-multiple:before {
    content: "\e008";
}

/* line 336, basic/_styles.scss */
.icon-basic-sheet-pen:before {
    content: "\e009";
}

/* line 339, basic/_styles.scss */
.icon-basic-sheet-pencil:before {
    content: "\e00a";
}

/* line 342, basic/_styles.scss */
.icon-basic-sheet-txt:before {
    content: "\e00b";
}

/* line 345, basic/_styles.scss */
.icon-basic-signs:before {
    content: "\e00c";
}

/* line 348, basic/_styles.scss */
.icon-basic-smartphone:before {
    content: "\e00d";
}

/* line 351, basic/_styles.scss */
.icon-basic-spades:before {
    content: "\e00e";
}

/* line 354, basic/_styles.scss */
.icon-basic-spread:before {
    content: "\e00f";
}

/* line 357, basic/_styles.scss */
.icon-basic-spread-bookmark:before {
    content: "\e010";
}

/* line 360, basic/_styles.scss */
.icon-basic-spread-text:before {
    content: "\e011";
}

/* line 363, basic/_styles.scss */
.icon-basic-spread-text-bookmark:before {
    content: "\e012";
}

/* line 366, basic/_styles.scss */
.icon-basic-star:before {
    content: "\e013";
}

/* line 369, basic/_styles.scss */
.icon-basic-tablet:before {
    content: "\e014";
}

/* line 372, basic/_styles.scss */
.icon-basic-target:before {
    content: "\e015";
}

/* line 375, basic/_styles.scss */
.icon-basic-todo:before {
    content: "\e016";
}

/* line 378, basic/_styles.scss */
.icon-basic-todo-pen:before {
    content: "\e017";
}

/* line 381, basic/_styles.scss */
.icon-basic-todo-pencil:before {
    content: "\e018";
}

/* line 384, basic/_styles.scss */
.icon-basic-todo-txt:before {
    content: "\e019";
}

/* line 387, basic/_styles.scss */
.icon-basic-todolist-pen:before {
    content: "\e01a";
}

/* line 390, basic/_styles.scss */
.icon-basic-todolist-pencil:before {
    content: "\e01b";
}

/* line 393, basic/_styles.scss */
.icon-basic-trashcan:before {
    content: "\e01c";
}

/* line 396, basic/_styles.scss */
.icon-basic-trashcan-full:before {
    content: "\e01d";
}

/* line 399, basic/_styles.scss */
.icon-basic-trashcan-refresh:before {
    content: "\e01e";
}

/* line 402, basic/_styles.scss */
.icon-basic-trashcan-remove:before {
    content: "\e01f";
}

/* line 405, basic/_styles.scss */
.icon-basic-upload:before {
    content: "\e020";
}

/* line 408, basic/_styles.scss */
.icon-basic-usb:before {
    content: "\e021";
}

/* line 411, basic/_styles.scss */
.icon-basic-video:before {
    content: "\e022";
}

/* line 414, basic/_styles.scss */
.icon-basic-watch:before {
    content: "\e023";
}

/* line 417, basic/_styles.scss */
.icon-basic-webpage:before {
    content: "\e024";
}

/* line 420, basic/_styles.scss */
.icon-basic-webpage-img-txt:before {
    content: "\e025";
}

/* line 423, basic/_styles.scss */
.icon-basic-webpage-multiple:before {
    content: "\e026";
}

/* line 426, basic/_styles.scss */
.icon-basic-webpage-txt:before {
    content: "\e027";
}

/* line 429, basic/_styles.scss */
.icon-basic-world:before {
    content: "\e028";
}

/* line 3, basic-elaboration/_styles.scss */
[class^="icon-basic-elaboration-"][data-icon]:before {
    font-family: "linea-basic-elaboration-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 17, basic-elaboration/_styles.scss */
[class^="icon-basic-elaboration-"]:before,
[class*=" icon-basic-elaboration-"]:before {
    font-family: "linea-basic-elaboration-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 29, basic-elaboration/_styles.scss */
.icon-basic-elaboration-bookmark-checck:before {
    content: "a";
}

/* line 32, basic-elaboration/_styles.scss */
.icon-basic-elaboration-bookmark-minus:before {
    content: "b";
}

/* line 35, basic-elaboration/_styles.scss */
.icon-basic-elaboration-bookmark-plus:before {
    content: "c";
}

/* line 38, basic-elaboration/_styles.scss */
.icon-basic-elaboration-bookmark-remove:before {
    content: "d";
}

/* line 41, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-check:before {
    content: "e";
}

/* line 44, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-download:before {
    content: "f";
}

/* line 47, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-flagged:before {
    content: "g";
}

/* line 50, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-minus:before {
    content: "h";
}

/* line 53, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-plus:before {
    content: "i";
}

/* line 56, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-refresh:before {
    content: "j";
}

/* line 59, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-remove:before {
    content: "k";
}

/* line 62, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-search:before {
    content: "l";
}

/* line 65, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-star:before {
    content: "m";
}

/* line 68, basic-elaboration/_styles.scss */
.icon-basic-elaboration-briefcase-upload:before {
    content: "n";
}

/* line 71, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-check:before {
    content: "o";
}

/* line 74, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-download:before {
    content: "p";
}

/* line 77, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-minus:before {
    content: "q";
}

/* line 80, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-plus:before {
    content: "r";
}

/* line 83, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-refresh:before {
    content: "s";
}

/* line 86, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-remove:before {
    content: "t";
}

/* line 89, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-search:before {
    content: "u";
}

/* line 92, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-star:before {
    content: "v";
}

/* line 95, basic-elaboration/_styles.scss */
.icon-basic-elaboration-browser-upload:before {
    content: "w";
}

/* line 98, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-check:before {
    content: "x";
}

/* line 101, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-cloud:before {
    content: "y";
}

/* line 104, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-download:before {
    content: "z";
}

/* line 107, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-empty:before {
    content: "A";
}

/* line 110, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-flagged:before {
    content: "B";
}

/* line 113, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-heart:before {
    content: "C";
}

/* line 116, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-minus:before {
    content: "D";
}

/* line 119, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-next:before {
    content: "E";
}

/* line 122, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-noaccess:before {
    content: "F";
}

/* line 125, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-pencil:before {
    content: "G";
}

/* line 128, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-plus:before {
    content: "H";
}

/* line 131, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-previous:before {
    content: "I";
}

/* line 134, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-refresh:before {
    content: "J";
}

/* line 137, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-remove:before {
    content: "K";
}

/* line 140, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-search:before {
    content: "L";
}

/* line 143, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-star:before {
    content: "M";
}

/* line 146, basic-elaboration/_styles.scss */
.icon-basic-elaboration-calendar-upload:before {
    content: "N";
}

/* line 149, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-check:before {
    content: "O";
}

/* line 152, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-download:before {
    content: "P";
}

/* line 155, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-minus:before {
    content: "Q";
}

/* line 158, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-noaccess:before {
    content: "R";
}

/* line 161, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-plus:before {
    content: "S";
}

/* line 164, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-refresh:before {
    content: "T";
}

/* line 167, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-remove:before {
    content: "U";
}

/* line 170, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-search:before {
    content: "V";
}

/* line 173, basic-elaboration/_styles.scss */
.icon-basic-elaboration-cloud-upload:before {
    content: "W";
}

/* line 176, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-check:before {
    content: "X";
}

/* line 179, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-cloud:before {
    content: "Y";
}

/* line 182, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-download:before {
    content: "Z";
}

/* line 185, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-flagged:before {
    content: "0";
}

/* line 188, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-graph:before {
    content: "1";
}

/* line 191, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-heart:before {
    content: "2";
}

/* line 194, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-minus:before {
    content: "3";
}

/* line 197, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-next:before {
    content: "4";
}

/* line 200, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-noaccess:before {
    content: "5";
}

/* line 203, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-note:before {
    content: "6";
}

/* line 206, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-pencil:before {
    content: "7";
}

/* line 209, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-picture:before {
    content: "8";
}

/* line 212, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-plus:before {
    content: "9";
}

/* line 215, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-previous:before {
    content: "!";
}

/* line 218, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-refresh:before {
    content: "\"";
}

/* line 221, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-remove:before {
    content: "#";
}

/* line 224, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-search:before {
    content: "$";
}

/* line 227, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-star:before {
    content: "%";
}

/* line 230, basic-elaboration/_styles.scss */
.icon-basic-elaboration-document-upload:before {
    content: "&";
}

/* line 233, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-check:before {
    content: "'";
}

/* line 236, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-cloud:before {
    content: "(";
}

/* line 239, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-document:before {
    content: ")";
}

/* line 242, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-download:before {
    content: "*";
}

/* line 245, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-flagged:before {
    content: "+";
}

/* line 248, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-graph:before {
    content: ",";
}

/* line 251, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-heart:before {
    content: "-";
}

/* line 254, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-minus:before {
    content: ".";
}

/* line 257, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-next:before {
    content: "/";
}

/* line 260, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-noaccess:before {
    content: ":";
}

/* line 263, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-note:before {
    content: ";";
}

/* line 266, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-pencil:before {
    content: "<";
}

/* line 269, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-picture:before {
    content: "=";
}

/* line 272, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-plus:before {
    content: ">";
}

/* line 275, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-previous:before {
    content: "?";
}

/* line 278, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-refresh:before {
    content: "@";
}

/* line 281, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-remove:before {
    content: "[";
}

/* line 284, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-search:before {
    content: "]";
}

/* line 287, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-star:before {
    content: "^";
}

/* line 290, basic-elaboration/_styles.scss */
.icon-basic-elaboration-folder-upload:before {
    content: "_";
}

/* line 293, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-check:before {
    content: "`";
}

/* line 296, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-cloud:before {
    content: "{";
}

/* line 299, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-document:before {
    content: "|";
}

/* line 302, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-download:before {
    content: "}";
}

/* line 305, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-flagged:before {
    content: "~";
}

/* line 308, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-heart:before {
    content: "\\";
}

/* line 311, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-next:before {
    content: "\e000";
}

/* line 314, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-noaccess:before {
    content: "\e001";
}

/* line 317, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-note:before {
    content: "\e002";
}

/* line 320, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-pencil:before {
    content: "\e003";
}

/* line 323, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-picture:before {
    content: "\e004";
}

/* line 326, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-previous:before {
    content: "\e005";
}

/* line 329, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-refresh:before {
    content: "\e006";
}

/* line 332, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-remove:before {
    content: "\e007";
}

/* line 335, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-search:before {
    content: "\e008";
}

/* line 338, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-star:before {
    content: "\e009";
}

/* line 341, basic-elaboration/_styles.scss */
.icon-basic-elaboration-mail-upload:before {
    content: "\e00a";
}

/* line 344, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-check:before {
    content: "\e00b";
}

/* line 347, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-dots:before {
    content: "\e00c";
}

/* line 350, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-happy:before {
    content: "\e00d";
}

/* line 353, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-heart:before {
    content: "\e00e";
}

/* line 356, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-minus:before {
    content: "\e00f";
}

/* line 359, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-note:before {
    content: "\e010";
}

/* line 362, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-plus:before {
    content: "\e011";
}

/* line 365, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-refresh:before {
    content: "\e012";
}

/* line 368, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-remove:before {
    content: "\e013";
}

/* line 371, basic-elaboration/_styles.scss */
.icon-basic-elaboration-message-sad:before {
    content: "\e014";
}

/* line 374, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-cloud:before {
    content: "\e015";
}

/* line 377, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-heart:before {
    content: "\e016";
}

/* line 380, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-noaccess:before {
    content: "\e017";
}

/* line 383, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-note:before {
    content: "\e018";
}

/* line 386, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-pencil:before {
    content: "\e019";
}

/* line 389, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-picture:before {
    content: "\e01a";
}

/* line 392, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-refresh:before {
    content: "\e01b";
}

/* line 395, basic-elaboration/_styles.scss */
.icon-basic-elaboration-smartphone-search:before {
    content: "\e01c";
}

/* line 398, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-cloud:before {
    content: "\e01d";
}

/* line 401, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-heart:before {
    content: "\e01e";
}

/* line 404, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-noaccess:before {
    content: "\e01f";
}

/* line 407, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-note:before {
    content: "\e020";
}

/* line 410, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-pencil:before {
    content: "\e021";
}

/* line 413, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-picture:before {
    content: "\e022";
}

/* line 416, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-refresh:before {
    content: "\e023";
}

/* line 419, basic-elaboration/_styles.scss */
.icon-basic-elaboration-tablet-search:before {
    content: "\e024";
}

/* line 422, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-2:before {
    content: "\e025";
}

/* line 425, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-check:before {
    content: "\e026";
}

/* line 428, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-cloud:before {
    content: "\e027";
}

/* line 431, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-download:before {
    content: "\e028";
}

/* line 434, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-flagged:before {
    content: "\e029";
}

/* line 437, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-minus:before {
    content: "\e02a";
}

/* line 440, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-noaccess:before {
    content: "\e02b";
}

/* line 443, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-pencil:before {
    content: "\e02c";
}

/* line 446, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-plus:before {
    content: "\e02d";
}

/* line 449, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-refresh:before {
    content: "\e02e";
}

/* line 452, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-remove:before {
    content: "\e02f";
}

/* line 455, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-search:before {
    content: "\e030";
}

/* line 458, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-star:before {
    content: "\e031";
}

/* line 461, basic-elaboration/_styles.scss */
.icon-basic-elaboration-todolist-upload:before {
    content: "\e032";
}

/* line 3, ecommerce/_styles.scss */
[class^="icon-ecommerce-"][data-icon]:before,
[class*=" icon-ecommerce-"][data-icon]:before {
    font-family: "linea-ecommerce-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 17, ecommerce/_styles.scss */
[class^="icon-ecommerce-"]:before,
[class*=" icon-ecommerce-"]:before {
    font-family: "linea-ecommerce-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 29, ecommerce/_styles.scss */
.icon-ecommerce-bag:before {
    content: "a";
}

/* line 32, ecommerce/_styles.scss */
.icon-ecommerce-bag-check:before {
    content: "b";
}

/* line 35, ecommerce/_styles.scss */
.icon-ecommerce-bag-cloud:before {
    content: "c";
}

/* line 38, ecommerce/_styles.scss */
.icon-ecommerce-bag-download:before {
    content: "d";
}

/* line 41, ecommerce/_styles.scss */
.icon-ecommerce-bag-minus:before {
    content: "e";
}

/* line 44, ecommerce/_styles.scss */
.icon-ecommerce-bag-plus:before {
    content: "f";
}

/* line 47, ecommerce/_styles.scss */
.icon-ecommerce-bag-refresh:before {
    content: "g";
}

/* line 50, ecommerce/_styles.scss */
.icon-ecommerce-bag-remove:before {
    content: "h";
}

/* line 53, ecommerce/_styles.scss */
.icon-ecommerce-bag-search:before {
    content: "i";
}

/* line 56, ecommerce/_styles.scss */
.icon-ecommerce-bag-upload:before {
    content: "j";
}

/* line 59, ecommerce/_styles.scss */
.icon-ecommerce-banknote:before {
    content: "k";
}

/* line 62, ecommerce/_styles.scss */
.icon-ecommerce-banknotes:before {
    content: "l";
}

/* line 65, ecommerce/_styles.scss */
.icon-ecommerce-basket:before {
    content: "m";
}

/* line 68, ecommerce/_styles.scss */
.icon-ecommerce-basket-check:before {
    content: "n";
}

/* line 71, ecommerce/_styles.scss */
.icon-ecommerce-basket-cloud:before {
    content: "o";
}

/* line 74, ecommerce/_styles.scss */
.icon-ecommerce-basket-download:before {
    content: "p";
}

/* line 77, ecommerce/_styles.scss */
.icon-ecommerce-basket-minus:before {
    content: "q";
}

/* line 80, ecommerce/_styles.scss */
.icon-ecommerce-basket-plus:before {
    content: "r";
}

/* line 83, ecommerce/_styles.scss */
.icon-ecommerce-basket-refresh:before {
    content: "s";
}

/* line 86, ecommerce/_styles.scss */
.icon-ecommerce-basket-remove:before {
    content: "t";
}

/* line 89, ecommerce/_styles.scss */
.icon-ecommerce-basket-search:before {
    content: "u";
}

/* line 92, ecommerce/_styles.scss */
.icon-ecommerce-basket-upload:before {
    content: "v";
}

/* line 95, ecommerce/_styles.scss */
.icon-ecommerce-bath:before {
    content: "w";
}

/* line 98, ecommerce/_styles.scss */
.icon-ecommerce-cart:before {
    content: "x";
}

/* line 101, ecommerce/_styles.scss */
.icon-ecommerce-cart-check:before {
    content: "y";
}

/* line 104, ecommerce/_styles.scss */
.icon-ecommerce-cart-cloud:before {
    content: "z";
}

/* line 107, ecommerce/_styles.scss */
.icon-ecommerce-cart-content:before {
    content: "A";
}

/* line 110, ecommerce/_styles.scss */
.icon-ecommerce-cart-download:before {
    content: "B";
}

/* line 113, ecommerce/_styles.scss */
.icon-ecommerce-cart-minus:before {
    content: "C";
}

/* line 116, ecommerce/_styles.scss */
.icon-ecommerce-cart-plus:before {
    content: "D";
}

/* line 119, ecommerce/_styles.scss */
.icon-ecommerce-cart-refresh:before {
    content: "E";
}

/* line 122, ecommerce/_styles.scss */
.icon-ecommerce-cart-remove:before {
    content: "F";
}

/* line 125, ecommerce/_styles.scss */
.icon-ecommerce-cart-search:before {
    content: "G";
}

/* line 128, ecommerce/_styles.scss */
.icon-ecommerce-cart-upload:before {
    content: "H";
}

/* line 131, ecommerce/_styles.scss */
.icon-ecommerce-cent:before {
    content: "I";
}

/* line 134, ecommerce/_styles.scss */
.icon-ecommerce-colon:before {
    content: "J";
}

/* line 137, ecommerce/_styles.scss */
.icon-ecommerce-creditcard:before {
    content: "K";
}

/* line 140, ecommerce/_styles.scss */
.icon-ecommerce-diamond:before {
    content: "L";
}

/* line 143, ecommerce/_styles.scss */
.icon-ecommerce-dollar:before {
    content: "M";
}

/* line 146, ecommerce/_styles.scss */
.icon-ecommerce-euro:before {
    content: "N";
}

/* line 149, ecommerce/_styles.scss */
.icon-ecommerce-franc:before {
    content: "O";
}

/* line 152, ecommerce/_styles.scss */
.icon-ecommerce-gift:before {
    content: "P";
}

/* line 155, ecommerce/_styles.scss */
.icon-ecommerce-graph1:before {
    content: "Q";
}

/* line 158, ecommerce/_styles.scss */
.icon-ecommerce-graph2:before {
    content: "R";
}

/* line 161, ecommerce/_styles.scss */
.icon-ecommerce-graph3:before {
    content: "S";
}

/* line 164, ecommerce/_styles.scss */
.icon-ecommerce-graph-decrease:before {
    content: "T";
}

/* line 167, ecommerce/_styles.scss */
.icon-ecommerce-graph-increase:before {
    content: "U";
}

/* line 170, ecommerce/_styles.scss */
.icon-ecommerce-guarani:before {
    content: "V";
}

/* line 173, ecommerce/_styles.scss */
.icon-ecommerce-kips:before {
    content: "W";
}

/* line 176, ecommerce/_styles.scss */
.icon-ecommerce-lira:before {
    content: "X";
}

/* line 179, ecommerce/_styles.scss */
.icon-ecommerce-megaphone:before {
    content: "Y";
}

/* line 182, ecommerce/_styles.scss */
.icon-ecommerce-money:before {
    content: "Z";
}

/* line 185, ecommerce/_styles.scss */
.icon-ecommerce-naira:before {
    content: "0";
}

/* line 188, ecommerce/_styles.scss */
.icon-ecommerce-pesos:before {
    content: "1";
}

/* line 191, ecommerce/_styles.scss */
.icon-ecommerce-pound:before {
    content: "2";
}

/* line 194, ecommerce/_styles.scss */
.icon-ecommerce-receipt:before {
    content: "3";
}

/* line 197, ecommerce/_styles.scss */
.icon-ecommerce-receipt-bath:before {
    content: "4";
}

/* line 200, ecommerce/_styles.scss */
.icon-ecommerce-receipt-cent:before {
    content: "5";
}

/* line 203, ecommerce/_styles.scss */
.icon-ecommerce-receipt-dollar:before {
    content: "6";
}

/* line 206, ecommerce/_styles.scss */
.icon-ecommerce-receipt-euro:before {
    content: "7";
}

/* line 209, ecommerce/_styles.scss */
.icon-ecommerce-receipt-franc:before {
    content: "8";
}

/* line 212, ecommerce/_styles.scss */
.icon-ecommerce-receipt-guarani:before {
    content: "9";
}

/* line 215, ecommerce/_styles.scss */
.icon-ecommerce-receipt-kips:before {
    content: "!";
}

/* line 218, ecommerce/_styles.scss */
.icon-ecommerce-receipt-lira:before {
    content: "\"";
}

/* line 221, ecommerce/_styles.scss */
.icon-ecommerce-receipt-naira:before {
    content: "#";
}

/* line 224, ecommerce/_styles.scss */
.icon-ecommerce-receipt-pesos:before {
    content: "$";
}

/* line 227, ecommerce/_styles.scss */
.icon-ecommerce-receipt-pound:before {
    content: "%";
}

/* line 230, ecommerce/_styles.scss */
.icon-ecommerce-receipt-rublo:before {
    content: "&";
}

/* line 233, ecommerce/_styles.scss */
.icon-ecommerce-receipt-rupee:before {
    content: "'";
}

/* line 236, ecommerce/_styles.scss */
.icon-ecommerce-receipt-tugrik:before {
    content: "(";
}

/* line 239, ecommerce/_styles.scss */
.icon-ecommerce-receipt-won:before {
    content: ")";
}

/* line 242, ecommerce/_styles.scss */
.icon-ecommerce-receipt-yen:before {
    content: "*";
}

/* line 245, ecommerce/_styles.scss */
.icon-ecommerce-receipt-yen2:before {
    content: "+";
}

/* line 248, ecommerce/_styles.scss */
.icon-ecommerce-recept-colon:before {
    content: ",";
}

/* line 251, ecommerce/_styles.scss */
.icon-ecommerce-rublo:before {
    content: "-";
}

/* line 254, ecommerce/_styles.scss */
.icon-ecommerce-rupee:before {
    content: ".";
}

/* line 257, ecommerce/_styles.scss */
.icon-ecommerce-safe:before {
    content: "/";
}

/* line 260, ecommerce/_styles.scss */
.icon-ecommerce-sale:before {
    content: ":";
}

/* line 263, ecommerce/_styles.scss */
.icon-ecommerce-sales:before {
    content: ";";
}

/* line 266, ecommerce/_styles.scss */
.icon-ecommerce-ticket:before {
    content: "<";
}

/* line 269, ecommerce/_styles.scss */
.icon-ecommerce-tugriks:before {
    content: "=";
}

/* line 272, ecommerce/_styles.scss */
.icon-ecommerce-wallet:before {
    content: ">";
}

/* line 275, ecommerce/_styles.scss */
.icon-ecommerce-won:before {
    content: "?";
}

/* line 278, ecommerce/_styles.scss */
.icon-ecommerce-yen:before {
    content: "@";
}

/* line 281, ecommerce/_styles.scss */
.icon-ecommerce-yen2:before {
    content: "[";
}

/* line 3, music/_styles.scss */
[class^="icon-music-"][data-icon]:before,
[class*=" icon-music-"][data-icon]:before {
    font-family: "linea-music-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 17, music/_styles.scss */
[class^="icon-music-"]:before,
[class*=" icon-music-"]:before {
    font-family: "linea-music-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 29, music/_styles.scss */
.icon-music-beginning-button:before {
    content: "a";
}

/* line 32, music/_styles.scss */
.icon-music-bell:before {
    content: "b";
}

/* line 35, music/_styles.scss */
.icon-music-cd:before {
    content: "c";
}

/* line 38, music/_styles.scss */
.icon-music-diapason:before {
    content: "d";
}

/* line 41, music/_styles.scss */
.icon-music-eject-button:before {
    content: "e";
}

/* line 44, music/_styles.scss */
.icon-music-end-button:before {
    content: "f";
}

/* line 47, music/_styles.scss */
.icon-music-fastforward-button:before {
    content: "g";
}

/* line 50, music/_styles.scss */
.icon-music-headphones:before {
    content: "h";
}

/* line 53, music/_styles.scss */
.icon-music-ipod:before {
    content: "i";
}

/* line 56, music/_styles.scss */
.icon-music-loudspeaker:before {
    content: "j";
}

/* line 59, music/_styles.scss */
.icon-music-microphone:before {
    content: "k";
}

/* line 62, music/_styles.scss */
.icon-music-microphone-old:before {
    content: "l";
}

/* line 65, music/_styles.scss */
.icon-music-mixer:before {
    content: "m";
}

/* line 68, music/_styles.scss */
.icon-music-mute:before {
    content: "n";
}

/* line 71, music/_styles.scss */
.icon-music-note-multiple:before {
    content: "o";
}

/* line 74, music/_styles.scss */
.icon-music-note-single:before {
    content: "p";
}

/* line 77, music/_styles.scss */
.icon-music-pause-button:before {
    content: "q";
}

/* line 80, music/_styles.scss */
.icon-music-play-button:before {
    content: "r";
}

/* line 83, music/_styles.scss */
.icon-music-playlist:before {
    content: "s";
}

/* line 86, music/_styles.scss */
.icon-music-radio-ghettoblaster:before {
    content: "t";
}

/* line 89, music/_styles.scss */
.icon-music-radio-portable:before {
    content: "u";
}

/* line 92, music/_styles.scss */
.icon-music-record:before {
    content: "v";
}

/* line 95, music/_styles.scss */
.icon-music-recordplayer:before {
    content: "w";
}

/* line 98, music/_styles.scss */
.icon-music-repeat-button:before {
    content: "x";
}

/* line 101, music/_styles.scss */
.icon-music-rewind-button:before {
    content: "y";
}

/* line 104, music/_styles.scss */
.icon-music-shuffle-button:before {
    content: "z";
}

/* line 107, music/_styles.scss */
.icon-music-stop-button:before {
    content: "A";
}

/* line 110, music/_styles.scss */
.icon-music-tape:before {
    content: "B";
}

/* line 113, music/_styles.scss */
.icon-music-volume-down:before {
    content: "C";
}

/* line 116, music/_styles.scss */
.icon-music-volume-up:before {
    content: "D";
}

/* line 2, software/_styles.scss */
[class^="icon-software-"][data-icon]:before,
[class*=" icon-software-"][data-icon]:before {
    font-family: "linea-software-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 16, software/_styles.scss */
[class^="icon-software-"]:before,
[class*=" icon-software-"]:before {
    font-family: "linea-software-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 28, software/_styles.scss */
.icon-software-add-vectorpoint:before {
    content: "a";
}

/* line 31, software/_styles.scss */
.icon-software-box-oval:before {
    content: "b";
}

/* line 34, software/_styles.scss */
.icon-software-box-polygon:before {
    content: "c";
}

/* line 37, software/_styles.scss */
.icon-software-box-rectangle:before {
    content: "d";
}

/* line 40, software/_styles.scss */
.icon-software-box-roundedrectangle:before {
    content: "e";
}

/* line 43, software/_styles.scss */
.icon-software-character:before {
    content: "f";
}

/* line 46, software/_styles.scss */
.icon-software-crop:before {
    content: "g";
}

/* line 49, software/_styles.scss */
.icon-software-eyedropper:before {
    content: "h";
}

/* line 52, software/_styles.scss */
.icon-software-font-allcaps:before {
    content: "i";
}

/* line 55, software/_styles.scss */
.icon-software-font-baseline-shift:before {
    content: "j";
}

/* line 58, software/_styles.scss */
.icon-software-font-horizontal-scale:before {
    content: "k";
}

/* line 61, software/_styles.scss */
.icon-software-font-kerning:before {
    content: "l";
}

/* line 64, software/_styles.scss */
.icon-software-font-leading:before {
    content: "m";
}

/* line 67, software/_styles.scss */
.icon-software-font-size:before {
    content: "n";
}

/* line 70, software/_styles.scss */
.icon-software-font-smallcapital:before {
    content: "o";
}

/* line 73, software/_styles.scss */
.icon-software-font-smallcaps:before {
    content: "p";
}

/* line 76, software/_styles.scss */
.icon-software-font-strikethrough:before {
    content: "q";
}

/* line 79, software/_styles.scss */
.icon-software-font-tracking:before {
    content: "r";
}

/* line 82, software/_styles.scss */
.icon-software-font-underline:before {
    content: "s";
}

/* line 85, software/_styles.scss */
.icon-software-font-vertical-scale:before {
    content: "t";
}

/* line 88, software/_styles.scss */
.icon-software-horizontal-align-center:before {
    content: "u";
}

/* line 91, software/_styles.scss */
.icon-software-horizontal-align-left:before {
    content: "v";
}

/* line 94, software/_styles.scss */
.icon-software-horizontal-align-right:before {
    content: "w";
}

/* line 97, software/_styles.scss */
.icon-software-horizontal-distribute-center:before {
    content: "x";
}

/* line 100, software/_styles.scss */
.icon-software-horizontal-distribute-left:before {
    content: "y";
}

/* line 103, software/_styles.scss */
.icon-software-horizontal-distribute-right:before {
    content: "z";
}

/* line 106, software/_styles.scss */
.icon-software-indent-firstline:before {
    content: "A";
}

/* line 109, software/_styles.scss */
.icon-software-indent-left:before {
    content: "B";
}

/* line 112, software/_styles.scss */
.icon-software-indent-right:before {
    content: "C";
}

/* line 115, software/_styles.scss */
.icon-software-lasso:before {
    content: "D";
}

/* line 118, software/_styles.scss */
.icon-software-layers1:before {
    content: "E";
}

/* line 121, software/_styles.scss */
.icon-software-layers2:before {
    content: "F";
}

/* line 124, software/_styles.scss */
.icon-software-layout:before {
    content: "G";
}

/* line 127, software/_styles.scss */
.icon-software-layout-2columns:before {
    content: "H";
}

/* line 130, software/_styles.scss */
.icon-software-layout-3columns:before {
    content: "I";
}

/* line 133, software/_styles.scss */
.icon-software-layout-4boxes:before {
    content: "J";
}

/* line 136, software/_styles.scss */
.icon-software-layout-4columns:before {
    content: "K";
}

/* line 139, software/_styles.scss */
.icon-software-layout-4lines:before {
    content: "L";
}

/* line 142, software/_styles.scss */
.icon-software-layout-8boxes:before {
    content: "M";
}

/* line 145, software/_styles.scss */
.icon-software-layout-header:before {
    content: "N";
}

/* line 148, software/_styles.scss */
.icon-software-layout-header-2columns:before {
    content: "O";
}

/* line 151, software/_styles.scss */
.icon-software-layout-header-3columns:before {
    content: "P";
}

/* line 154, software/_styles.scss */
.icon-software-layout-header-4boxes:before {
    content: "Q";
}

/* line 157, software/_styles.scss */
.icon-software-layout-header-4columns:before {
    content: "R";
}

/* line 160, software/_styles.scss */
.icon-software-layout-header-complex:before {
    content: "S";
}

/* line 163, software/_styles.scss */
.icon-software-layout-header-complex2:before {
    content: "T";
}

/* line 166, software/_styles.scss */
.icon-software-layout-header-complex3:before {
    content: "U";
}

/* line 169, software/_styles.scss */
.icon-software-layout-header-complex4:before {
    content: "V";
}

/* line 172, software/_styles.scss */
.icon-software-layout-header-sideleft:before {
    content: "W";
}

/* line 175, software/_styles.scss */
.icon-software-layout-header-sideright:before {
    content: "X";
}

/* line 178, software/_styles.scss */
.icon-software-layout-sidebar-left:before {
    content: "Y";
}

/* line 181, software/_styles.scss */
.icon-software-layout-sidebar-right:before {
    content: "Z";
}

/* line 184, software/_styles.scss */
.icon-software-magnete:before {
    content: "0";
}

/* line 187, software/_styles.scss */
.icon-software-pages:before {
    content: "1";
}

/* line 190, software/_styles.scss */
.icon-software-paintbrush:before {
    content: "2";
}

/* line 193, software/_styles.scss */
.icon-software-paintbucket:before {
    content: "3";
}

/* line 196, software/_styles.scss */
.icon-software-paintroller:before {
    content: "4";
}

/* line 199, software/_styles.scss */
.icon-software-paragraph:before {
    content: "5";
}

/* line 202, software/_styles.scss */
.icon-software-paragraph-align-left:before {
    content: "6";
}

/* line 205, software/_styles.scss */
.icon-software-paragraph-align-right:before {
    content: "7";
}

/* line 208, software/_styles.scss */
.icon-software-paragraph-center:before {
    content: "8";
}

/* line 211, software/_styles.scss */
.icon-software-paragraph-justify-all:before {
    content: "9";
}

/* line 214, software/_styles.scss */
.icon-software-paragraph-justify-center:before {
    content: "!";
}

/* line 217, software/_styles.scss */
.icon-software-paragraph-justify-left:before {
    content: "\"";
}

/* line 220, software/_styles.scss */
.icon-software-paragraph-justify-right:before {
    content: "#";
}

/* line 223, software/_styles.scss */
.icon-software-paragraph-space-after:before {
    content: "$";
}

/* line 226, software/_styles.scss */
.icon-software-paragraph-space-before:before {
    content: "%";
}

/* line 229, software/_styles.scss */
.icon-software-pathfinder-exclude:before {
    content: "&";
}

/* line 232, software/_styles.scss */
.icon-software-pathfinder-intersect:before {
    content: "'";
}

/* line 235, software/_styles.scss */
.icon-software-pathfinder-subtract:before {
    content: "(";
}

/* line 238, software/_styles.scss */
.icon-software-pathfinder-unite:before {
    content: ")";
}

/* line 241, software/_styles.scss */
.icon-software-pen:before {
    content: "*";
}

/* line 244, software/_styles.scss */
.icon-software-pen-add:before {
    content: "+";
}

/* line 247, software/_styles.scss */
.icon-software-pen-remove:before {
    content: ",";
}

/* line 250, software/_styles.scss */
.icon-software-pencil:before {
    content: "-";
}

/* line 253, software/_styles.scss */
.icon-software-polygonallasso:before {
    content: ".";
}

/* line 256, software/_styles.scss */
.icon-software-reflect-horizontal:before {
    content: "/";
}

/* line 259, software/_styles.scss */
.icon-software-reflect-vertical:before {
    content: ":";
}

/* line 262, software/_styles.scss */
.icon-software-remove-vectorpoint:before {
    content: ";";
}

/* line 265, software/_styles.scss */
.icon-software-scale-expand:before {
    content: "<";
}

/* line 268, software/_styles.scss */
.icon-software-scale-reduce:before {
    content: "=";
}

/* line 271, software/_styles.scss */
.icon-software-selection-oval:before {
    content: ">";
}

/* line 274, software/_styles.scss */
.icon-software-selection-polygon:before {
    content: "?";
}

/* line 277, software/_styles.scss */
.icon-software-selection-rectangle:before {
    content: "@";
}

/* line 280, software/_styles.scss */
.icon-software-selection-roundedrectangle:before {
    content: "[";
}

/* line 283, software/_styles.scss */
.icon-software-shape-oval:before {
    content: "]";
}

/* line 286, software/_styles.scss */
.icon-software-shape-polygon:before {
    content: "^";
}

/* line 289, software/_styles.scss */
.icon-software-shape-rectangle:before {
    content: "_";
}

/* line 292, software/_styles.scss */
.icon-software-shape-roundedrectangle:before {
    content: "`";
}

/* line 295, software/_styles.scss */
.icon-software-slice:before {
    content: "{";
}

/* line 298, software/_styles.scss */
.icon-software-transform-bezier:before {
    content: "|";
}

/* line 301, software/_styles.scss */
.icon-software-vector-box:before {
    content: "}";
}

/* line 304, software/_styles.scss */
.icon-software-vector-composite:before {
    content: "~";
}

/* line 307, software/_styles.scss */
.icon-software-vector-line:before {
    content: "\\";
}

/* line 310, software/_styles.scss */
.icon-software-vertical-align-bottom:before {
    content: "\e000";
}

/* line 313, software/_styles.scss */
.icon-software-vertical-align-center:before {
    content: "\e001";
}

/* line 316, software/_styles.scss */
.icon-software-vertical-align-top:before {
    content: "\e002";
}

/* line 319, software/_styles.scss */
.icon-software-vertical-distribute-bottom:before {
    content: "\e003";
}

/* line 322, software/_styles.scss */
.icon-software-vertical-distribute-center:before {
    content: "\e004";
}

/* line 325, software/_styles.scss */
.icon-software-vertical-distribute-top:before {
    content: "\e005";
}

/* line 2, weather/_styles.scss */
[class^="icon-weather-"][data-icon]:before,
[class*=" icon-weather-"][data-icon]:before {
    font-family: "linea-weather-10" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 16, weather/_styles.scss */
[class^="icon-weather-"]:before,
[class*=" icon-weather-"]:before {
    font-family: "linea-weather-10" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 28, weather/_styles.scss */
.icon-weather-aquarius:before {
    content: "\e000";
}

/* line 31, weather/_styles.scss */
.icon-weather-aries:before {
    content: "\e001";
}

/* line 34, weather/_styles.scss */
.icon-weather-cancer:before {
    content: "\e002";
}

/* line 37, weather/_styles.scss */
.icon-weather-capricorn:before {
    content: "\e003";
}

/* line 40, weather/_styles.scss */
.icon-weather-cloud:before {
    content: "\e004";
}

/* line 43, weather/_styles.scss */
.icon-weather-cloud-drop:before {
    content: "\e005";
}

/* line 46, weather/_styles.scss */
.icon-weather-cloud-lightning:before {
    content: "\e006";
}

/* line 49, weather/_styles.scss */
.icon-weather-cloud-snowflake:before {
    content: "\e007";
}

/* line 52, weather/_styles.scss */
.icon-weather-downpour-fullmoon:before {
    content: "\e008";
}

/* line 55, weather/_styles.scss */
.icon-weather-downpour-halfmoon:before {
    content: "\e009";
}

/* line 58, weather/_styles.scss */
.icon-weather-downpour-sun:before {
    content: "\e00a";
}

/* line 61, weather/_styles.scss */
.icon-weather-drop:before {
    content: "\e00b";
}

/* line 64, weather/_styles.scss */
.icon-weather-first-quarter:before {
    content: "\e00c";
}

/* line 67, weather/_styles.scss */
.icon-weather-fog:before {
    content: "\e00d";
}

/* line 70, weather/_styles.scss */
.icon-weather-fog-fullmoon:before {
    content: "\e00e";
}

/* line 73, weather/_styles.scss */
.icon-weather-fog-halfmoon:before {
    content: "\e00f";
}

/* line 76, weather/_styles.scss */
.icon-weather-fog-sun:before {
    content: "\e010";
}

/* line 79, weather/_styles.scss */
.icon-weather-fullmoon:before {
    content: "\e011";
}

/* line 82, weather/_styles.scss */
.icon-weather-gemini:before {
    content: "\e012";
}

/* line 85, weather/_styles.scss */
.icon-weather-hail:before {
    content: "\e013";
}

/* line 88, weather/_styles.scss */
.icon-weather-hail-fullmoon:before {
    content: "\e014";
}

/* line 91, weather/_styles.scss */
.icon-weather-hail-halfmoon:before {
    content: "\e015";
}

/* line 94, weather/_styles.scss */
.icon-weather-hail-sun:before {
    content: "\e016";
}

/* line 97, weather/_styles.scss */
.icon-weather-last-quarter:before {
    content: "\e017";
}

/* line 100, weather/_styles.scss */
.icon-weather-leo:before {
    content: "\e018";
}

/* line 103, weather/_styles.scss */
.icon-weather-libra:before {
    content: "\e019";
}

/* line 106, weather/_styles.scss */
.icon-weather-lightning:before {
    content: "\e01a";
}

/* line 109, weather/_styles.scss */
.icon-weather-mistyrain:before {
    content: "\e01b";
}

/* line 112, weather/_styles.scss */
.icon-weather-mistyrain-fullmoon:before {
    content: "\e01c";
}

/* line 115, weather/_styles.scss */
.icon-weather-mistyrain-halfmoon:before {
    content: "\e01d";
}

/* line 118, weather/_styles.scss */
.icon-weather-mistyrain-sun:before {
    content: "\e01e";
}

/* line 121, weather/_styles.scss */
.icon-weather-moon:before {
    content: "\e01f";
}

/* line 124, weather/_styles.scss */
.icon-weather-moondown-full:before {
    content: "\e020";
}

/* line 127, weather/_styles.scss */
.icon-weather-moondown-half:before {
    content: "\e021";
}

/* line 130, weather/_styles.scss */
.icon-weather-moonset-full:before {
    content: "\e022";
}

/* line 133, weather/_styles.scss */
.icon-weather-moonset-half:before {
    content: "\e023";
}

/* line 136, weather/_styles.scss */
.icon-weather-move2:before {
    content: "\e024";
}

/* line 139, weather/_styles.scss */
.icon-weather-newmoon:before {
    content: "\e025";
}

/* line 142, weather/_styles.scss */
.icon-weather-pisces:before {
    content: "\e026";
}

/* line 145, weather/_styles.scss */
.icon-weather-rain:before {
    content: "\e027";
}

/* line 148, weather/_styles.scss */
.icon-weather-rain-fullmoon:before {
    content: "\e028";
}

/* line 151, weather/_styles.scss */
.icon-weather-rain-halfmoon:before {
    content: "\e029";
}

/* line 154, weather/_styles.scss */
.icon-weather-rain-sun:before {
    content: "\e02a";
}

/* line 157, weather/_styles.scss */
.icon-weather-sagittarius:before {
    content: "\e02b";
}

/* line 160, weather/_styles.scss */
.icon-weather-scorpio:before {
    content: "\e02c";
}

/* line 163, weather/_styles.scss */
.icon-weather-snow:before {
    content: "\e02d";
}

/* line 166, weather/_styles.scss */
.icon-weather-snow-fullmoon:before {
    content: "\e02e";
}

/* line 169, weather/_styles.scss */
.icon-weather-snow-halfmoon:before {
    content: "\e02f";
}

/* line 172, weather/_styles.scss */
.icon-weather-snow-sun:before {
    content: "\e030";
}

/* line 175, weather/_styles.scss */
.icon-weather-snowflake:before {
    content: "\e031";
}

/* line 178, weather/_styles.scss */
.icon-weather-star:before {
    content: "\e032";
}

/* line 181, weather/_styles.scss */
.icon-weather-storm-11:before {
    content: "\e033";
}

/* line 184, weather/_styles.scss */
.icon-weather-storm-32:before {
    content: "\e034";
}

/* line 187, weather/_styles.scss */
.icon-weather-storm-fullmoon:before {
    content: "\e035";
}

/* line 190, weather/_styles.scss */
.icon-weather-storm-halfmoon:before {
    content: "\e036";
}

/* line 193, weather/_styles.scss */
.icon-weather-storm-sun:before {
    content: "\e037";
}

/* line 196, weather/_styles.scss */
.icon-weather-sun:before {
    content: "\e038";
}

/* line 199, weather/_styles.scss */
.icon-weather-sundown:before {
    content: "\e039";
}

/* line 202, weather/_styles.scss */
.icon-weather-sunset:before {
    content: "\e03a";
}

/* line 205, weather/_styles.scss */
.icon-weather-taurus:before {
    content: "\e03b";
}

/* line 208, weather/_styles.scss */
.icon-weather-tempest:before {
    content: "\e03c";
}

/* line 211, weather/_styles.scss */
.icon-weather-tempest-fullmoon:before {
    content: "\e03d";
}

/* line 214, weather/_styles.scss */
.icon-weather-tempest-halfmoon:before {
    content: "\e03e";
}

/* line 217, weather/_styles.scss */
.icon-weather-tempest-sun:before {
    content: "\e03f";
}

/* line 220, weather/_styles.scss */
.icon-weather-variable-fullmoon:before {
    content: "\e040";
}

/* line 223, weather/_styles.scss */
.icon-weather-variable-halfmoon:before {
    content: "\e041";
}

/* line 226, weather/_styles.scss */
.icon-weather-variable-sun:before {
    content: "\e042";
}

/* line 229, weather/_styles.scss */
.icon-weather-virgo:before {
    content: "\e043";
}

/* line 232, weather/_styles.scss */
.icon-weather-waning-cresent:before {
    content: "\e044";
}

/* line 235, weather/_styles.scss */
.icon-weather-waning-gibbous:before {
    content: "\e045";
}

/* line 238, weather/_styles.scss */
.icon-weather-waxing-cresent:before {
    content: "\e046";
}

/* line 241, weather/_styles.scss */
.icon-weather-waxing-gibbous:before {
    content: "\e047";
}

/* line 244, weather/_styles.scss */
.icon-weather-wind:before {
    content: "\e048";
}

/* line 247, weather/_styles.scss */
.icon-weather-wind-e:before {
    content: "\e049";
}

/* line 250, weather/_styles.scss */
.icon-weather-wind-fullmoon:before {
    content: "\e04a";
}

/* line 253, weather/_styles.scss */
.icon-weather-wind-halfmoon:before {
    content: "\e04b";
}

/* line 256, weather/_styles.scss */
.icon-weather-wind-n:before {
    content: "\e04c";
}

/* line 259, weather/_styles.scss */
.icon-weather-wind-ne:before {
    content: "\e04d";
}

/* line 262, weather/_styles.scss */
.icon-weather-wind-nw:before {
    content: "\e04e";
}

/* line 265, weather/_styles.scss */
.icon-weather-wind-s:before {
    content: "\e04f";
}

/* line 268, weather/_styles.scss */
.icon-weather-wind-se:before {
    content: "\e050";
}

/* line 271, weather/_styles.scss */
.icon-weather-wind-sun:before {
    content: "\e051";
}

/* line 274, weather/_styles.scss */
.icon-weather-wind-sw:before {
    content: "\e052";
}

/* line 277, weather/_styles.scss */
.icon-weather-wind-w:before {
    content: "\e053";
}

/* line 280, weather/_styles.scss */
.icon-weather-windgust:before {
    content: "\e054";
}

@font-face {
    font-family: 'Linearicons-Free';
    src: url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.eot?w118d');
    src: url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.eot?#iefixw118d') format('embedded-opentype'),
    url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.woff2?w118d') format('woff2'),
    url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.woff?w118d') format('woff'),
    url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.ttf?w118d') format('truetype'),
    url('/wp-content/themes/onea/framework/lib/icons-pack/linear-icons/fonts/Linearicons-Free.svg?w118d#Linearicons-Free') format('svg');
    font-weight: normal;
    font-style: normal;
}

.lnr {
    font-family: 'Linearicons-Free';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lnr-home:before {
    content: "\e800";
}

.lnr-apartment:before {
    content: "\e801";
}

.lnr-pencil:before {
    content: "\e802";
}

.lnr-magic-wand:before {
    content: "\e803";
}

.lnr-drop:before {
    content: "\e804";
}

.lnr-lighter:before {
    content: "\e805";
}

.lnr-poop:before {
    content: "\e806";
}

.lnr-sun:before {
    content: "\e807";
}

.lnr-moon:before {
    content: "\e808";
}

.lnr-cloud:before {
    content: "\e809";
}

.lnr-cloud-upload:before {
    content: "\e80a";
}

.lnr-cloud-download:before {
    content: "\e80b";
}

.lnr-cloud-sync:before {
    content: "\e80c";
}

.lnr-cloud-check:before {
    content: "\e80d";
}

.lnr-database:before {
    content: "\e80e";
}

.lnr-lock:before {
    content: "\e80f";
}

.lnr-cog:before {
    content: "\e810";
}

.lnr-trash:before {
    content: "\e811";
}

.lnr-dice:before {
    content: "\e812";
}

.lnr-heart:before {
    content: "\e813";
}

.lnr-star:before {
    content: "\e814";
}

.lnr-star-half:before {
    content: "\e815";
}

.lnr-star-empty:before {
    content: "\e816";
}

.lnr-flag:before {
    content: "\e817";
}

.lnr-envelope:before {
    content: "\e818";
}

.lnr-paperclip:before {
    content: "\e819";
}

.lnr-inbox:before {
    content: "\e81a";
}

.lnr-eye:before {
    content: "\e81b";
}

.lnr-printer:before {
    content: "\e81c";
}

.lnr-file-empty:before {
    content: "\e81d";
}

.lnr-file-add:before {
    content: "\e81e";
}

.lnr-enter:before {
    content: "\e81f";
}

.lnr-exit:before {
    content: "\e820";
}

.lnr-graduation-hat:before {
    content: "\e821";
}

.lnr-license:before {
    content: "\e822";
}

.lnr-music-note:before {
    content: "\e823";
}

.lnr-film-play:before {
    content: "\e824";
}

.lnr-camera-video:before {
    content: "\e825";
}

.lnr-camera:before {
    content: "\e826";
}

.lnr-picture:before {
    content: "\e827";
}

.lnr-book:before {
    content: "\e828";
}

.lnr-bookmark:before {
    content: "\e829";
}

.lnr-user:before {
    content: "\e82a";
}

.lnr-users:before {
    content: "\e82b";
}

.lnr-shirt:before {
    content: "\e82c";
}

.lnr-store:before {
    content: "\e82d";
}

.lnr-cart:before {
    content: "\e82e";
}

.lnr-tag:before {
    content: "\e82f";
}

.lnr-phone-handset:before {
    content: "\e830";
}

.lnr-phone:before {
    content: "\e831";
}

.lnr-pushpin:before {
    content: "\e832";
}

.lnr-map-marker:before {
    content: "\e833";
}

.lnr-map:before {
    content: "\e834";
}

.lnr-location:before {
    content: "\e835";
}

.lnr-calendar-full:before {
    content: "\e836";
}

.lnr-keyboard:before {
    content: "\e837";
}

.lnr-spell-check:before {
    content: "\e838";
}

.lnr-screen:before {
    content: "\e839";
}

.lnr-smartphone:before {
    content: "\e83a";
}

.lnr-tablet:before {
    content: "\e83b";
}

.lnr-laptop:before {
    content: "\e83c";
}

.lnr-laptop-phone:before {
    content: "\e83d";
}

.lnr-power-switch:before {
    content: "\e83e";
}

.lnr-bubble:before {
    content: "\e83f";
}

.lnr-heart-pulse:before {
    content: "\e840";
}

.lnr-construction:before {
    content: "\e841";
}

.lnr-pie-chart:before {
    content: "\e842";
}

.lnr-chart-bars:before {
    content: "\e843";
}

.lnr-gift:before {
    content: "\e844";
}

.lnr-diamond:before {
    content: "\e845";
}

.lnr-linearicons:before {
    content: "\e846";
}

.lnr-dinner:before {
    content: "\e847";
}

.lnr-coffee-cup:before {
    content: "\e848";
}

.lnr-leaf:before {
    content: "\e849";
}

.lnr-paw:before {
    content: "\e84a";
}

.lnr-rocket:before {
    content: "\e84b";
}

.lnr-briefcase:before {
    content: "\e84c";
}

.lnr-bus:before {
    content: "\e84d";
}

.lnr-car:before {
    content: "\e84e";
}

.lnr-train:before {
    content: "\e84f";
}

.lnr-bicycle:before {
    content: "\e850";
}

.lnr-wheelchair:before {
    content: "\e851";
}

.lnr-select:before {
    content: "\e852";
}

.lnr-earth:before {
    content: "\e853";
}

.lnr-smile:before {
    content: "\e854";
}

.lnr-sad:before {
    content: "\e855";
}

.lnr-neutral:before {
    content: "\e856";
}

.lnr-mustache:before {
    content: "\e857";
}

.lnr-alarm:before {
    content: "\e858";
}

.lnr-bullhorn:before {
    content: "\e859";
}

.lnr-volume-high:before {
    content: "\e85a";
}

.lnr-volume-medium:before {
    content: "\e85b";
}

.lnr-volume-low:before {
    content: "\e85c";
}

.lnr-volume:before {
    content: "\e85d";
}

.lnr-mic:before {
    content: "\e85e";
}

.lnr-hourglass:before {
    content: "\e85f";
}

.lnr-undo:before {
    content: "\e860";
}

.lnr-redo:before {
    content: "\e861";
}

.lnr-sync:before {
    content: "\e862";
}

.lnr-history:before {
    content: "\e863";
}

.lnr-clock:before {
    content: "\e864";
}

.lnr-download:before {
    content: "\e865";
}

.lnr-upload:before {
    content: "\e866";
}

.lnr-enter-down:before {
    content: "\e867";
}

.lnr-exit-up:before {
    content: "\e868";
}

.lnr-bug:before {
    content: "\e869";
}

.lnr-code:before {
    content: "\e86a";
}

.lnr-link:before {
    content: "\e86b";
}

.lnr-unlink:before {
    content: "\e86c";
}

.lnr-thumbs-up:before {
    content: "\e86d";
}

.lnr-thumbs-down:before {
    content: "\e86e";
}

.lnr-magnifier:before {
    content: "\e86f";
}

.lnr-cross:before {
    content: "\e870";
}

.lnr-menu:before {
    content: "\e871";
}

.lnr-list:before {
    content: "\e872";
}

.lnr-chevron-up:before {
    content: "\e873";
}

.lnr-chevron-down:before {
    content: "\e874";
}

.lnr-chevron-left:before {
    content: "\e875";
}

.lnr-chevron-right:before {
    content: "\e876";
}

.lnr-arrow-up:before {
    content: "\e877";
}

.lnr-arrow-down:before {
    content: "\e878";
}

.lnr-arrow-left:before {
    content: "\e879";
}

.lnr-arrow-right:before {
    content: "\e87a";
}

.lnr-move:before {
    content: "\e87b";
}

.lnr-warning:before {
    content: "\e87c";
}

.lnr-question-circle:before {
    content: "\e87d";
}

.lnr-menu-circle:before {
    content: "\e87e";
}

.lnr-checkmark-circle:before {
    content: "\e87f";
}

.lnr-cross-circle:before {
    content: "\e880";
}

.lnr-plus-circle:before {
    content: "\e881";
}

.lnr-circle-minus:before {
    content: "\e882";
}

.lnr-arrow-up-circle:before {
    content: "\e883";
}

.lnr-arrow-down-circle:before {
    content: "\e884";
}

.lnr-arrow-left-circle:before {
    content: "\e885";
}

.lnr-arrow-right-circle:before {
    content: "\e886";
}

.lnr-chevron-up-circle:before {
    content: "\e887";
}

.lnr-chevron-down-circle:before {
    content: "\e888";
}

.lnr-chevron-left-circle:before {
    content: "\e889";
}

.lnr-chevron-right-circle:before {
    content: "\e88a";
}

.lnr-crop:before {
    content: "\e88b";
}

.lnr-frame-expand:before {
    content: "\e88c";
}

.lnr-frame-contract:before {
    content: "\e88d";
}

.lnr-layers:before {
    content: "\e88e";
}

.lnr-funnel:before {
    content: "\e88f";
}

.lnr-text-format:before {
    content: "\e890";
}

.lnr-text-format-remove:before {
    content: "\e891";
}

.lnr-text-size:before {
    content: "\e892";
}

.lnr-bold:before {
    content: "\e893";
}

.lnr-italic:before {
    content: "\e894";
}

.lnr-underline:before {
    content: "\e895";
}

.lnr-strikethrough:before {
    content: "\e896";
}

.lnr-highlight:before {
    content: "\e897";
}

.lnr-text-align-left:before {
    content: "\e898";
}

.lnr-text-align-center:before {
    content: "\e899";
}

.lnr-text-align-right:before {
    content: "\e89a";
}

.lnr-text-align-justify:before {
    content: "\e89b";
}

.lnr-line-spacing:before {
    content: "\e89c";
}

.lnr-indent-increase:before {
    content: "\e89d";
}

.lnr-indent-decrease:before {
    content: "\e89e";
}

.lnr-pilcrow:before {
    content: "\e89f";
}

.lnr-direction-ltr:before {
    content: "\e8a0";
}

.lnr-direction-rtl:before {
    content: "\e8a1";
}

.lnr-page-break:before {
    content: "\e8a2";
}

.lnr-sort-alpha-asc:before {
    content: "\e8a3";
}

.lnr-sort-amount-asc:before {
    content: "\e8a4";
}

.lnr-hand:before {
    content: "\e8a5";
}

.lnr-pointer-up:before {
    content: "\e8a6";
}

.lnr-pointer-right:before {
    content: "\e8a7";
}

.lnr-pointer-down:before {
    content: "\e8a8";
}

.lnr-pointer-left:before {
    content: "\e8a9";
}

@font-face {
    font-family: 'simple-line-icons';
    src: url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.eot?-i3a2kk');
    src: url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.eot?#iefix-i3a2kk') format('embedded-opentype'), url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.ttf?-i3a2kk') format('truetype'), url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.woff2?-i3a2kk') format('woff2'), url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.woff?-i3a2kk') format('woff'), url('/wp-content/themes/onea/framework/lib/icons-pack/simple-line-icons/fonts/Simple-Line-Icons.svg?-i3a2kk#simple-line-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
 Use the following CSS code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
*/
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-close,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawar,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calender,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symble-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pintarest,
.icon-social-github,
.icon-social-gplus,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox {
    font-family: 'simple-line-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
    content: "\e005";
}

.icon-people:before {
    content: "\e001";
}

.icon-user-female:before {
    content: "\e000";
}

.icon-user-follow:before {
    content: "\e002";
}

.icon-user-following:before {
    content: "\e003";
}

.icon-user-unfollow:before {
    content: "\e004";
}

.icon-login:before {
    content: "\e066";
}

.icon-logout:before {
    content: "\e065";
}

.icon-emotsmile:before {
    content: "\e021";
}

.icon-phone:before {
    content: "\e600";
}

.icon-call-end:before {
    content: "\e048";
}

.icon-call-in:before {
    content: "\e047";
}

.icon-call-out:before {
    content: "\e046";
}

.icon-map:before {
    content: "\e033";
}

.icon-location-pin:before {
    content: "\e096";
}

.icon-direction:before {
    content: "\e042";
}

.icon-directions:before {
    content: "\e041";
}

.icon-compass:before {
    content: "\e045";
}

.icon-layers:before {
    content: "\e034";
}

.icon-menu:before {
    content: "\e601";
}

.icon-list:before {
    content: "\e067";
}

.icon-options-vertical:before {
    content: "\e602";
}

.icon-options:before {
    content: "\e603";
}

.icon-arrow-down:before {
    content: "\e604";
}

.icon-arrow-left:before {
    content: "\e605";
}

.icon-arrow-right:before {
    content: "\e606";
}

.icon-arrow-up:before {
    content: "\e607";
}

.icon-arrow-up-circle:before {
    content: "\e078";
}

.icon-arrow-left-circle:before {
    content: "\e07a";
}

.icon-arrow-right-circle:before {
    content: "\e079";
}

.icon-arrow-down-circle:before {
    content: "\e07b";
}

.icon-check:before {
    content: "\e080";
}

.icon-clock:before {
    content: "\e081";
}

.icon-plus:before {
    content: "\e095";
}

.icon-close:before {
    content: "\e082";
}

.icon-trophy:before {
    content: "\e006";
}

.icon-screen-smartphone:before {
    content: "\e010";
}

.icon-screen-desktop:before {
    content: "\e011";
}

.icon-plane:before {
    content: "\e012";
}

.icon-notebook:before {
    content: "\e013";
}

.icon-mustache:before {
    content: "\e014";
}

.icon-mouse:before {
    content: "\e015";
}

.icon-magnet:before {
    content: "\e016";
}

.icon-energy:before {
    content: "\e020";
}

.icon-disc:before {
    content: "\e022";
}

.icon-cursor:before {
    content: "\e06e";
}

.icon-cursor-move:before {
    content: "\e023";
}

.icon-crop:before {
    content: "\e024";
}

.icon-chemistry:before {
    content: "\e026";
}

.icon-speedometer:before {
    content: "\e007";
}

.icon-shield:before {
    content: "\e00e";
}

.icon-screen-tablet:before {
    content: "\e00f";
}

.icon-magic-wand:before {
    content: "\e017";
}

.icon-hourglass:before {
    content: "\e018";
}

.icon-graduation:before {
    content: "\e019";
}

.icon-ghost:before {
    content: "\e01a";
}

.icon-game-controller:before {
    content: "\e01b";
}

.icon-fire:before {
    content: "\e01c";
}

.icon-eyeglass:before {
    content: "\e01d";
}

.icon-envelope-open:before {
    content: "\e01e";
}

.icon-envelope-letter:before {
    content: "\e01f";
}

.icon-bell:before {
    content: "\e027";
}

.icon-badge:before {
    content: "\e028";
}

.icon-anchor:before {
    content: "\e029";
}

.icon-wallet:before {
    content: "\e02a";
}

.icon-vector:before {
    content: "\e02b";
}

.icon-speech:before {
    content: "\e02c";
}

.icon-puzzle:before {
    content: "\e02d";
}

.icon-printer:before {
    content: "\e02e";
}

.icon-present:before {
    content: "\e02f";
}

.icon-playlist:before {
    content: "\e030";
}

.icon-pin:before {
    content: "\e031";
}

.icon-picture:before {
    content: "\e032";
}

.icon-handbag:before {
    content: "\e035";
}

.icon-globe-alt:before {
    content: "\e036";
}

.icon-globe:before {
    content: "\e037";
}

.icon-folder-alt:before {
    content: "\e039";
}

.icon-folder:before {
    content: "\e089";
}

.icon-film:before {
    content: "\e03a";
}

.icon-feed:before {
    content: "\e03b";
}

.icon-drop:before {
    content: "\e03e";
}

.icon-drawar:before {
    content: "\e03f";
}

.icon-docs:before {
    content: "\e040";
}

.icon-doc:before {
    content: "\e085";
}

.icon-diamond:before {
    content: "\e043";
}

.icon-cup:before {
    content: "\e044";
}

.icon-calculator:before {
    content: "\e049";
}

.icon-bubbles:before {
    content: "\e04a";
}

.icon-briefcase:before {
    content: "\e04b";
}

.icon-book-open:before {
    content: "\e04c";
}

.icon-basket-loaded:before {
    content: "\e04d";
}

.icon-basket:before {
    content: "\e04e";
}

.icon-bag:before {
    content: "\e04f";
}

.icon-action-undo:before {
    content: "\e050";
}

.icon-action-redo:before {
    content: "\e051";
}

.icon-wrench:before {
    content: "\e052";
}

.icon-umbrella:before {
    content: "\e053";
}

.icon-trash:before {
    content: "\e054";
}

.icon-tag:before {
    content: "\e055";
}

.icon-support:before {
    content: "\e056";
}

.icon-frame:before {
    content: "\e038";
}

.icon-size-fullscreen:before {
    content: "\e057";
}

.icon-size-actual:before {
    content: "\e058";
}

.icon-shuffle:before {
    content: "\e059";
}

.icon-share-alt:before {
    content: "\e05a";
}

.icon-share:before {
    content: "\e05b";
}

.icon-rocket:before {
    content: "\e05c";
}

.icon-question:before {
    content: "\e05d";
}

.icon-pie-chart:before {
    content: "\e05e";
}

.icon-pencil:before {
    content: "\e05f";
}

.icon-note:before {
    content: "\e060";
}

.icon-loop:before {
    content: "\e064";
}

.icon-home:before {
    content: "\e069";
}

.icon-grid:before {
    content: "\e06a";
}

.icon-graph:before {
    content: "\e06b";
}

.icon-microphone:before {
    content: "\e063";
}

.icon-music-tone-alt:before {
    content: "\e061";
}

.icon-music-tone:before {
    content: "\e062";
}

.icon-earphones-alt:before {
    content: "\e03c";
}

.icon-earphones:before {
    content: "\e03d";
}

.icon-equalizer:before {
    content: "\e06c";
}

.icon-like:before {
    content: "\e068";
}

.icon-dislike:before {
    content: "\e06d";
}

.icon-control-start:before {
    content: "\e06f";
}

.icon-control-rewind:before {
    content: "\e070";
}

.icon-control-play:before {
    content: "\e071";
}

.icon-control-pause:before {
    content: "\e072";
}

.icon-control-forward:before {
    content: "\e073";
}

.icon-control-end:before {
    content: "\e074";
}

.icon-volume-1:before {
    content: "\e09f";
}

.icon-volume-2:before {
    content: "\e0a0";
}

.icon-volume-off:before {
    content: "\e0a1";
}

.icon-calender:before {
    content: "\e075";
}

.icon-bulb:before {
    content: "\e076";
}

.icon-chart:before {
    content: "\e077";
}

.icon-ban:before {
    content: "\e07c";
}

.icon-bubble:before {
    content: "\e07d";
}

.icon-camrecorder:before {
    content: "\e07e";
}

.icon-camera:before {
    content: "\e07f";
}

.icon-cloud-download:before {
    content: "\e083";
}

.icon-cloud-upload:before {
    content: "\e084";
}

.icon-envelope:before {
    content: "\e086";
}

.icon-eye:before {
    content: "\e087";
}

.icon-flag:before {
    content: "\e088";
}

.icon-heart:before {
    content: "\e08a";
}

.icon-info:before {
    content: "\e08b";
}

.icon-key:before {
    content: "\e08c";
}

.icon-link:before {
    content: "\e08d";
}

.icon-lock:before {
    content: "\e08e";
}

.icon-lock-open:before {
    content: "\e08f";
}

.icon-magnifier:before {
    content: "\e090";
}

.icon-magnifier-add:before {
    content: "\e091";
}

.icon-magnifier-remove:before {
    content: "\e092";
}

.icon-paper-clip:before {
    content: "\e093";
}

.icon-paper-plane:before {
    content: "\e094";
}

.icon-power:before {
    content: "\e097";
}

.icon-refresh:before {
    content: "\e098";
}

.icon-reload:before {
    content: "\e099";
}

.icon-settings:before {
    content: "\e09a";
}

.icon-star:before {
    content: "\e09b";
}

.icon-symble-female:before {
    content: "\e09c";
}

.icon-symbol-male:before {
    content: "\e09d";
}

.icon-target:before {
    content: "\e09e";
}

.icon-credit-card:before {
    content: "\e025";
}

.icon-paypal:before {
    content: "\e608";
}

.icon-social-tumblr:before {
    content: "\e00a";
}

.icon-social-twitter:before {
    content: "\e009";
}

.icon-social-facebook:before {
    content: "\e00b";
}

.icon-social-instagram:before {
    content: "\e609";
}

.icon-social-linkedin:before {
    content: "\e60a";
}

.icon-social-pintarest:before {
    content: "\e60b";
}

.icon-social-github:before {
    content: "\e60c";
}

.icon-social-gplus:before {
    content: "\e60d";
}

.icon-social-reddit:before {
    content: "\e60e";
}

.icon-social-skype:before {
    content: "\e60f";
}

.icon-social-dribbble:before {
    content: "\e00d";
}

.icon-social-behance:before {
    content: "\e610";
}

.icon-social-foursqare:before {
    content: "\e611";
}

.icon-social-soundcloud:before {
    content: "\e612";
}

.icon-social-spotify:before {
    content: "\e613";
}

.icon-social-stumbleupon:before {
    content: "\e614";
}

.icon-social-youtube:before {
    content: "\e008";
}

.icon-social-dropbox:before {
    content: "\e00c";
}

.mejs-offscreen {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal
}

.mejs-container {
    background: #000;
    font-family: Helvetica, Arial, serif;
    position: relative;
    text-align: left;
    text-indent: 0;
    vertical-align: top
}

.mejs-container, .mejs-container * {
    box-sizing: border-box
}

.mejs-container video::-webkit-media-controls, .mejs-container video::-webkit-media-controls-panel, .mejs-container video::-webkit-media-controls-panel-container, .mejs-container video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important
}

.mejs-fill-container, .mejs-fill-container .mejs-container {
    height: 100%;
    width: 100%
}

.mejs-fill-container {
    background: transparent;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.mejs-container:focus {
    outline: none
}

.mejs-iframe-overlay {
    height: 100%;
    position: absolute;
    width: 100%
}

.mejs-embed, .mejs-embed body {
    background: #000;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.mejs-fullscreen {
    overflow: hidden !important
}

.mejs-container-fullscreen {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.mejs-container-fullscreen .mejs-mediaelement, .mejs-container-fullscreen video {
    height: 100% !important;
    width: 100% !important
}

.mejs-background, .mejs-mediaelement {
    left: 0;
    position: absolute;
    top: 0
}

.mejs-mediaelement {
    height: 100%;
    width: 100%;
    z-index: 0
}

.mejs-poster {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1
}

:root .mejs-poster-img {
    display: none
}

.mejs-poster-img {
    border: 0;
    padding: 0
}

.mejs-overlay {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0
}

.mejs-layer {
    z-index: 1
}

.mejs-overlay-play {
    cursor: pointer
}

.mejs-overlay-button {
    background: url(/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;
    background-position: 0 -39px;
    height: 80px;
    width: 80px
}

.mejs-overlay:hover > .mejs-overlay-button {
    background-position: -80px -39px
}

.mejs-overlay-loading {
    height: 80px;
    width: 80px
}

.mejs-overlay-loading-bg-img {
    -webkit-animation: a 1s linear infinite;
    animation: a 1s linear infinite;
    background: transparent url(/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;
    display: block;
    height: 80px;
    width: 80px;
    z-index: 1
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.mejs-controls {
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    position: absolute;
    width: 100%;
    z-index: 3
}

.mejs-controls:not([style*="display: none"]) {
    background: rgba(255, 0, 0, .7);
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .35));
    background: linear-gradient(transparent, rgba(0, 0, 0, .35))
}

.mejs-button, .mejs-time, .mejs-time-rail {
    font-size: 10px;
    height: 40px;
    line-height: 10px;
    margin: 0;
    width: 32px
}

.mejs-button > button {
    background: transparent url(/wp-includes/js/mediaelement/mejs-controls.svg);
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    margin: 10px 6px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-decoration: none;
    width: 20px
}

.mejs-button > button:focus {
    outline: 1px dotted #999
}

.mejs-container-keyboard-inactive [role=slider], .mejs-container-keyboard-inactive [role=slider]:focus, .mejs-container-keyboard-inactive a, .mejs-container-keyboard-inactive a:focus, .mejs-container-keyboard-inactive button, .mejs-container-keyboard-inactive button:focus {
    outline: 0
}

.mejs-time {
    box-sizing: content-box;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    height: 24px;
    overflow: hidden;
    padding: 16px 6px 0;
    text-align: center;
    width: auto
}

.mejs-play > button {
    background-position: 0 0
}

.mejs-pause > button {
    background-position: -20px 0
}

.mejs-replay > button {
    background-position: -160px 0
}

.mejs-time-rail {
    direction: ltr;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 40px;
    margin: 0 10px;
    padding-top: 10px;
    position: relative
}

.mejs-time-buffering, .mejs-time-current, .mejs-time-float, .mejs-time-float-corner, .mejs-time-float-current, .mejs-time-hovered, .mejs-time-loaded, .mejs-time-marker, .mejs-time-total {
    border-radius: 2px;
    cursor: pointer;
    display: block;
    height: 10px;
    position: absolute
}

.mejs-time-total {
    background: hsla(0, 0%, 100%, .3);
    margin: 5px 0 0;
    width: 100%
}

.mejs-time-buffering {
    -webkit-animation: b 2s linear infinite;
    animation: b 2s linear infinite;
    background: -webkit-linear-gradient(135deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent);
    background: linear-gradient(-45deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent);
    background-size: 15px 15px;
    width: 100%
}

@-webkit-keyframes b {
    0% {
        background-position: 0 0
    }
    to {
        background-position: 30px 0
    }
}

@keyframes b {
    0% {
        background-position: 0 0
    }
    to {
        background-position: 30px 0
    }
}

.mejs-time-loaded {
    background: hsla(0, 0%, 100%, .3)
}

.mejs-time-current, .mejs-time-handle-content {
    background: hsla(0, 0%, 100%, .9)
}

.mejs-time-hovered {
    background: hsla(0, 0%, 100%, .5);
    z-index: 10
}

.mejs-time-hovered.negative {
    background: rgba(0, 0, 0, .2)
}

.mejs-time-buffering, .mejs-time-current, .mejs-time-hovered, .mejs-time-loaded {
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    width: 100%
}

.mejs-time-buffering {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.mejs-time-hovered {
    -webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1);
    transition: height .1s cubic-bezier(.44, 0, 1, 1)
}

.mejs-time-hovered.no-hover {
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important
}

.mejs-time-handle, .mejs-time-handle-content {
    border: 4px solid transparent;
    cursor: pointer;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 11
}

.mejs-time-handle-content {
    border: 4px solid hsla(0, 0%, 100%, .9);
    border-radius: 50%;
    height: 10px;
    left: -7px;
    top: -4px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px
}

.mejs-time-rail .mejs-time-handle-content:active, .mejs-time-rail .mejs-time-handle-content:focus, .mejs-time-rail:hover .mejs-time-handle-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.mejs-time-float {
    background: #eee;
    border: 1px solid #333;
    bottom: 100%;
    color: #111;
    display: none;
    height: 17px;
    margin-bottom: 9px;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 36px
}

.mejs-time-float-current {
    display: block;
    left: 0;
    margin: 2px;
    text-align: center;
    width: 30px
}

.mejs-time-float-corner {
    border: 5px solid #eee;
    border-color: #eee transparent transparent;
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0
}

.mejs-long-video .mejs-time-float {
    margin-left: -23px;
    width: 64px
}

.mejs-long-video .mejs-time-float-current {
    width: 60px
}

.mejs-broadcast {
    color: #fff;
    height: 10px;
    position: absolute;
    top: 15px;
    width: 100%
}

.mejs-fullscreen-button > button {
    background-position: -80px 0
}

.mejs-unfullscreen > button {
    background-position: -100px 0
}

.mejs-mute > button {
    background-position: -60px 0
}

.mejs-unmute > button {
    background-position: -40px 0
}

.mejs-volume-button {
    position: relative
}

.mejs-volume-button > .mejs-volume-slider {
    -webkit-backface-visibility: hidden;
    background: rgba(50, 50, 50, .7);
    border-radius: 0;
    bottom: 100%;
    display: none;
    height: 115px;
    left: 50%;
    margin: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    z-index: 1
}

.mejs-volume-button:hover {
    border-radius: 0 0 4px 4px
}

.mejs-volume-total {
    background: hsla(0, 0%, 100%, .5);
    height: 100px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 8px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px
}

.mejs-volume-current {
    left: 0;
    margin: 0;
    width: 100%
}

.mejs-volume-current, .mejs-volume-handle {
    background: hsla(0, 0%, 100%, .9);
    position: absolute
}

.mejs-volume-handle {
    border-radius: 1px;
    cursor: ns-resize;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 16px
}

.mejs-horizontal-volume-slider {
    display: block;
    height: 36px;
    position: relative;
    vertical-align: middle;
    width: 56px
}

.mejs-horizontal-volume-total {
    background: rgba(50, 50, 50, .8);
    height: 8px;
    top: 16px;
    width: 50px
}

.mejs-horizontal-volume-current, .mejs-horizontal-volume-total {
    border-radius: 2px;
    font-size: 1px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute
}

.mejs-horizontal-volume-current {
    background: hsla(0, 0%, 100%, .8);
    height: 100%;
    top: 0;
    width: 100%
}

.mejs-horizontal-volume-handle {
    display: none
}

.mejs-captions-button, .mejs-chapters-button {
    position: relative
}

.mejs-captions-button > button {
    background-position: -140px 0
}

.mejs-chapters-button > button {
    background-position: -180px 0
}

.mejs-captions-button > .mejs-captions-selector, .mejs-chapters-button > .mejs-chapters-selector {
    background: rgba(50, 50, 50, .7);
    border: 1px solid transparent;
    border-radius: 0;
    bottom: 100%;
    margin-right: -43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 50%;
    visibility: visible;
    width: 86px
}

.mejs-chapters-button > .mejs-chapters-selector {
    margin-right: -55px;
    width: 110px
}

.mejs-captions-selector-list, .mejs-chapters-selector-list {
    list-style-type: none !important;
    margin: 0;
    overflow: hidden;
    padding: 0
}

.mejs-captions-selector-list-item, .mejs-chapters-selector-list-item {
    color: #fff;
    cursor: pointer;
    display: block;
    list-style-type: none !important;
    margin: 0 0 6px;
    overflow: hidden;
    padding: 0 10px
}

.mejs-captions-selector-list-item:hover, .mejs-chapters-selector-list-item:hover {
    background-color: #c8c8c8 !important;
    background-color: hsla(0, 0%, 100%, .4) !important
}

.mejs-captions-selector-input, .mejs-chapters-selector-input {
    clear: both;
    float: left;
    left: -1000px;
    margin: 3px 3px 0 5px;
    position: absolute
}

.mejs-captions-selector-label, .mejs-chapters-selector-label {
    cursor: pointer;
    float: left;
    font-size: 10px;
    line-height: 15px;
    padding: 4px 0 0
}

.mejs-captions-selected, .mejs-chapters-selected {
    color: #21f8f8
}

.mejs-captions-translations {
    font-size: 10px;
    margin: 0 0 5px
}

.mejs-captions-layer {
    bottom: 0;
    color: #fff;
    font-size: 16px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center
}

.mejs-captions-layer a {
    color: #fff;
    text-decoration: underline
}

.mejs-captions-layer[lang=ar] {
    font-size: 20px;
    font-weight: 400
}

.mejs-captions-position {
    bottom: 15px;
    left: 0;
    position: absolute;
    width: 100%
}

.mejs-captions-position-hover {
    bottom: 35px
}

.mejs-captions-text, .mejs-captions-text * {
    background: hsla(0, 0%, 8%, .5);
    box-shadow: 5px 0 0 hsla(0, 0%, 8%, .5), -5px 0 0 hsla(0, 0%, 8%, .5);
    padding: 0;
    white-space: pre-wrap
}

.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container {
    display: none
}

.mejs-overlay-error {
    position: relative
}

.mejs-overlay-error > img {
    left: 0;
    position: absolute;
    top: 0;
    z-index: -1
}

.mejs-cannotplay, .mejs-cannotplay a {
    color: #fff;
    font-size: .8em
}

.mejs-cannotplay {
    position: relative
}

.mejs-cannotplay a, .mejs-cannotplay p {
    display: inline-block;
    padding: 0 15px;
    width: 100%
}

.mejs-container {
    clear: both;
    max-width: 100%
}

.mejs-container * {
    font-family: Helvetica, Arial
}

.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
    background: #222
}

.mejs-time {
    font-weight: 400;
    word-wrap: normal
}

.mejs-controls a.mejs-horizontal-volume-slider {
    display: table
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #fff
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    background: #0073aa
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-controls .mejs-time-rail .mejs-time-total {
    background: rgba(255, 255, 255, .33)
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-controls .mejs-time-rail span {
    border-radius: 0
}

.mejs-overlay-loading {
    background: 0 0
}

.mejs-controls button:hover {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.me-cannotplay {
    width: auto !important
}

.media-embed-details .wp-audio-shortcode {
    display: inline-block;
    max-width: 400px
}

.audio-details .embed-media-settings {
    overflow: visible
}

.media-embed-details .embed-media-settings .setting span {
    max-width: 400px;
    width: auto
}

.media-embed-details .embed-media-settings .checkbox-setting span {
    display: inline-block
}

.media-embed-details .embed-media-settings {
    padding-top: 0;
    top: 28px
}

.media-embed-details .instructions {
    padding: 16px 0;
    max-width: 600px
}

.media-embed-details .setting .remove-setting, .media-embed-details .setting p {
    color: #a00;
    font-size: 10px;
    text-transform: uppercase
}

.media-embed-details .setting .remove-setting {
    padding: 0
}

.media-embed-details .setting a:hover {
    color: #dc3232
}

.media-embed-details .embed-media-settings .checkbox-setting {
    float: none;
    margin: 0 0 10px
}

.wp-video {
    max-width: 100%;
    height: auto
}

.wp_attachment_holder .wp-audio-shortcode, .wp_attachment_holder .wp-video {
    margin-top: 18px
}

.wp-video-shortcode video, video.wp-video-shortcode {
    max-width: 100%;
    display: inline-block
}

.video-details .wp-video-holder {
    width: 100%;
    max-width: 640px
}

.wp-playlist {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.5
}

.wp-admin .wp-playlist {
    margin: 0 0 18px
}

.wp-playlist video {
    display: inline-block;
    max-width: 100%
}

.wp-playlist audio {
    display: none;
    max-width: 100%;
    width: 400px
}

.wp-playlist .mejs-container {
    margin: 0;
    max-width: 100%
}

.wp-playlist .mejs-controls .mejs-button button {
    outline: 0
}

.wp-playlist-light {
    background: #fff;
    color: #000
}

.wp-playlist-dark {
    color: #fff;
    background: #000
}

.wp-playlist-caption {
    display: block;
    max-width: 88%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item .wp-playlist-caption {
    text-decoration: none;
    color: #000;
    max-width: -webkit-calc(100% - 40px);
    max-width: calc(100% - 40px)
}

.wp-playlist-item-meta {
    display: block;
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item-title {
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item-album {
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.wp-playlist-item-artist {
    font-size: 12px;
    text-transform: uppercase
}

.wp-playlist-item-length {
    position: absolute;
    right: 3px;
    top: 0;
    font-size: 14px;
    line-height: 1.5
}

.rtl .wp-playlist-item-length {
    left: 3px;
    right: auto
}

.wp-playlist-tracks {
    margin-top: 10px
}

.wp-playlist-item {
    position: relative;
    cursor: pointer;
    padding: 0 3px;
    border-bottom: 1px solid #ccc
}

.wp-playlist-item:last-child {
    border-bottom: 0
}

.wp-playlist-light .wp-playlist-caption {
    color: #333
}

.wp-playlist-dark .wp-playlist-caption {
    color: #ddd
}

.wp-playlist-playing {
    font-weight: 700;
    background: #f7f7f7
}

.wp-playlist-light .wp-playlist-playing {
    background: #fff;
    color: #000
}

.wp-playlist-dark .wp-playlist-playing {
    background: #000;
    color: #fff
}

.wp-playlist-current-item {
    overflow: hidden;
    margin-bottom: 10px;
    height: 60px
}

.wp-playlist .wp-playlist-current-item img {
    float: left;
    max-width: 60px;
    height: auto;
    margin-right: 10px;
    padding: 0;
    border: 0
}

.rtl .wp-playlist .wp-playlist-current-item img {
    float: right;
    margin-left: 10px;
    margin-right: 0
}

.wp-playlist-current-item .wp-playlist-item-artist, .wp-playlist-current-item .wp-playlist-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.wp-audio-playlist .me-cannotplay span {
    padding: 5px 15px
}

.wblw-page .wblm-content input[type=text], .wblw-page .wblm-content input[type=email], .wblw-page .wblm-content input[type=tel], .wblw-page .wblm-content input[type=password], .wblw-page .wblm-content textarea, div.wblw input[type=text], div.wblw input[type=email], div.wblw input[type=tel], div.wblw input[type=password], div.wblw textarea {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    padding: 5px 0;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em;
    line-height: calc(30px - (5px * 2) - 2px);
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

.wblw-page .wblm-content input:focus[type=text], .wblw-page .wblm-content input:focus[type=email], .wblw-page .wblm-content input:focus[type=tel], .wblw-page .wblm-content input:focus[type=password], .wblw-page .wblm-content textarea:focus, div.wblw input:focus[type=text], div.wblw input:focus[type=email], div.wblw input:focus[type=tel], div.wblw input:focus[type=password], div.wblw textarea:focus {
    color: #000;
    border-color: #000
}

.wblw-page .wblm-content input[type=text]::-webkit-input-placeholder, .wblw-page .wblm-content input[type=email]::-webkit-input-placeholder, .wblw-page .wblm-content input[type=tel]::-webkit-input-placeholder, .wblw-page .wblm-content input[type=password]::-webkit-input-placeholder, .wblw-page .wblm-content textarea::-webkit-input-placeholder, div.wblw input[type=text]::-webkit-input-placeholder, div.wblw input[type=email]::-webkit-input-placeholder, div.wblw input[type=tel]::-webkit-input-placeholder, div.wblw input[type=password]::-webkit-input-placeholder, div.wblw textarea::-webkit-input-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase
}

.wblw-page .wblm-content input:-moz-placeholder[type=text], .wblw-page .wblm-content input:-moz-placeholder[type=email], .wblw-page .wblm-content input:-moz-placeholder[type=tel], .wblw-page .wblm-content input:-moz-placeholder[type=password], .wblw-page .wblm-content textarea:-moz-placeholder, div.wblw input:-moz-placeholder[type=text], div.wblw input:-moz-placeholder[type=email], div.wblw input:-moz-placeholder[type=tel], div.wblw input:-moz-placeholder[type=password], div.wblw textarea:-moz-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1
}

.wblw-page .wblm-content input[type=text]::-moz-placeholder, .wblw-page .wblm-content input[type=email]::-moz-placeholder, .wblw-page .wblm-content input[type=tel]::-moz-placeholder, .wblw-page .wblm-content input[type=password]::-moz-placeholder, .wblw-page .wblm-content textarea::-moz-placeholder, div.wblw input[type=text]::-moz-placeholder, div.wblw input[type=email]::-moz-placeholder, div.wblw input[type=tel]::-moz-placeholder, div.wblw input[type=password]::-moz-placeholder, div.wblw textarea::-moz-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1
}

.wblw-page .wblm-content input:-ms-input-placeholder[type=text], .wblw-page .wblm-content input:-ms-input-placeholder[type=email], .wblw-page .wblm-content input:-ms-input-placeholder[type=tel], .wblw-page .wblm-content input:-ms-input-placeholder[type=password], .wblw-page .wblm-content textarea:-ms-input-placeholder, div.wblw input:-ms-input-placeholder[type=text], div.wblw input:-ms-input-placeholder[type=email], div.wblw input:-ms-input-placeholder[type=tel], div.wblw input:-ms-input-placeholder[type=password], div.wblw textarea:-ms-input-placeholder {
    color: inherit;
    font-weight: 400;
    text-transform: uppercase
}

textarea {
    padding: 13px 25px !important;
    margin-top: 10px !important;
    font-size: 10px !important;
    text-transform: none !important;
    letter-spacing: .16em !important;
    font-weight: 400 !important
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a.active:after, #yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a:before, .wblm-pl-holder .wblm-pli .wblm-pli-rating, .wblm-pla-holder .wblm-pla-item .wblm-pla-rating, .wblm-plc-holder .wblm-plc-item .wblm-plc-rating, .wblm-pls-holder .wblm-pls-text .wblm-pls-rating, .wblm-product-info .wblm-pi-rating, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a.active:after, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a:before, .wblw .star-rating {
    font-family: Ionicons;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wblm-woocommerce-page .wblw table.cart thead tr {
    border: 0;
    border-bottom: 0 solid #ccc
}

.wblm-woocommerce-page .wblw table.cart thead tr th {
    padding: 10px 0;
    color: #000;
    text-align: left
}

.wblm-woocommerce-page .wblw table.cart tbody tr {
    border: 0
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item {
    border-bottom: 1px solid #e6e6e6
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td {
    padding: 25px 0;
    vertical-align: middle;
    text-align: inherit
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-quantity {
    text-align: center
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-remove {
    padding-left: 10px;
    padding-right: 10px;
    text-align: right
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-remove a {
    color: #000;
    font-size: 0;
    line-height: 2
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-remove a:after {
    content: "\4d";
    display: inline-block;
    vertical-align: middle;
    speak: none;
    color: #000;
    font-family: ElegantIcons;
    font-size: 24px;
    line-height: inherit;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-remove a:hover {
    color: #000
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-thumbnail {
    width: 116px;
    padding-right: 20px
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-thumbnail a, .wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-thumbnail img {
    display: block
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .variation > * {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .variation p {
    margin: 0
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons:before {
    content: 'Quantity';
    font-size: 14px;
    color: #464646;
    font-family: Montserrat, sans-serif;
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-input {
    width: 195px;
    margin: 0;
    text-align: center;
    padding-left: 73%;
    padding-right: 20px !important;
    font-family: Montserrat, sans-serif;
    color: #464646;
    font-weight: 300;
    font-size: 12px
}

@media screen and (max-width: 768px) {
    .wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-input {
        padding-left: 75%
    }
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-minus {
    bottom: 0;
    top: 0;
    right: 39px;
    position: absolute;
    border: 0;
    z-index: 100;
    height: 100%
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-minus:before {
    content: "\34";
    font-size: 18px;
    top: 25%;
    position: relative
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-plus {
    bottom: 0;
    top: 0;
    right: 12px;
    position: absolute;
    border: 0;
    z-index: 100;
    height: 100%
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item td .wblm-quantity-buttons .wblm-quantity-plus:before {
    content: "\35";
    font-size: 18px;
    top: 25%;
    position: relative
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item .product-name {
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding-right: 30px
}

.wblm-woocommerce-page .wblw table.cart tr.cart_item .product-price {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d
}

.wblm-woocommerce-page .wblw table.cart td.actions {
    padding: 35px 0 36px;
    text-align: inherit
}

.wblm-woocommerce-page .wblw table.cart td.actions button[type=submit] {
    background-color: transparent;
    color: #000;
    float: right;
    margin-top: 23px;
    padding: 0;
    border: none
}

.wblm-woocommerce-page .wblw table.cart td.actions button[type=submit]:before, .wblm-woocommerce-page .wblw table.cart td.actions button[type=submit]:hover:before {
    content: '';
    right: 0;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    position: absolute;
    left: 0;
    height: 1px;
    bottom: 2px
}

.wblm-woocommerce-page .wblw table.cart td.actions button[type=submit]:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-woocommerce-page .wblw table.cart td.actions button[type=submit]:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-woocommerce-page .wblw table.cart td.actions input[type=submit] {
    font-family: dripicons-v2 !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    background-color: #fff;
    border-color: transparent;
    color: #000;
    padding: 0;
    position: absolute;
    right: 20px;
    bottom: 10px
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses address, .wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses address {
    font-style: normal
}

.wblm-woocommerce-page .wblw table.cart td.actions .coupon {
    position: relative;
    display: inline-block
}

.wblm-woocommerce-page .wblw .wblw-cart-form > table > thead, .wblm-woocommerce-page .wblw table.cart td.actions .coupon label {
    display: none
}

.wblm-woocommerce-page .wblw table.cart td.actions .coupon input[type=text] {
    margin: 0 22px 0 0;
    padding: 18px 14px 8px 27px;
    width: 380px;
    font-family: Montserrat, sans-serif;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page .wblw table.cart td.actions .coupon .wblm-coupon-icon {
    position: absolute;
    left: 0;
    bottom: 14px;
    font-size: 15px;
    line-height: 1em;
    color: #000
}

.wblm-woocommerce-page .wblw table.cart td.actions > input {
    float: right
}

.wblm-woocommerce-page .wblw table.cart td.actions .wblm-post-read-more-button {
    margin-top: 26px
}

.wblm-woocommerce-page .wblw table.cart td.actions .wblm-post-read-more-button .wblm-btn.wblm-btn-simple {
    text-transform: capitalize
}

.wblm-woocommerce-page .wblw h2 {
    font-size: 25px;
    margin-bottom: 21px;
    text-transform: capitalize
}

.wblm-woocommerce-page .wblw .wblw-cart-form {
    width: 65%;
    float: left;
    padding-right: 58px;
    box-sizing: border-box
}

@media screen and (max-width: 1200px) {
    .wblm-woocommerce-page .wblw .wblw-cart-form {
        width: 100%
    }
}

.wblm-woocommerce-page .wblw .wblw-cart-form h2 {
    padding-top: 23px
}

.wblm-woocommerce-page .wblw .cart-collaterals {
    position: relative;
    float: right;
    margin: 110px 0;
    width: 35%;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4
}

@media screen and (max-width: 1200px) {
    .wblm-woocommerce-page .wblw .cart-collaterals {
        width: 100%
    }
}

.wblm-woocommerce-page .wblw .cart-collaterals h2 {
    position: absolute;
    top: -63px;
    display: block;
    margin: 0 0 26px -28px
}

.wblm-woocommerce-page .wblw .cart-collaterals table {
    margin: 0 0 16px
}

.wblm-woocommerce-page .wblw .cart-collaterals table tr {
    border: 0;
    border-bottom: 0 solid #ccc;
    vertical-align: baseline
}

.wblm-woocommerce-page .wblw .cart-collaterals table tr.shipping td {
    font-size: 14px;
    line-height: 32px
}

.wblm-woocommerce-page .wblw .cart-collaterals table td, .wblm-woocommerce-page .wblw .cart-collaterals table th {
    padding: 7px 0;
    text-align: left;
    vertical-align: middle
}

.wblm-woocommerce-page .wblw .cart-collaterals table td[data-title=Total] {
    text-align: right;
    padding-right: 20px;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000
}

.wblm-woocommerce-page .wblw .cart-collaterals table th {
    width: 20%;
    padding: 10px 28px 10px 0;
    border: 0;
    vertical-align: baseline;
    color: #000;
    font-size: 18px;
    font-family: Poppins, sans-serif;
    font-weight: 600
}

.wblm-woocommerce-page .wblw .cart-collaterals tr.shipping #shipping_method {
    list-style: none;
    margin: 0 0 7px
}

.wblm-woocommerce-page .wblw .cart-collaterals tr.shipping #shipping_method li {
    margin: 3px 0;
    padding: 0
}

.wblm-woocommerce-page .wblw .cart-collaterals tr.shipping #shipping_method li > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-woocommerce-page .wblw .cart-collaterals tr.shipping #shipping_method li > label {
    padding-left: 6px
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator .shipping-calculator-button {
    display: block;
    margin: 24px 0 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    text-transform: capitalize
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator .shipping-calculator-button:after {
    content: "\f107";
    position: absolute;
    display: inline-block;
    vertical-align: top;
    font-family: "Font Awesome 5 Free";
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator p {
    margin: 0 0 10px
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator p > button {
    margin: 3px 0 27px;
    width: 100%;
    font-size: 14px
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator input {
    padding: 5px 0;
    margin-bottom: 18px;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator .select2-container--default {
    text-align: left !important;
    border-bottom: 1px solid #ccc !important
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0
}

.wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    font-family: linea-arrows-10;
    font-size: 13px;
    content: "\e019"
}

.wblm-woocommerce-page .wblw .cross-sells {
    margin: 30px 0 0;
    border-top: 1px solid #ccc
}

.wblm-woocommerce-page .wblw .cross-sells > h2 {
    display: block;
    margin: 36px 0 50px;
    text-align: center
}

.wblm-woocommerce-page .wblw .cart_totals {
    margin: 24px 28px 40px
}

.wblm-woocommerce-page .wblw .cart_totals .wc-proceed-to-checkout a {
    width: 100%;
    text-align: center;
    font-size: 14px
}

.wblm-woocommerce-page .wblw .cart_totals .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 30px 0 0;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: 0
}

.wblm-woocommerce-page .cart-empty {
    position: relative;
    display: block;
    text-align: center;
    text-transform: capitalize;
    margin: 46px 0 33px;
    font-size: 38px;
    line-height: 1.1em;
    color: #000;
    font-weight: 600;
    font-family: Poppins, sans-serif
}

.wblm-woocommerce-page .return-to-shop {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 0 40px
}

.wblm-woocommerce-page .wblm-page-content-holder:not(:last-child) .wblw .cart-collaterals, .wblm-woocommerce-page .wblm-page-content-holder:not(:last-child) .wblw .wblw-cart-form {
    width: 100%
}

.wblm-woocommerce-page .checkout_coupon {
    display: block;
    margin: 0 0 34px
}

.wblm-woocommerce-page .checkout_coupon p {
    margin: 0
}

.wblm-woocommerce-page.wblw-checkout form.login {
    display: block;
    margin: 0 0 34px
}

.wblm-woocommerce-page.wblw-checkout form.login > :first-child {
    margin: 0 0 15px
}

.wblm-woocommerce-page.wblw-checkout form.login p {
    margin: 0
}

.wblm-woocommerce-page.wblw-checkout form.login input[type=checkbox] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    top: -1px;
    margin: 0 3px 0 5px
}

.wblm-woocommerce-page.wblw-checkout form.login .lost_password {
    display: block;
    margin: 15px 0 0
}

.wblm-woocommerce-page.wblw-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-transform: lowercase;
    font-size: 14px;
    letter-spacing: 0
}

.wblm-woocommerce-page .wblw-checkout .col2-set:after, .wblm-woocommerce-page .wblw-checkout .col2-set:before {
    content: '';
    display: table
}

.wblm-woocommerce-page .wblw-checkout .col2-set:after {
    clear: both
}

.wblm-woocommerce-page .wblw-checkout strong {
    font-weight: 300
}

.wblm-woocommerce-page .wblw-checkout abbr.required {
    border: none !important;
    text-decoration: none !important
}

#yith-quick-view-modal #yith-quick-view-content div.summary .price ins, #yith-quick-view-modal .wblm-single-product-summary .price ins, .wblm-pl-holder .wblm-pli .wblm-pli-price ins, .wblm-pla-holder .wblm-pla-item .wblm-pla-price ins, .wblm-plc-holder .wblm-plc-item .wblm-plc-price ins, .wblm-pls-holder .wblm-pls-text .wblm-pls-price ins, .wblm-product-single .wblm-sp-price ins, .wblm-woo-single-page #yith-quick-view-content div.summary .price ins, .wblm-woo-single-page .wblm-single-product-summary .price ins, .widget.wblw .amount ins, .widget.wblw ins, .widget.wblw li.wc-layered-nav-rating a, .wblw-wishlist table.wishlist_table tbody tr td.product-price ins, ul.products > .product .price ins {
    text-decoration: none
}

.wblm-woocommerce-page .wblw-checkout .select2-container--default {
    text-align: left !important;
    border-bottom: 1px solid #ccc !important
}

.wblm-woocommerce-page .wblw-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0
}

.wblm-woocommerce-page .wblw-checkout .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    font-family: linea-arrows-10;
    font-size: 13px;
    content: "\e019"
}

.wblm-woocommerce-page .wblw-checkout .col-1, .wblm-woocommerce-page .wblw-checkout .col-2 {
    position: relative;
    display: inline-block;
    width: 49%;
    margin-right: 1%;
    float: left;
    vertical-align: middle
}

.wblm-woocommerce-page .wblw-checkout .col-1 input[type=email], .wblm-woocommerce-page .wblw-checkout .col-1 input[type=password], .wblm-woocommerce-page .wblw-checkout .col-1 input[type=tel], .wblm-woocommerce-page .wblw-checkout .col-1 input[type=text], .wblm-woocommerce-page .wblw-checkout .col-2 input[type=email], .wblm-woocommerce-page .wblw-checkout .col-2 input[type=password], .wblm-woocommerce-page .wblw-checkout .col-2 input[type=tel], .wblm-woocommerce-page .wblw-checkout .col-2 input[type=text] {
    margin-bottom: 39px;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page .wblw-checkout .col-1 h3, .wblm-woocommerce-page .wblw-checkout .col-2 h3 {
    margin: 8px 0 25px
}

.wblm-woocommerce-page .wblw-checkout .col-1 p, .wblm-woocommerce-page .wblw-checkout .col-2 p {
    margin: 0
}

.wblm-woocommerce-page .wblw-checkout .col-1 label:not(.checkbox), .wblm-woocommerce-page .wblw-checkout .col-2 label:not(.checkbox) {
    display: block;
    margin: 5px 0;
    font-family: Poppins, sans-serif;
    font-weight: 600
}

.wblm-woocommerce-page .wblw-checkout .col-1 .form-row, .wblm-woocommerce-page .wblw-checkout .col-2 .form-row {
    width: 49%;
    margin-right: 2%;
    float: left
}

.wblm-woocommerce-page .wblw-checkout .col-1 .form-row-last, .wblm-woocommerce-page .wblw-checkout .col-2 .form-row-last {
    margin-right: 0
}

.wblm-woocommerce-page .wblw-checkout .col-1 .form-row-wide, .wblm-woocommerce-page .wblw-checkout .col-1 .form-row.notes, .wblm-woocommerce-page .wblw-checkout .col-2 .form-row-wide, .wblm-woocommerce-page .wblw-checkout .col-2 .form-row.notes {
    width: 100%
}

.wblm-woocommerce-page .wblw-checkout .col-2 {
    margin-left: 1%;
    margin-right: 0
}

.wblm-woocommerce-page .wblw-checkout .create-account {
    margin: 0 0 15px
}

.wblm-woocommerce-page .wblw-checkout .create-account input, .wblm-woocommerce-page .wblw-checkout .create-account label {
    display: inline-block;
    vertical-align: middle
}

.wblm-woocommerce-page .wblw-checkout h3#order_review_heading {
    margin: 18px 0
}

.wblm-woocommerce-page .wblw-checkout table {
    padding: 0;
    margin: 0 0 35px
}

.wblm-woocommerce-page .wblw-checkout table tr {
    border: 0;
    border-bottom: 1px solid #ccc
}

.wblm-woocommerce-page .wblw-checkout table tr.shipping #shipping_method {
    list-style: none;
    margin: 0
}

.wblm-woocommerce-page .wblw-checkout table tr.shipping #shipping_method li {
    margin: 3px 0;
    padding: 0
}

.wblm-woocommerce-page .wblw-checkout table tr.shipping #shipping_method li > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-woocommerce-page .wblw-checkout table tr.shipping #shipping_method li > label {
    padding-left: 6px
}

.wblm-woocommerce-page .wblw-checkout table td, .wblm-woocommerce-page .wblw-checkout table th {
    padding: 14px 0;
    text-align: left;
    vertical-align: middle
}

.wblm-woocommerce-page .wblw-checkout table th {
    border: 0
}

.wblm-woocommerce-page .wblw-checkout table .variation > * {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

.wblm-woocommerce-page .wblw-checkout table .variation p {
    margin: 0
}

.wblm-woocommerce-page .wblw-checkout .select2-container {
    border-radius: 0
}

.wblm-woocommerce-page .wblw-checkout input[type=checkbox], .wblm-woocommerce-page .wblw-checkout input[type=radio] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    top: -1px;
    margin: 0 3px 0 5px
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment {
    display: block;
    margin: 20px 0 70px
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul {
    list-style: none;
    margin: 0 0 35px;
    padding: 0
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li {
    padding: 14px;
    border-bottom: 1px solid #ccc
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li.wblw-info {
    margin-left: 0;
    margin-right: 0
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li.wc_payment_method.payment_method_cod {
    padding-left: 0;
    padding-right: 0
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li input, .wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li label {
    display: inline-block;
    vertical-align: middle
}

.wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li.payment_method_paypal label img {
    vertical-align: middle;
    margin: 0 8px
}

.wblm-woocommerce-page.wblw-order-received .wblw {
    display: block;
    margin: 0 0 45px
}

.wblm-woocommerce-page.wblw-order-received .wblw > p {
    display: block;
    margin: 0 0 30px
}

.wblm-woocommerce-page.wblw-order-received .wblw > h2, .wblm-woocommerce-page.wblw-order-received .wblw > header h2 {
    display: block;
    margin: 16px 0 25px
}

.wblm-woocommerce-page.wblw-order-received .wblw ul.order_details {
    list-style: none;
    margin: 0 0 30px
}

.wblm-woocommerce-page.wblw-order-received .wblw ul.order_details li {
    padding: 14px 0;
    border-bottom: 1px solid #ccc
}

.wblm-woocommerce-page.wblw-order-received .wblw ul.order_details li strong {
    color: #000;
    font-weight: 400
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table {
    padding: 0;
    margin: 0 0 35px
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table tr {
    border: 0;
    border-bottom: 1px solid #ccc
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table td, .wblm-woocommerce-page.wblw-order-received .wblw table.shop_table th {
    padding: 14px 0;
    text-align: left;
    vertical-align: middle
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table th {
    border: 0
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table .variation > * {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

.wblm-woocommerce-page.wblw-order-received .wblw table.shop_table .variation p {
    margin: 0
}

.wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both;
    margin: 0 0 15px
}

.wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-1, .wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-2 {
    position: relative;
    display: inline-block;
    width: 49%;
    margin-right: 1%;
    float: left;
    vertical-align: middle
}

.wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-2 {
    margin-left: 1%;
    margin-right: 0
}

.wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .title {
    margin: 4px 0 25px
}

.wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses h3 {
    margin: 0
}

.wblw-page .wblm-content .wc-forward:not(.added_to_cart):not(.checkout-button), .wblw-page .wblm-content a.added_to_cart, .wblw-page .wblm-content a.button, .wblw-page .wblm-content button[type=submit]:not(.wblm-search-submit), .wblw-page .wblm-content input[type=submit], div.wblw .wc-forward:not(.added_to_cart):not(.checkout-button), div.wblw a.added_to_cart, div.wblw a.button, div.wblw button[type=submit]:not(.wblm-search-submit), div.wblw input[type=submit] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 9px 46px;
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    z-index: 3;
    text-transform: capitalize
}

.wblw-page .wblm-content .wc-forward:not(.added_to_cart):not(.checkout-button):before, .wblw-page .wblm-content a.added_to_cart:before, .wblw-page .wblm-content a.button:before, .wblw-page .wblm-content button[type=submit]:not(.wblm-search-submit):before, .wblw-page .wblm-content input[type=submit]:before, div.wblw .wc-forward:not(.added_to_cart):not(.checkout-button):before, div.wblw a.added_to_cart:before, div.wblw a.button:before, div.wblw button[type=submit]:not(.wblm-search-submit):before, div.wblw input[type=submit]:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -1px;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: calc(100% + 2px);
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblw-page .wblm-content .wc-forward:not(.added_to_cart):not(.checkout-button):hover, .wblw-page .wblm-content a.added_to_cart:hover, .wblw-page .wblm-content a.button:hover, .wblw-page .wblm-content button[type=submit]:not(.wblm-search-submit):hover, .wblw-page .wblm-content input[type=submit]:hover, div.wblw .wc-forward:not(.added_to_cart):not(.checkout-button):hover, div.wblw a.added_to_cart:hover, div.wblw a.button:hover, div.wblw button[type=submit]:not(.wblm-search-submit):hover, div.wblw input[type=submit]:hover {
    color: #fff;
    background-color: #000
}

.wblw-page .wblm-content .wc-forward:not(.added_to_cart):not(.checkout-button):hover:before, .wblw-page .wblm-content a.added_to_cart:hover:before, .wblw-page .wblm-content a.button:hover:before, .wblw-page .wblm-content button[type=submit]:not(.wblm-search-submit):hover:before, .wblw-page .wblm-content input[type=submit]:hover:before, div.wblw .wc-forward:not(.added_to_cart):not(.checkout-button):hover:before, div.wblw a.added_to_cart:hover:before, div.wblw a.button:hover:before, div.wblw button[type=submit]:not(.wblm-search-submit):hover:before, div.wblw input[type=submit]:hover:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -1px;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: calc(100% + 2px);
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblw-page .wblm-content a.button.added, div.wblw a.button.added {
    display: none
}

.wblw .wblm-new-product, .wblw .wblm-onsale, .wblw .wblm-out-of-stock {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 15px;
    width: 50px;
    height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    z-index: 100;
    box-sizing: border-box;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0)
}

.wblm-woocommerce-page .wblw-error > a, .wblm-woocommerce-page .wblw-error > a:hover, .wblm-woocommerce-page .wblw-info .showcoupon, .wblm-woocommerce-page .wblw-info .showcoupon:hover, .wblm-woocommerce-page .wblw-info > a, .wblm-woocommerce-page .wblw-info > a:hover, .wblm-woocommerce-page .wblw-message > a, .wblm-woocommerce-page .wblw-message > a:hover, .wblw-pagination ul li.wblm-pag-active a {
    color: #000
}

.wblw .wblm-onsale {
    left: 1px;
    background-color: #000
}

.wblw .wblm-out-of-stock {
    right: 1px;
    background-color: #000
}

.wblw .wblm-new-product {
    left: 1px;
    background-color: #fff;
    color: #000
}

.wblw .sale .wblm-new-product {
    left: 21px
}

.wblm-woo-single-page .wblm-single-product-content .wblm-new-product, .wblm-woo-single-page .wblm-single-product-content .wblm-onsale {
    left: 10px
}

.wblm-woo-single-page .wblm-single-product-content .sale .wblm-new-product {
    left: 30px
}

.wblm-woo-single-page .wblm-single-product-content .wblm-out-of-stock {
    right: 10px
}

.wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .wblm-new-product, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .wblm-onsale {
    left: 122px
}

.wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .sale .wblm-new-product, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .sale .wblm-single-product-content .wblm-new-product {
    left: 142px
}

.wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .wblm-out-of-stock {
    right: 0
}

.wblm-woocommerce-page .wblw-error, .wblm-woocommerce-page .wblw-info, .wblm-woocommerce-page .wblw-message {
    position: relative;
    display: block;
    padding: 20px 30px;
    margin: 0 0 30px;
    line-height: 50px;
    list-style: none;
    background-color: transparent;
    border: 1px solid #ccc
}

.wblw-pagination, .wblw-pagination ul, .wblw-pagination ul li {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblm-woocommerce-page .wblw-error a, .wblm-woocommerce-page .wblw-info a, .wblm-woocommerce-page .wblw-message a {
    float: right
}

.wblw-pagination {
    width: 100%;
    clear: both;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 45px
}

.wblw-pagination ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left
}

.wblw-pagination ul li > a, .wblw-pagination ul li > span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 13px;
    padding: 0
}

.wblw-pagination ul li > a:before, .wblw-pagination ul li > span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblw-pagination ul li > a:hover:before, .wblw-pagination ul li > span:hover:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: calc(100% + 12px);
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblw-pagination ul li > a.current:after, .wblw-pagination ul li > span.current:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: calc(100% + 12px);
    left: -6px;
    right: auto;
    bottom: 0;
    background: #000;
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblw-pagination ul li:first-child > a, .wblw-pagination ul li:first-child > span {
    margin-left: 0
}

.wblw-pagination ul li:last-child > a, .wblw-pagination ul li:last-child > span {
    margin-right: 0
}

.wblw-pagination ul li.wblm-pag-active a:after {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.wblw-pagination ul li.wblm-pag-first, .wblw-pagination ul li.wblm-pag-last, .wblw-pagination ul li.wblm-pag-next, .wblw-pagination ul li.wblm-pag-prev {
    margin: 0 2px
}

.wblw-pagination ul li.wblm-pag-first a, .wblw-pagination ul li.wblm-pag-last a, .wblw-pagination ul li.wblm-pag-next a, .wblw-pagination ul li.wblm-pag-prev a {
    font-size: 24px
}

.wblw-pagination ul li.wblm-pag-first a span, .wblw-pagination ul li.wblm-pag-first a span:before, .wblw-pagination ul li.wblm-pag-last a span, .wblw-pagination ul li.wblm-pag-last a span:before, .wblw-pagination ul li.wblm-pag-next a span, .wblw-pagination ul li.wblm-pag-next a span:before, .wblw-pagination ul li.wblm-pag-prev a span, .wblw-pagination ul li.wblm-pag-prev a span:before {
    display: block;
    line-height: inherit
}

.wblw-pagination ul li.wblm-pag-first a:after, .wblw-pagination ul li.wblm-pag-first a:before, .wblw-pagination ul li.wblm-pag-last a:after, .wblw-pagination ul li.wblm-pag-last a:before, .wblw-pagination ul li.wblm-pag-next a:after, .wblw-pagination ul li.wblm-pag-next a:before, .wblw-pagination ul li.wblm-pag-prev a:after, .wblw-pagination ul li.wblm-pag-prev a:before {
    content: none;
    display: none
}

.wblw-pagination ul li a.next, .wblw-pagination ul li a.prev {
    font-size: 0;
    line-height: 0
}

.wblw-pagination ul li a.next:before, .wblw-pagination ul li a.prev:before {
    display: block;
    font-family: ElegantIcons;
    font-size: 22px;
    line-height: 23px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wblw-pagination ul li a.next:after, .wblw-pagination ul li a.prev:after {
    content: '';
    display: none
}

.wblw-pagination ul li a.prev {
    margin-right: 3px
}

.wblw-pagination ul li a.prev:before {
    content: "\34"
}

.wblw-pagination ul li a.next {
    margin-left: 3px
}

.wblw-pagination ul li a.next:before {
    content: "\35"
}

.wblw .star-rating span:before, .wblw .star-rating:before {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblw-page .wblm-content .wblm-quantity-buttons, div.wblw .wblm-quantity-buttons {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-input, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus, div.wblw .wblm-quantity-buttons .wblm-quantity-input, div.wblw .wblm-quantity-buttons .wblm-quantity-minus, div.wblw .wblm-quantity-buttons .wblm-quantity-plus {
    display: inline-block;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #d3d3d3;
    text-align: center;
    box-sizing: border-box
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-input, div.wblw .wblm-quantity-buttons .wblm-quantity-input {
    position: relative;
    height: 50px;
    width: 50px;
    padding: 0;
    margin: 0 25px 0 0;
    font-family: Poppins, sans-serif;
    line-height: 48px;
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    outline: 0
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus, div.wblw .wblm-quantity-buttons .wblm-quantity-minus, div.wblw .wblm-quantity-buttons .wblm-quantity-plus {
    position: absolute;
    right: 0;
    width: 25px;
    height: 25px;
    line-height: 23px;
    border-left: 0;
    cursor: pointer;
    color: #464646;
    -webkit-transition: color .15s ease-in-out;
    -moz-transition: color .15s ease-in-out;
    transition: color .15s ease-in-out
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus:hover, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus:hover, div.wblw .wblm-quantity-buttons .wblm-quantity-minus:hover, div.wblw .wblm-quantity-buttons .wblm-quantity-plus:hover {
    color: #000
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus, div.wblw .wblm-quantity-buttons .wblm-quantity-plus {
    top: 0;
    border-bottom: 0
}

.wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus, div.wblw .wblm-quantity-buttons .wblm-quantity-minus {
    bottom: 0
}

.wblw-page .wblm-content .coupon input[type=text], div.wblw .coupon input[type=text] {
    width: 200px
}

.wblm-woocommerce-page aside.wblm-sidebar .widget:first-child {
    margin-top: 7px
}

.wblm-woocommerce-page .wblw-ordering, .wblm-woocommerce-page .wblw-result-count {
    display: inline;
    width: 50%;
    margin: 0 0 12px;
    float: left
}

.wblm-woocommerce-page .wblw-result-count {
    line-height: 30px;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

.wblm-woocommerce-page .wblw-ordering {
    text-align: right
}

@media screen and (max-width: 680px) {
    .wblm-woocommerce-page .wblw-ordering {
        text-align: left
    }
}

.wblm-woocommerce-page .wblw-ordering .select2-container--default {
    text-align: right
}

@media screen and (max-width: 680px) {
    .wblm-woocommerce-page .wblw-ordering .select2-container--default {
        text-align: left
    }
    .wblm-woo-normal-space ul.products > .product{
        width: 45% !important;
    }
}

.wblm-woocommerce-page .wblw-ordering .select2-container--default .select2-selection__rendered {
    padding-right: 30px
}

.wblm-woocommerce-page .wblw-ordering .orderby {
    width: auto;
    min-width: calc(66% - 15px);
    margin: 0;
    text-align: initial
}

.wblm-woocommerce-page .wblw-ordering .select2 {
    margin-bottom: 0
}

.wblm-woocommerce-page .cart-collaterals .wblw-shipping-calculator .select2-container--default {
    width: 100% !important;
    margin: 0 0 14px
}

.wblw .star-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblw .star-rating:before {
    color: #a8a8a8
}

.wblw .star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-content, .wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: left;
    box-sizing: border-box
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation {
    width: 17%;
    padding: 0 15px 0 0
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul {
    padding: 0 15px 0 0;
    margin: 0;
    list-style: none
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    font-size: 14px
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul li:not(:last-child) {
    margin: 0 0 7px
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul li a {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 14px
}

.wblm-woocommerce-page.wblw-account .wblw-MyAccount-content {
    width: 83%;
    padding: 0 0 0 30px
}

.wblm-woocommerce-page.wblw-account .wblw {
    margin: 0 0 45px
}

.wblm-woocommerce-page.wblw-account .wblw form.login {
    margin: 0 0 34px
}

.wblm-woocommerce-page.wblw-account .wblw form.login p {
    margin: 0
}

.wblm-woocommerce-page.wblw-account .wblw form.login p label {
    font-size: 18px;
    color: #000;
    font-weight: 500
}

.wblm-woocommerce-page.wblw-account .wblw form.login .lost_password a, .wblm-woocommerce-page.wblw-account .wblw form.login .wblw-form__label-for-checkbox > span {
    color: #3d3d3d;
    font-weight: 300
}

.wblm-woocommerce-page.wblw-account .wblw form.login p.wblm-login-form-text {
    margin: 0 0 7px
}

.wblm-woocommerce-page.wblw-account .wblw form.login input[type=checkbox] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    top: -1px;
    margin: 0 3px 0 5px
}

.wblm-woocommerce-page.wblw-account .wblw form.login .lost_password {
    display: block;
    margin: 15px 0 0
}

.wblm-woocommerce-page.wblw-account .wblw form.login input[type=email], .wblm-woocommerce-page.wblw-account .wblw form.login input[type=password], .wblm-woocommerce-page.wblw-account .wblw form.login input[type=tel], .wblm-woocommerce-page.wblw-account .wblw form.login input[type=text] {
    margin-bottom: 39px;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account {
    margin: 0 0 15px
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account p {
    margin: 0
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account p > span {
    top: -25px;
    position: relative;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account p > span > em {
    text-transform: lowercase
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account label {
    display: block;
    margin: 0 0 5px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account input[type=email], .wblm-woocommerce-page.wblw-account .wblw form.edit-account input[type=password], .wblm-woocommerce-page.wblw-account .wblw form.edit-account input[type=tel], .wblm-woocommerce-page.wblw-account .wblw form.edit-account input[type=text] {
    margin-bottom: 39px;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .16em
}

.wblm-woocommerce-page.wblw-account .wblw form.edit-account fieldset > legend {
    padding: 40px 0 30px;
    display: block;
    font-family: Poppins, sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 21px
}

.wblm-woocommerce-page.wblw-account .wblw > p {
    display: block;
    margin: 0 0 30px
}

.wblm-woocommerce-page.wblw-account .wblw > h2, .wblm-woocommerce-page.wblw-account .wblw > header h2 {
    display: block;
    margin: 16px 0 25px
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table {
    padding: 0;
    margin: 0 0 35px
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table tr {
    border: 0;
    border-bottom: 1px solid #ccc
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table td, .wblm-woocommerce-page.wblw-account .wblw table.shop_table th {
    padding: 14px 0;
    text-align: left;
    vertical-align: middle
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table th {
    border: 0
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table td.order-actions {
    text-align: right
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table .variation > * {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

.wblm-woocommerce-page.wblw-account .wblw table.shop_table .variation p {
    margin: 0
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both;
    margin: 0 0 15px
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-1, .wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-2 {
    position: relative;
    display: inline-block;
    width: 49%;
    margin-right: 1%;
    float: left;
    vertical-align: middle
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-2 {
    margin-left: 1%;
    margin-right: 0
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .title {
    margin: 4px 0 25px
}

.wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses h3 {
    margin: 0
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw > h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 25px
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw form.login {
    margin: 0
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw form.login p {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw form.login p label:not(.inline) {
    display: block;
    margin: 14px 0;
    color: #000;
    font-size: 18px;
    line-height: 38px
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw form.login p label.inline {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 23px 0 0
}

.wblm-woocommerce-page.wblw-account .vc_row .wblw form.login p input.button {
    margin: 23px 0 0
}

.wblm-woocommerce-page.wblw-account.wblw-edit-address .wblw > form {
    margin: 0 0 15px
}

.wblm-woocommerce-page.wblw-account.wblw-edit-address .wblw > form > :first-child {
    margin: 0 0 25px
}

.wblm-woocommerce-page.wblw-account.wblw-edit-address .wblw > form p {
    margin: 0
}

.wblm-woocommerce-page.wblw-account.wblw-edit-address .wblw > form label {
    display: block;
    margin: 0 0 5px
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblm-default-page-template {
    height: 100vh
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking.wblm-header-top-enabled .wblm-default-page-template {
    height: calc(100vh - 46px)
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw {
    margin: 0 0 45px
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order {
    display: block;
    margin: 0 0 60px
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order > p:not(.form-row) {
    display: block;
    margin: 0 0 28px;
    font-size: 16px;
    color: #000
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-first, .wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-last {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-first label, .wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-last label {
    display: block;
    margin: 14px 0;
    color: #000;
    font-size: 18px;
    line-height: 38px;
    font-weight: 600;
    font-family: Poppins, sans-serif
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-first .input-text, .wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .form-row-last .input-text {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .16em
}

.wblm-woocommerce-page.wblm-woocommerce-order-tracking .wblw > .track_order .button {
    margin: 13px 0 0
}

.cross-sells, .wblm-content .wblw, .wblm-pl-main-holder, .related.products, .upsells.products {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-top: 80px;
}

.wblm-woo-pl-info-on-image-hover .wblm-pl-main-holder {
    margin: 0 0 50px
}

ul.products {
    list-style: none;
    margin: 0 -15px;
    clear: both
}

ul.products > .product {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: left;
    margin: 0 0 30px;
    padding: 0 15px;
    box-sizing: border-box
}

ul.products > .product > .yith-wcqv-button {
    display: none !important
}

.touch ul.products > .product {
    cursor: pointer
}

#yith-quick-view-modal .wblm-single-product-content .images .wblw-product-gallery__image .zoomImg, .wblm-woo-single-page .wblm-single-product-content .images .wblw-product-gallery__image .zoomImg, div.wblw > .single-product .images .wblw-product-gallery__image .zoomImg {
    cursor: crosshair
}

ul.products > .product:hover .wblm-pl-inner .wblm-pl-text {
    opacity: 1
}

ul.products > .product .wblm-product-list-title {
    float: left;
    width: 55%;
    margin: 0;
    line-height: 21px
}

ul.products > .product .wblm-product-list-title a {
    font-weight: 500
}

ul.products > .product .wblm-pl-category {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px;
    float: left;
    width: 100%;
    margin: 4px 0 0
}

ul.products > .product .wblm-pl-category a {
    position: relative;
    color: black;
}

ul.products > .product .wblm-pl-category a:before, ul.products > .product .wblm-pl-category a:hover:before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    left: 0
}

ul.products > .product .wblm-pl-category a:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

ul.products > .product .wblm-pl-category a:hover:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

ul.products > .product .price {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    color: inherit;
    font-size: 14px;
    line-height: 21px;
    float: right;
    width: 45%;
    margin: 0;
    text-align: right
}

ul.products > .product .price * {
    font-size: inherit;
    line-height: inherit
}

ul.products > .product .price del {
    color: #a5a5a5;
    margin-right: 8px
}

ul.products > .product .wblm-pl-rating-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 10px 0 3px
}

ul.products > .product .added_to_cart, ul.products > .product .button {
    margin: 25px 0 0
}

.wblm-woo-pl-info-below-image ul.products > .product .added_to_cart, .wblm-woo-pl-info-below-image ul.products > .product .button {
    margin: 0
}

ul.products > .product .button.added {
    display: none
}

ul.products > .product .wblm-pl-inner, ul.products > .product .wblm-pl-inner .wblm-pl-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    z-index:998;
    /* text-align: center; */
}

ul.products > .product .wblm-pl-inner {
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

ul.products > .product .wblm-pl-inner img {
    backface-visibility: hidden;
    transform-origin: top;
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

ul.products > .product .wblm-pl-inner:hover img {
    transform: scale(1.06) translate3d(-3%, 0, 0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

ul.products > .product .wblm-pl-inner .wblm-pl-image img {
    display: block;
    width: 100%;
    height: 200px;
    /* align-items: center; */
    text-align: center;
    object-fit: contain;
    margin: 0 auto;
}

ul.products > .product .wblm-pl-inner .wblm-pl-text {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    opacity: 0;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

ul.products > .product .wblm-pl-inner .wblm-pl-text-outer {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    text-align: center
}

ul.products > .product .wblm-pl-inner .wblm-pl-text-inner {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

ul.products > .product .wblm-pl-inner .wblm-pl-text-inner .wblm-product-list-title, ul.products > .product .wblm-pl-inner .wblm-pl-text-inner .price, ul.products > .product .wblm-pl-inner .wblm-pl-text-inner .star-rating {
    color: #fff
}

ul.products > .product .wblm-pl-inner .wblm-pl-text-inner .price del {
    color: rgba(255, 255, 255, .8)
}

ul.products > .product .wblm-pl-inner > a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

ul.products > .product .wblm-pl-inner > .wblm-pl-text {
    padding: 30px;
    background-color: rgba(0, 0, 0, .6)
}

ul.products > .product .wblm-pl-inner > .wblm-pl-text .wblm-product-list-title, ul.products > .product .wblm-pl-inner > .wblm-pl-text .price {
    float: initial;
    text-align: center;
    width: 100%
}

ul.products > .product .wblm-pl-text-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 20px 0 20px;
    min-height:70px;
}

.wblm-woo-pl-info-on-image-hover .wblm-pl-text {
    background-color: rgba(255, 255, 255, .6)
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text {
    padding: 0
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder {
    position: absolute;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-direction: row-reverse;
    padding: 0 8px;
    bottom: -1px;
    right: -1px;
    background-color: #fff;
    z-index: 111;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .35s cubic-bezier(.34, .18, 0, .9);
    -moz-transition: transform .35s cubic-bezier(.34, .18, 0, .9);
    transition: transform .35s cubic-bezier(.34, .18, 0, .9)
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist {
    bottom: 0
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder .added_to_cart, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple {
    height: 43px;
    width: 18px;
    z-index: 300;
    overflow: hidden;
    padding: 0 8px;
    color: #000;
    font-size: 0;
    vertical-align: bottom;
    margin: 0;
    border: 0;
    box-sizing: initial;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder .added_to_cart:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder .added_to_cart:before, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button:before, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:before, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button:before, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external:before, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple:before {
    content: initial;
    color: inherit
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder .added_to_cart:hover, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button:hover, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:hover, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button:hover, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external:hover, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple:hover {
    opacity: .8
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple {
    bottom: 0;
    right: -1px;
    display: inline-block;
    background: 0 0;
    box-sizing: content-box
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button.added, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external.added, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple.added {
    display: none
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.add_to_cart_button:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_external:after, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > a.button.product_type_simple:after {
    font-family: Ionicons;
    content: "\f110";
    font-size: 19px;
    line-height: 42px;
    font-weight: 500
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .added_to_cart {
    color: unset;
    background-color: unset;
    font-weight: unset
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-quickview-button:before {
    content: "\f06e";
    font-size: 17px;
    line-height: 43px;
    font-family: FontAwesome
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a {
    height: 100%
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a:before {
    font-size: 16px;
    line-height: 45px;
    padding: 0;
    margin: 0
}

.wblm-woo-pl-info-below-image ul.products .wblm-pl-inner:hover .wblm-pl-text .wblm-pl-text-inner .wblm-pl-icons-holder {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0)
}

.wblm-woo-no-space ul.products {
    margin: 0
}

.wblm-woo-no-space ul.products > .product {
    padding: 0;
    margin: 0
}

.wblm-woo-tiny-space ul.products {
    margin: 0 -5px
}

.wblm-woo-tiny-space ul.products > .product {
    padding: 0 5px;
    margin: 0 0 10px
}

.wblm-woo-small-space ul.products {
    margin: 0 -10px
}

.wblm-woo-small-space ul.products > .product {
    padding: 0 10px;
    margin: 0 0 20px
}

.wblm-woo-normal-space ul.products {
    margin: 0 -15px
}

.wblm-woo-normal-space ul.products > .product {
    padding: 0 15px;
    margin: 0 0 30px;
    width: 23.3333%;
}

.wblm-woo-medium-space ul.products {
    margin: 0 -20px
}

.wblm-woo-medium-space ul.products > .product {
    padding: 0 20px;
    margin: 0 0 40px
}

.wblm-woo-large-space ul.products {
    margin: 0 -25px
}

.wblm-woo-large-space ul.products > .product {
    padding: 0 25px;
    margin: 0 0 50px
}

@media only screen and (min-width: 1025px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product, .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-3 .related.products > .products > .product, .wblm-woocommerce-columns-3 .upsells.products > .products > .product {
        width: 33.33333%
    }

    .wblm-woocommerce-columns-3 .cross-sells > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .related.products > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .upsells.products > .products > .product:nth-child(3n+1) {
        clear: both
    }

    .wblm-woocommerce-columns-4 .cross-sells > .products > .product, .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-4 .related.products > .products > .product, .wblm-woocommerce-columns-4 .upsells.products > .products > .product {
        width: 25%
    }

    .wblm-woocommerce-columns-4 .cross-sells > .products > .product:nth-child(4n+1), .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product:nth-child(4n+1), .wblm-woocommerce-columns-4 .related.products > .products > .product:nth-child(4n+1), .wblm-woocommerce-columns-4 .upsells.products > .products > .product:nth-child(4n+1), .wblw.columns-4 > .products > .product:nth-child(4n+1) {
        clear: both
    }
}

.wblw.columns-1 > .products > .product {
    float: none;
    width: 100%
}

.wblw.columns-2 > .products > .product {
    width: 50%
}

@media only screen and (min-width: 681px) {
    .wblw.columns-2 > .products > .product:nth-child(2n+1) {
        clear: both
    }
    .wblm-woo-normal-space ul.products > .product {
        /* width:45%; */
    }
}

.wblw.columns-3 > .products > .product {
    width: 33.33333%
}

.wblw.columns-4 > .products > .product {
    width: 25%
}

.wblw.columns-5 > .products > .product {
    width: 20%
}

@media only screen and (min-width: 1201px) {
    .wblw.columns-5 > .products > .product:nth-child(5n+1) {
        clear: both
    }
}

.wblw.columns-6 > .products > .product {
    width: 16.66667%
}

@media only screen and (min-width: 1441px) {
    .wblw.columns-6 > .products > .product:nth-child(6n+1) {
        clear: both
    }
}

.wblm-content .wblw.add_to_cart_inline {
    margin: 0;
    width: auto
}

.wblm-content .wblw.add_to_cart_inline del, .wblm-content .wblw.add_to_cart_inline ins {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px 0 0;
    color: #000;
    font-size: 16px;
    line-height: 1
}

div.wblw > .products > .product-category a {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

div.wblw > .products > .product-category a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease
}

div.wblw > .products > .product-category a:hover:after {
    opacity: 1
}

div.wblw > .products > .product-category a:hover .wblw-loop-category__title {
    top: 50%;
    opacity: 1
}

div.wblw > .products > .product-category img {
    display: block
}

div.wblw > .products > .product-category .wblw-loop-category__title {
    position: absolute;
    top: 60%;
    left: 0;
    display: block;
    width: 100%;
    padding: 0 10%;
    margin: 0;
    color: #fff;
    text-align: center;
    z-index: 2;
    opacity: 0;
    -webkit-filter: blur(0);
    box-sizing: border-box;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease, top .2s ease;
    -moz-transition: opacity .2s ease, top .2s ease;
    transition: opacity .2s ease, top .2s ease
}

div.wblw > .products > .product-category .wblw-loop-category__title .count {
    font-size: .9em;
    color: #fff;
    background-color: transparent
}

div.wblw > .single-product .images {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0
}

div.wblw > .single-product .images figure {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 -10px
}

div.wblw > .single-product .images figure a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

div.wblw > .single-product .images figure a img {
    position: relative;
    width: 100%;
    display: block
}

div.wblw > .single-product .images .wblw-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    z-index: 10
}

div.wblw > .single-product .images .wblw-product-gallery__image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box
}

div.wblw > .single-product .wblw-tabs, div.wblw > .single-product .wblw-tabs ul.tabs, div.wblw > .single-product .wblw-tabs ul.tabs > li {
    vertical-align: middle;
    position: relative;
    display: inline-block
}

div.wblw > .single-product .images .wblw-product-gallery__image:first-child {
    left: 10px;
    width: calc(100% - 20px);
    padding: 0
}

div.wblw > .single-product .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
    float: left;
    padding-top: 20px
}

div.wblw > .single-product .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:not(:first-child) {
    width: 50%
}

div.wblw > .single-product .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:not(:first-child) {
    width: 33.33333%
}

div.wblw > .single-product .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child) {
    width: 25%
}

div.wblw > .single-product .wblw-tabs {
    width: 100%;
    margin: 30px 0 0
}

div.wblw > .single-product .wblw-tabs ul.tabs {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    clear: both
}

div.wblw > .single-product .wblw-tabs ul.tabs > li a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 13px 15px
}

div.wblw > .single-product .wblw-tabs .entry-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

div.wblw > .single-product .wblw-tabs .entry-content > h2 {
    display: none
}

div.wblw > .single-product .wblw-tabs .entry-content > p, div.wblw > .single-product .wblw-tabs table {
    margin: 18px 0 20px
}

div.wblw > .single-product .wblw-tabs table th, div.wblw > .single-product .wblw-tabs table tr {
    border: 0
}

div.wblw > .single-product .wblw-tabs table td, div.wblw > .single-product .wblw-tabs table th {
    padding: 3px 0;
    vertical-align: middle;
    text-align: left
}

div.wblw > .single-product .wblw-tabs table td p, div.wblw > .single-product .wblw-tabs table th p {
    margin: 0
}

div.wblw > .single-product .wblw-tabs table th {
    color: #000;
    width: 1%;
    padding: 0 10px 0 0
}

div.wblw > .single-product .wblw-tabs table td {
    width: 99%
}

div.wblw > .single-product .wblw-tabs #reviews, div.wblw > .single-product .wblw-tabs #reviews ol.commentlist .comment_container {
    width: 100%;
    position: relative;
    display: inline-block;
    vertical-align: middle
}

div.wblw > .single-product .wblw-tabs #reviews {
    margin: 18px 0 20px
}

div.wblw > .single-product .wblw-tabs #reviews h2 {
    font-size: 18px;
    line-height: 24px;
    margin: 8px 0 24px
}

div.wblw > .single-product .wblw-tabs #reviews ol.commentlist {
    list-style: none
}

div.wblw > .single-product .wblw-tabs #reviews ol.commentlist .comment_container img {
    float: left;
    width: 60px
}

div.wblw > .single-product .wblw-tabs #reviews ol.commentlist .comment-text {
    padding: 0 0 0 80px
}

div.wblw > .single-product .wblw-tabs #reviews ol.commentlist .comment-text div[itemprop=description] {
    padding: 0;
    margin: 0 0 15px;
    border: 0
}

div.wblw > .single-product .wblw-tabs #reviews ol.commentlist .comment-text p {
    margin: 5px 0 0
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond {
    margin-top: 15px
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond .comment-reply-title {
    margin: 0 0 10px
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond p {
    margin: 0
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond .stars {
    overflow: hidden
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond .stars a {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 0;
    margin: 0
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond .stars a:before {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-family: ElegantIcons;
    content: "\e031";
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    overflow: hidden;
    z-index: -1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

div.wblw > .single-product .wblw-tabs #reviews .comment-respond .stars a.active:after {
    position: absolute;
    right: 0;
    bottom: 7px;
    display: block;
    font-family: ElegantIcons;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    content: "\e033\e033\e033\e033\e033";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

div.wblw > .single-product .related.products, div.wblw > .single-product .upsells.products {
    margin: 30px 0 0;
    border-top: 1px solid #ccc
}

div.wblw > .single-product .related.products > h2, div.wblw > .single-product .upsells.products > h2 {
    display: block;
    margin: 36px 0 50px;
    text-align: center
}

div.wblw > .single-product .related.products .product .wblm-pl-text-wrapper, div.wblw > .single-product .upsells.products .product .wblm-pl-text-wrapper {
    margin-bottom: 0
}

.wblm-woo-single-page .entry-summary .yith-wcwl-add-button a, .wblm-woo-single-page .entry-summary .yith-wcwl-wishlistaddedbrowse a, .wblm-woo-single-page .entry-summary .yith-wcwl-wishlistexistsbrowse a {
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: Poppins, sans-serif
}

@media only screen and (min-width: 769px) {
    .wblw.columns-3 > .products > .product:nth-child(3n+1) {
        clear: both
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images figure, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images figure {
        width: 100%;
        margin: 0;
        overflow: hidden
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images .wblw-product-gallery__image:first-child, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images .wblw-product-gallery__image:first-child {
        left: 121px;
        width: calc(100% - 121px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
        position: absolute;
        top: 0;
        left: 0;
        width: 111px;
        padding: 0 0 10px;
        box-sizing: border-box
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img {
        height: 100%
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:not(:first-child) {
        height: calc(50% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(3n) {
        top: calc(50% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(4n) {
        top: calc(100% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(5n) {
        top: calc(150% + 15px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(6n) {
        top: calc(200% + 20px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(7n) {
        top: calc(250% + 25px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(8n) {
        top: calc(300% + 30px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:nth-child(9n) {
        top: calc(350% + 35px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:not(:first-child) {
        height: calc(33.33333% + 3.33px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(3n) {
        top: calc(33.33333% + 3.33px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(4n) {
        top: calc(66.66667% + 6.67px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(5n) {
        top: calc(100% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(6n) {
        top: calc(133.33333% + 13.33px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(7n) {
        top: calc(166.66667% + 16.67px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(8n) {
        top: calc(200% + 20px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:nth-child(9n) {
        top: calc(233.33333% + 23.33px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child) {
        height: calc(25% + 2.5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(3n) {
        top: calc(25% + 2.5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(4n) {
        top: calc(50% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(5n) {
        top: calc(75% + 7.5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(6n) {
        top: calc(100% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(7n) {
        top: calc(125% + 12.5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(8n) {
        top: calc(150% + 15px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:nth-child(9n) {
        top: calc(175% + 17.5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:not(:first-child) {
        height: calc(20% + 2px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(3n) {
        top: calc(20% + 2px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(4n) {
        top: calc(40% + 4px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(5n) {
        top: calc(60% + 6px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(6n) {
        top: calc(80% + 8px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(7n) {
        top: calc(100% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(8n) {
        top: calc(120% + 12px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:nth-child(9n) {
        top: calc(140% + 14px)
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblw-tabs ul.tabs > li a, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblw-tabs ul.tabs > li a {
    padding: 13px 16px
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner {
    width: 100%;
    padding-top: 0
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content {
    margin: 0 0 -5px
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
    width: 34%;
    padding: 54px 65px 0 35px
}

@media only screen and (max-width: 1366px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
        width: 47%
    }
}

@media screen and (max-width: 1200px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
        width: 100% !important;
        padding: 0 30px !important
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
        width: 100% !important;
        padding: 0 10px 0 0 !important
    }
}

@media screen and (max-width: 680px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
        padding: 0 30px !important
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
    width: 66%
}

@media only screen and (max-width: 1366px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
        width: 53%
    }
}

@media only screen and (min-width: 320px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure {
        width: 100%;
        margin: 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child {
        float: left;
        left: 0;
        width: 50%;
        padding: 0 0 10px 10px
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
        position: relative;
        width: 50%;
        height: auto;
        float: left;
        padding: 0 0 10px 10px
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img {
        height: 100%
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n) {
        top: calc(25% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n) {
        top: calc(50% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n) {
        top: calc(75% + 15px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n) {
        top: calc(100% + 20px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n) {
        top: calc(125% + 25px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n) {
        top: calc(150% + 30px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n) {
        top: calc(175% + 35px)
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .related.products, #yith-quick-view-modal.wblm-woo-single-thumb-full-width-gallery .upsells.products, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .related.products, .wblm-woo-single-page.wblm-woo-single-thumb-full-width-gallery .upsells.products {
    padding: 0 10px;
    box-sizing: border-box
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info.wblm-woo-single-info-inside-summary .wblm-single-product-content, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info.wblm-woo-single-info-inside-summary .wblm-single-product-content {
    margin: 0 0 13px
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .related.products > h2, #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .upsells.products > h2, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .related.products > h2, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .upsells.products > h2 {
    margin: 50px 0 32px
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner {
    width: 100%;
    padding-top: 0
}

@media screen and (max-width: 1200px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
        width: 100% !important;
        padding: 0 10px !important
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
        width: 100% !important;
        padding: 0 10px 0 0 !important
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
    width: 50%;
    padding: 0 0 0 30px;
    max-width: 610px
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary {
    padding-top: 43px;
    box-sizing: border-box
}

@media only screen and (max-width: 1440px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary {
        padding-right: 100px
    }
}

@media only screen and (max-width: 1280px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary {
        padding-right: 80px
    }
}

@media only screen and (max-width: 1024px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .entry-summary {
        padding-right: 0
    }
}

@media only screen and (min-width: 1025px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .wblw-tabs .entry-content, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary .wblw-tabs .entry-content {
        max-height: 200px;
        overflow: hidden;
        overflow-y: auto
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
    width: 50%
}

@media only screen and (min-width: 768px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure {
        width: 100%;
        margin: 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child {
        float: none;
        left: 0;
        width: 100%;
        padding: 0 10px
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
        position: relative;
        width: 100%;
        height: auto;
        float: none;
        padding: 10px 10px 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img {
        height: 100%
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n) {
        top: calc(25% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n) {
        top: calc(50% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n) {
        top: calc(75% + 15px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n) {
        top: calc(100% + 20px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n) {
        top: calc(125% + 25px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n) {
        top: calc(150% + 30px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n) {
        top: calc(175% + 35px)
    }
}

@media screen and (max-width: 1024px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image {
        width: 100% !important;
        padding-right: 0 !important
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .related.products, #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .upsells.products, #yith-quick-view-modal.wblm-woo-single-thumb-sticky-info .wblw-tabs, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .related.products, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .upsells.products, .wblm-woo-single-page.wblm-woo-single-thumb-sticky-info .wblw-tabs {
    padding: 0 10px;
    box-sizing: border-box
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .related.products > h2, #yith-quick-view-modal.wblm-woo-single-thumb-large-images .upsells.products > h2, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .related.products > h2, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .upsells.products > h2 {
    margin: 50px 0 32px
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblw-tabs ul.tabs > li a, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblw-tabs ul.tabs > li a {
    padding: 13px 16px
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner {
    padding-top: 80px
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content {
    margin: 0 0 20px
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary {
    width: 46%;
    padding: 4px 0 0 35px
}

@media screen and (max-width: 1200px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
        width: 100% !important;
        padding: 0 !important
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images {
    width: 54%
}

@media only screen and (min-width: 320px) {
    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images figure {
        width: 100%;
        margin: 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images .wblw-product-gallery__image:first-child {
        float: none;
        left: 0;
        width: 100%;
        padding: 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
        position: relative;
        width: 100%;
        height: auto;
        float: none;
        padding: 10px 0 0
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a, .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) a img {
        height: 100%
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(2n) {
        top: calc(0% + 0px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(3n) {
        top: calc(25% + 5px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(4n) {
        top: calc(50% + 10px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(5n) {
        top: calc(75% + 15px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(6n) {
        top: calc(100% + 20px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(7n) {
        top: calc(125% + 25px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(8n) {
        top: calc(150% + 30px)
    }

    #yith-quick-view-modal.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n), .wblm-woo-single-page.wblm-woo-single-thumb-large-images .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:nth-child(9n) {
        top: calc(175% + 35px)
    }
}

#yith-quick-view-modal.wblm-woo-single-thumb-large-images.wblm-woo-single-info-inside-summary .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content, .wblm-woo-single-page.wblm-woo-single-thumb-large-images.wblm-woo-single-info-inside-summary .wblm-content .wblm-content-inner > .wblm-container > .wblm-container-inner .wblm-single-product-content {
    margin: 0 0 14px
}

#yith-quick-view-modal .product, .wblm-woo-single-page .product {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    float: none;
    margin: 0 0 50px
}

#yith-quick-view-modal .wblm-single-product-content, .wblm-woo-single-page .wblm-single-product-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both;
    margin: 0 0 20px
}

#yith-quick-view-modal .wblm-single-product-content .images, .wblm-woo-single-page .wblm-single-product-content .images {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 62%;
    margin: 0;
    padding: 0 30px 0 0;
    float: left;
    box-sizing: border-box
}

#yith-quick-view-modal .wblm-single-product-content .images figure, .wblm-woo-single-page .wblm-single-product-content .images figure {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 -10px
}

#yith-quick-view-modal .wblm-single-product-content .images figure a, .wblm-woo-single-page .wblm-single-product-content .images figure a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

#yith-quick-view-modal .wblm-single-product-content .images figure a img, .wblm-woo-single-page .wblm-single-product-content .images figure a img {
    position: relative;
    width: 100%;
    display: block
}

#yith-quick-view-modal .wblm-single-product-content .images .wblw-product-gallery__trigger, .wblm-woo-single-page .wblm-single-product-content .images .wblw-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 39px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    z-index: 10
}

#yith-quick-view-modal .wblm-single-product-content .images .wblw-product-gallery__image, .wblm-woo-single-page .wblm-single-product-content .images .wblw-product-gallery__image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box
}

#yith-quick-view-modal .wblm-single-product-content .images .wblw-product-gallery__image:first-child, .wblm-woo-single-page .wblm-single-product-content .images .wblw-product-gallery__image:first-child {
    left: 10px;
    width: calc(100% - 20px);
    padding: 0
}

#yith-quick-view-modal .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--with-images .wblw-product-gallery__image:not(:first-child) {
    float: left;
    padding-top: 20px
}

#yith-quick-view-modal .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--columns-2 .wblw-product-gallery__image:not(:first-child) {
    width: 50%
}

#yith-quick-view-modal .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--columns-3 .wblw-product-gallery__image:not(:first-child) {
    width: 33.33333%
}

#yith-quick-view-modal .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child) {
    width: 25%
}

#yith-quick-view-modal .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--columns-5 .wblw-product-gallery__image:not(:first-child) {
    width: 20%
}

#yith-quick-view-modal #yith-quick-view-content div.summary, #yith-quick-view-modal .wblm-single-product-summary, .wblm-woo-single-page #yith-quick-view-content div.summary, .wblm-woo-single-page .wblm-single-product-summary {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 38%;
    padding: 0 0 0 21px;
    float: left;
    box-sizing: border-box
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-single-product-title, #yith-quick-view-modal .wblm-single-product-summary .wblm-single-product-title, .wblm-woo-single-page #yith-quick-view-content div.summary .wblm-single-product-title, .wblm-woo-single-page .wblm-single-product-summary .wblm-single-product-title {
    display: block;
    margin: 4px 0 16px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .price, #yith-quick-view-modal .wblm-single-product-summary .price, .wblm-woo-single-page #yith-quick-view-content div.summary .price, .wblm-woo-single-page .wblm-single-product-summary .price {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    display: block;
    margin: 14px 0 0;
    line-height: 1;
    color: #000
}

#yith-quick-view-modal #yith-quick-view-content div.summary .price *, #yith-quick-view-modal .wblm-single-product-summary .price *, .wblm-woo-single-page #yith-quick-view-content div.summary .price *, .wblm-woo-single-page .wblm-single-product-summary .price * {
    font-size: inherit;
    line-height: inherit
}

#yith-quick-view-modal #yith-quick-view-content div.summary .price del, #yith-quick-view-modal .wblm-single-product-summary .price del, .wblm-woo-single-page #yith-quick-view-content div.summary .price del, .wblm-woo-single-page .wblm-single-product-summary .price del {
    font-weight: 500;
    font-size: 15px;
    margin-right: 8px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating, #yith-quick-view-modal .wblm-single-product-summary .wblw-product-rating, .wblm-woo-single-page #yith-quick-view-content div.summary .wblw-product-rating, .wblm-woo-single-page .wblm-single-product-summary .wblw-product-rating {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 16px 0 3px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating .star-rating, #yith-quick-view-modal .wblm-single-product-summary .wblw-product-rating .star-rating, .wblm-woo-single-page #yith-quick-view-content div.summary .wblw-product-rating .star-rating, .wblm-woo-single-page .wblm-single-product-summary .wblw-product-rating .star-rating {
    font-size: 22px;
    letter-spacing: .15em
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating .wblw-review-link, #yith-quick-view-modal .wblm-single-product-summary .wblw-product-rating .wblw-review-link, .wblm-woo-single-page #yith-quick-view-content div.summary .wblw-product-rating .wblw-review-link, .wblm-woo-single-page .wblm-single-product-summary .wblw-product-rating .wblw-review-link {
    font-size: 16px;
    vertical-align: text-top;
    margin-left: 4px;
    line-height: 24px;
    font-family: Montserrat, sans-serif
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-details__short-description, #yith-quick-view-modal .wblm-single-product-summary .wblw-product-details__short-description, .wblm-woo-single-page #yith-quick-view-content div.summary .wblw-product-details__short-description, .wblm-woo-single-page .wblm-single-product-summary .wblw-product-details__short-description {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 47px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-details__short-description p, #yith-quick-view-modal .wblm-single-product-summary .wblw-product-details__short-description p, .wblm-woo-single-page #yith-quick-view-content div.summary .wblw-product-details__short-description p, .wblm-woo-single-page .wblm-single-product-summary .wblw-product-details__short-description p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: #2d2d2d
}

#yith-quick-view-modal #yith-quick-view-content div.summary .product_meta, #yith-quick-view-modal .wblm-single-product-summary .product_meta, .wblm-woo-single-page #yith-quick-view-content div.summary .product_meta, .wblm-woo-single-page .wblm-single-product-summary .product_meta {
    margin: 52px 0 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .29em;
    color: #3d3d3d
}

#yith-quick-view-modal #yith-quick-view-content div.summary .product_meta > span, #yith-quick-view-modal .wblm-single-product-summary .product_meta > span, .wblm-woo-single-page #yith-quick-view-content div.summary .product_meta > span, .wblm-woo-single-page .wblm-single-product-summary .product_meta > span {
    display: block;
    margin: 3px 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .product_meta > span a, #yith-quick-view-modal #yith-quick-view-content div.summary .product_meta > span a:hover, #yith-quick-view-modal .wblm-single-product-summary .product_meta > span a, #yith-quick-view-modal .wblm-single-product-summary .product_meta > span a:hover, .wblm-woo-single-page #yith-quick-view-content div.summary .product_meta > span a, .wblm-woo-single-page #yith-quick-view-content div.summary .product_meta > span a:hover, .wblm-woo-single-page .wblm-single-product-summary .product_meta > span a, .wblm-woo-single-page .wblm-single-product-summary .product_meta > span a:hover {
    color: #000
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-woo-social-share-holder, #yith-quick-view-modal .wblm-single-product-summary .wblm-woo-social-share-holder, .wblm-woo-single-page #yith-quick-view-content div.summary .wblm-woo-social-share-holder, .wblm-woo-single-page .wblm-single-product-summary .wblm-woo-social-share-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-woo-social-share-holder > *, #yith-quick-view-modal .wblm-single-product-summary .wblm-woo-social-share-holder > *, .wblm-woo-single-page #yith-quick-view-content div.summary .wblm-woo-social-share-holder > *, .wblm-woo-single-page .wblm-single-product-summary .wblm-woo-social-share-holder > * {
    display: table-cell;
    vertical-align: top
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-woo-social-share-holder > span, #yith-quick-view-modal .wblm-single-product-summary .wblm-woo-social-share-holder > span, .wblm-woo-single-page #yith-quick-view-content div.summary .wblm-woo-social-share-holder > span, .wblm-woo-single-page .wblm-single-product-summary .wblm-woo-social-share-holder > span {
    padding: 0 9px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary p.stock.in-stock, #yith-quick-view-modal #yith-quick-view-content div.summary p.stock.out-of-stock, #yith-quick-view-modal .wblm-single-product-summary p.stock.in-stock, #yith-quick-view-modal .wblm-single-product-summary p.stock.out-of-stock, .wblm-woo-single-page #yith-quick-view-content div.summary p.stock.in-stock, .wblm-woo-single-page #yith-quick-view-content div.summary p.stock.out-of-stock, .wblm-woo-single-page .wblm-single-product-summary p.stock.in-stock, .wblm-woo-single-page .wblm-single-product-summary p.stock.out-of-stock {
    color: #000;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.8em;
    font-weight: 600;
    font-family: Poppins, sans-serif
}

#yith-quick-view-modal #yith-quick-view-content div.summary form.cart, #yith-quick-view-modal .wblm-single-product-summary form.cart, .wblm-woo-single-page #yith-quick-view-content div.summary form.cart, .wblm-woo-single-page .wblm-single-product-summary form.cart {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 57px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-quantity-buttons, #yith-quick-view-modal .wblm-single-product-summary .wblm-quantity-buttons, .wblm-woo-single-page #yith-quick-view-content div.summary .wblm-quantity-buttons, .wblm-woo-single-page .wblm-single-product-summary .wblm-quantity-buttons {
    margin: 0 15px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .grouped_form button.button, #yith-quick-view-modal .wblm-single-product-summary .grouped_form button.button, .wblm-woo-single-page #yith-quick-view-content div.summary .grouped_form button.button, .wblm-woo-single-page .wblm-single-product-summary .grouped_form button.button {
    width: 100%
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table, #yith-quick-view-modal .wblm-single-product-summary table.group_table, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table, .wblm-woo-single-page .wblm-single-product-summary table.group_table {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    border: none;
    padding: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tbody, #yith-quick-view-modal .wblm-single-product-summary table.group_table tbody, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tbody, .wblm-woo-single-page .wblm-single-product-summary table.group_table tbody {
    display: block
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr:first-child, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr:first-child, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr:first-child, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr:first-child {
    border-top: 1px solid #ccc
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    flex-flow: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-top: 0;
    font-size: 14px
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity {
    order: 3;
    margin: 0;
    padding: 0 12px
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-input, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-input, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-input, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-input {
    width: 56px;
    height: 48px;
    left: 1px;
    line-height: 48px;
    margin: 0;
    padding: 0 !important;
    border: 0;
    font-size: 13px;
    font-family: Montserrat, sans-serif;
    font-weight: 300
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0;
    z-index: 100
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus:before, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus:before, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus:before, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-minus:before {
    content: "\34";
    font-size: 15px
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0;
    z-index: 100
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus:before, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus:before, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus:before, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr td.wblw-grouped-product-list-item__quantity .wblm-quantity-buttons .wblm-quantity-plus:before {
    content: "\35";
    font-size: 15px
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table td.wblw-grouped-product-list-item__label, #yith-quick-view-modal .wblm-single-product-summary table.group_table td.wblw-grouped-product-list-item__label, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table td.wblw-grouped-product-list-item__label, .wblm-woo-single-page .wblm-single-product-summary table.group_table td.wblw-grouped-product-list-item__label {
    order: 1;
    margin: 0;
    padding: 0 20px;
    width: 30%;
    text-align: left
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table td.wblw-grouped-product-list-item__price, #yith-quick-view-modal .wblm-single-product-summary table.group_table td.wblw-grouped-product-list-item__price, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table td.wblw-grouped-product-list-item__price, .wblm-woo-single-page .wblm-single-product-summary table.group_table td.wblw-grouped-product-list-item__price {
    order: 2;
    margin: 0;
    padding: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table tr:last-child, #yith-quick-view-modal .wblm-single-product-summary table.group_table tr:last-child, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table tr:last-child, .wblm-woo-single-page .wblm-single-product-summary table.group_table tr:last-child {
    margin: 0 0 20px;
    border-bottom: 1px solid #ccc
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table p.stock.in-stock, #yith-quick-view-modal #yith-quick-view-content div.summary table.group_table p.stock.out-of-stock, #yith-quick-view-modal .wblm-single-product-summary table.group_table p.stock.in-stock, #yith-quick-view-modal .wblm-single-product-summary table.group_table p.stock.out-of-stock, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table p.stock.in-stock, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table p.stock.out-of-stock, .wblm-woo-single-page .wblm-single-product-summary table.group_table p.stock.in-stock, .wblm-woo-single-page .wblm-single-product-summary table.group_table p.stock.out-of-stock {
    display: inline
}

#yith-quick-view-modal #yith-quick-view-content div.summary table.group_table .wblm-quantity-buttons, #yith-quick-view-modal .wblm-single-product-summary table.group_table .wblm-quantity-buttons, .wblm-woo-single-page #yith-quick-view-content div.summary table.group_table .wblm-quantity-buttons, .wblm-woo-single-page .wblm-single-product-summary table.group_table .wblm-quantity-buttons {
    margin: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations, #yith-quick-view-modal .wblm-single-product-summary .variations, .wblm-woo-single-page #yith-quick-view-content div.summary .variations, .wblm-woo-single-page .wblm-single-product-summary .variations {
    position: relative;
    display: table;
    vertical-align: middle;
    margin: 0;
    border: none;
    padding: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations tr, #yith-quick-view-modal .wblm-single-product-summary .variations tr, .wblm-woo-single-page #yith-quick-view-content div.summary .variations tr, .wblm-woo-single-page .wblm-single-product-summary .variations tr {
    border: 1px solid #ccc;
    line-height: 48px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations tr:last-child, #yith-quick-view-modal .wblm-single-product-summary .variations tr:last-child, .wblm-woo-single-page #yith-quick-view-content div.summary .variations tr:last-child, .wblm-woo-single-page .wblm-single-product-summary .variations tr:last-child {
    margin: 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations td, #yith-quick-view-modal .wblm-single-product-summary .variations td, .wblm-woo-single-page #yith-quick-view-content div.summary .variations td, .wblm-woo-single-page .wblm-single-product-summary .variations td {
    padding: 0;
    text-align: initial
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations td.label, #yith-quick-view-modal .wblm-single-product-summary .variations td.label, .wblm-woo-single-page #yith-quick-view-content div.summary .variations td.label, .wblm-woo-single-page .wblm-single-product-summary .variations td.label {
    color: #464646;
    padding: 0 20px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations td.value, #yith-quick-view-modal .wblm-single-product-summary .variations td.value, .wblm-woo-single-page #yith-quick-view-content div.summary .variations td.value, .wblm-woo-single-page .wblm-single-product-summary .variations td.value {
    color: #464646;
    white-space: nowrap;
    padding: 0 12px;
    text-align: right
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations td.value select, #yith-quick-view-modal .wblm-single-product-summary .variations td.value select, .wblm-woo-single-page #yith-quick-view-content div.summary .variations td.value select, .wblm-woo-single-page .wblm-single-product-summary .variations td.value select {
    width: auto;
    min-width: 200px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations td.value .select2-container--default, #yith-quick-view-modal .wblm-single-product-summary .variations td.value .select2-container--default, .wblm-woo-single-page #yith-quick-view-content div.summary .variations td.value .select2-container--default, .wblm-woo-single-page .wblm-single-product-summary .variations td.value .select2-container--default {
    color: #464646;
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 300
}

#yith-quick-view-modal #yith-quick-view-content div.summary .variations .reset_variations, #yith-quick-view-modal .wblm-single-product-summary .variations .reset_variations, .wblm-woo-single-page #yith-quick-view-content div.summary .variations .reset_variations, .wblm-woo-single-page .wblm-single-product-summary .variations .reset_variations {
    margin: 0 0 0 15px;
    color: #000;
    display: none !important
}

#yith-quick-view-modal #yith-quick-view-content div.summary .single_variation_wrap, #yith-quick-view-modal .wblm-single-product-summary .single_variation_wrap, .wblm-woo-single-page #yith-quick-view-content div.summary .single_variation_wrap, .wblm-woo-single-page .wblm-single-product-summary .single_variation_wrap {
    margin: 35px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .single_variation_wrap .single_variation, #yith-quick-view-modal .wblm-single-product-summary .single_variation_wrap .single_variation, .wblm-woo-single-page #yith-quick-view-content div.summary .single_variation_wrap .single_variation, .wblm-woo-single-page .wblm-single-product-summary .single_variation_wrap .single_variation {
    margin: 0 0 35px
}

#yith-quick-view-modal .wblw-tabs, .wblm-woo-single-page .wblw-tabs {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 34px 0 0
}

#yith-quick-view-modal .wblw-tabs ul.tabs, .wblm-woo-single-page .wblw-tabs ul.tabs {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    clear: both;
    font-size: 0
}

#yith-quick-view-modal .wblw-tabs ul.tabs:after, .wblm-woo-single-page .wblw-tabs ul.tabs:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ccc;
    height: 1px;
    z-index: -1
}

#yith-quick-view-modal .wblw-tabs ul.tabs > li, .wblm-woo-single-page .wblw-tabs ul.tabs > li {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

#yith-quick-view-modal .wblw-tabs ul.tabs > li a, .wblm-woo-single-page .wblw-tabs ul.tabs > li a {
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 13px 26px
}

#yith-quick-view-modal .wblw-tabs ul.tabs > li a:before, .wblm-woo-single-page .wblw-tabs ul.tabs > li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

#yith-quick-view-modal .wblw-tabs ul.tabs > li.active a:before, #yith-quick-view-modal .wblw-tabs ul.tabs > li:hover a:before, .wblm-woo-single-page .wblw-tabs ul.tabs > li.active a:before, .wblm-woo-single-page .wblw-tabs ul.tabs > li:hover a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

#yith-quick-view-modal .wblw-tabs .entry-content, .wblm-woo-single-page .wblw-tabs .entry-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    min-height: 156px
}

#yith-quick-view-modal .wblw-tabs .entry-content > h2, .wblm-woo-single-page .wblw-tabs .entry-content > h2 {
    display: none
}

#yith-quick-view-modal .wblw-tabs .entry-content > p, .wblm-woo-single-page .wblw-tabs .entry-content > p {
    margin: 32px 0 20px;
    line-height: 26px
}

#yith-quick-view-modal .wblw-tabs table, .wblm-woo-single-page .wblw-tabs table {
    margin: 32px 0 20px
}

#yith-quick-view-modal .wblw-tabs table th, #yith-quick-view-modal .wblw-tabs table tr, .wblm-woo-single-page .wblw-tabs table th, .wblm-woo-single-page .wblw-tabs table tr {
    border: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .16em
}

#yith-quick-view-modal .wblw-tabs table td, #yith-quick-view-modal .wblw-tabs table th, .wblm-woo-single-page .wblw-tabs table td, .wblm-woo-single-page .wblw-tabs table th {
    padding: 0;
    vertical-align: middle;
    text-align: left
}

#yith-quick-view-modal .wblw-tabs table td p, #yith-quick-view-modal .wblw-tabs table th p, .wblm-woo-single-page .wblw-tabs table td p, .wblm-woo-single-page .wblw-tabs table th p {
    margin: 0
}

#yith-quick-view-modal .wblw-tabs table th, .wblm-woo-single-page .wblw-tabs table th {
    color: #000;
    width: 1%;
    padding: 0 10px 0 0
}

#yith-quick-view-modal .wblw-tabs table td, .wblm-woo-single-page .wblw-tabs table td {
    width: 99%
}

#yith-quick-view-modal .wblw-tabs #reviews, .wblm-woo-single-page .wblw-tabs #reviews {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 32px 0 20px
}

#yith-quick-view-modal .wblw-tabs #reviews h2, .wblm-woo-single-page .wblw-tabs #reviews h2 {
    font-size: 25px;
    line-height: 1.12em;
    color: #000;
    margin: 0 0 51px
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist {
    list-style: none
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist li, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist li {
    margin: 0 0 50px
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text p, #yith-quick-view-modal .wblw-tabs #reviews ol.commentlist li:last-child, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text p, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist li:last-child {
    margin: 0
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment_container, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment_container {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment_container img, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment_container img {
    float: left;
    width: 103px;
    border-radius: 50%
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text {
    padding: 0 0 0 131px
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text .star-rating, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text .star-rating {
    float: right
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__author, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__author {
    font-size: 18px;
    font-weight: 600;
    display: block;
    line-height: 1.33em;
    font-family: Poppins, sans-serif;
    color: #000
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__dash, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__dash {
    display: none
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__published-date, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text p .wblw-review__published-date {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

#yith-quick-view-modal .wblw-tabs #reviews ol.commentlist .comment-text .description, .wblm-woo-single-page .wblw-tabs #reviews ol.commentlist .comment-text .description {
    margin: 12px 0 0;
    line-height: 26px
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond {
    margin-top: 113px
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-reply-title, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-reply-title {
    font-size: 25px;
    line-height: 1.12em;
    color: #000;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    margin: 0 0 10px
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond p, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond p {
    margin: 0
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond label, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating {
    margin: 17px 0
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars {
    overflow: hidden;
    margin-top: -10px
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 0;
    margin: 0
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a:before, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a:before {
    color: #a8a8a8;
    content: "\f4b3";
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    z-index: -1
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a.active:after, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-rating .stars a.active:after {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3";
    position: absolute;
    right: 0;
    display: block;
    bottom: 4px
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-author, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-author {
    float: left;
    width: 49%;
    padding-right: 2%
}

#yith-quick-view-modal .wblw-tabs #reviews .comment-respond .comment-form-email, .wblm-woo-single-page .wblw-tabs #reviews .comment-respond .comment-form-email {
    float: left;
    width: 49%
}

#yith-quick-view-modal .related.products, #yith-quick-view-modal .upsells.products, .wblm-woo-single-page .related.products, .wblm-woo-single-page .upsells.products {
    margin: 30px 0 0
}

#yith-quick-view-modal .related.products > h2, #yith-quick-view-modal .upsells.products > h2, .wblm-woo-single-page .related.products > h2, .wblm-woo-single-page .upsells.products > h2 {
    font-size: 25px;
    line-height: 1.12em;
    color: #000;
    display: block;
    text-align: left;
    margin: 25px 0 53px
}

#yith-quick-view-modal .related.products .product .wblm-pl-image img, #yith-quick-view-modal .upsells.products .product .wblm-pl-image img, .wblm-woo-single-page .related.products .product .wblm-pl-image img, .wblm-woo-single-page .upsells.products .product .wblm-pl-image img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.54, .01, .58, 1);
    -moz-transition: -moz-transform .4s cubic-bezier(.54, .01, .58, 1);
    transition: transform .4s cubic-bezier(.54, .01, .58, 1)
}

#yith-quick-view-modal .related.products .product .wblm-pl-text, #yith-quick-view-modal .upsells.products .product .wblm-pl-text, .wblm-woo-single-page .related.products .product .wblm-pl-text, .wblm-woo-single-page .upsells.products .product .wblm-pl-text {
    opacity: 1;
    background: 0 0
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-direction: row-reverse;
    padding: 0 8px;
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: #fff;
    z-index: 111;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 1.1s cubic-bezier(.38, .13, .17, .84);
    -moz-transition: all 1.1s cubic-bezier(.38, .13, .17, .84);
    transition: all 1.1s cubic-bezier(.38, .13, .17, .84)
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist {
    bottom: 0
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist {
    height: 43px;
    width: 18px;
    z-index: 300;
    overflow: hidden;
    padding: 0 8px;
    font-size: 0;
    vertical-align: bottom;
    margin: 0;
    border: 0;
    box-sizing: initial
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:before, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:after, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:before, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:after, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:before, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:after, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:after, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .add_to_cart_button:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .product_type_external:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist:before {
    content: initial
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external {
    bottom: 0;
    right: -1px;
    display: inline-block;
    background-color: #fff;
    background-image: url(/wp-content/themes/onea/assets/img/cart-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button.added, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external.added, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button.added, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external.added, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button.added, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external.added, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .add_to_cart_button.added, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .product_type_external.added {
    display: none
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart {
    color: unset;
    background-color: unset;
    font-weight: unset
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-quickview-button:before {
    content: "\f06e";
    font-size: 17px;
    line-height: 43px;
    font-family: FontAwesome
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div, #yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a {
    height: 100%
}

#yith-quick-view-modal .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a:before, #yith-quick-view-modal .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a:before, .wblm-woo-single-page .related.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a:before, .wblm-woo-single-page .upsells.products .product .wblm-pl-text .wblm-pl-icons-holder > .yith-wcwl-add-to-wishlist > div a:before {
    font-size: 16px;
    line-height: 45px;
    padding: 0;
    margin: 0
}

#yith-quick-view-modal .related.products .product:hover .wblm-pl-image img, #yith-quick-view-modal .upsells.products .product:hover .wblm-pl-image img, .wblm-woo-single-page .related.products .product:hover .wblm-pl-image img, .wblm-woo-single-page .upsells.products .product:hover .wblm-pl-image img {
    -webkit-transform: translateX(-5px) scale(1.06);
    -moz-transform: translateX(-5px) scale(1.06);
    transform: translateX(-5px) scale(1.06)
}

#yith-quick-view-modal .related.products .product:hover .wblm-pl-icons-holder, #yith-quick-view-modal .upsells.products .product:hover .wblm-pl-icons-holder, .wblm-woo-single-page .related.products .product:hover .wblm-pl-icons-holder, .wblm-woo-single-page .upsells.products .product:hover .wblm-pl-icons-holder {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0)
}

#yith-quick-view-modal .related.products .product .wblm-pl-text-wrapper, #yith-quick-view-modal .upsells.products .product .wblm-pl-text-wrapper, .wblm-woo-single-page .related.products .product .wblm-pl-text-wrapper, .wblm-woo-single-page .upsells.products .product .wblm-pl-text-wrapper {
    margin-bottom: 0
}

.wblm-shopping-cart-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin: 0 10px
}

.touch .wblm-shopping-cart-holder {
    cursor: pointer
}

.wblm-shopping-cart-holder .wblm-shopping-cart-inner {
    position: relative;
    display: table;
    height: 100%
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-text-holder:before, .wblm-shopping-cart-holder .wblm-header-cart:hover .wblm-cart-text-holder:before {
    content: '';
    left: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    right: 0;
    bottom: 0
}

.wblm-shopping-cart-holder .wblm-header-cart {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    line-height: 1;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    letter-spacing: .01em
}

.wblm-shopping-cart-holder .wblm-header-cart:hover .wblm-cart-text-holder:before {
    position: absolute;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-text-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 23px
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-text-holder:before {
    position: absolute;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px
}

.wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-icon-pack .wblm-cart-icon {
    font-size: 22px;
    line-height: 1em
}

.wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-icon-pack .wblm-cart-icon *, .wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-icon-pack .wblm-cart-icon :before {
    display: block;
    line-height: inherit
}

.wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-svg-path .wblm-cart-icon > * {
    vertical-align: middle
}

.wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-svg-path .wblm-cart-icon path, .wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-svg-path .wblm-cart-icon > * {
    fill: currentColor
}

.wblm-shopping-cart-holder .wblm-header-cart.wblm-header-cart-svg-path .wblm-cart-number {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%)
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-quantity, .wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-total-amount {
    display: inline-block;
    vertical-align: middle
}

.wblm-shopping-cart-holder .wblm-header-cart .wblm-cart-quantity:after {
    content: '/';
    margin: 0 0 0 3px
}

.wblm-shopping-cart-holder:hover .wblm-shopping-cart-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-shopping-cart-holder .wblm-header-cart {
    color: #000
}

.wblm-dark-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-shopping-cart-holder .wblm-header-cart:hover {
    color: rgba(0, 0, 0, .9)
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-shopping-cart-holder .wblm-header-cart {
    color: #fff
}

.wblm-light-header .wblm-page-header > div:not(.wblm-sticky-header):not(.fixed) .wblm-shopping-cart-holder .wblm-header-cart:hover {
    color: rgba(255, 255, 255, .9)
}

.wblm-shopping-cart-dropdown {
    position: absolute;
    top: calc(100% + 50px);
    left: auto;
    right: 0;
    width: 297px;
    background-color: #fff;
    text-align: left;
    /* z-index: 1000; */
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .03);
    -webkit-transition: all .35s cubic-bezier(.53, .01, .18, 1);
    -moz-transition: all .35s cubic-bezier(.53, .01, .18, 1);
    transition: all .35s cubic-bezier(.53, .01, .18, 1);
}

.wblm-shopping-cart-dropdown ul {
    margin: 30px;
    padding: 0
}

.wblm-shopping-cart-dropdown ul li {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    padding: 0 0 20px;
    box-sizing: border-box
}

.wblm-shopping-cart-dropdown ul li.wblm-empty-cart {
    color: initial;
    border-bottom: 0
}

.wblm-shopping-cart-dropdown ul li:first-child {
    padding-top: 0
}

.wblm-shopping-cart-dropdown ul li:last-child {
    padding-bottom: 0
}

.wblm-shopping-cart-dropdown .wblm-item-image-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 77px;
    vertical-align: top
}

.wblm-shopping-cart-dropdown .wblm-item-image-holder img {
    display: block
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding-left: 16px
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .wblm-product-title {
    display: block;
    margin: 0;
    padding: 0 20px 0 0;
    box-sizing: border-box
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .remove {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 22px;
    line-height: 1
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .remove span, .wblm-shopping-cart-dropdown .wblm-item-info-holder .remove span:before {
    display: block;
    line-height: inherit
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .amount, .wblm-shopping-cart-dropdown .wblm-item-info-holder .wblm-quantity {
    display: inline-block;
    margin: 3px 0 0;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .wblm-quantity:after {
    content: 'X';
    font-size: 11px
}

.wblm-shopping-cart-dropdown .wblm-item-info-holder .wblw-Price-currencySymbol {
    position: relative;
    top: -.5em;
    font-size: 7px
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 13px
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-subtotal-holder {
    position: relative;
    display: table;
    width: 100%;
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 600
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-subtotal-holder > * {
    display: table-cell;
    vertical-align: top;
    color: #000;
    line-height: 20px
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-subtotal-holder .wblm-total-amount {
    text-align: right;
    font-size: 16px
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-subtotal-holder .wblm-total-amount .wblw-Price-currencySymbol {
    position: relative;
    top: -.5em;
    font-size: 11px
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-checkout {
    float: left
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-cart {
    float: right
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-cart, .wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-checkout {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 0 !important;
    color: #000 !important;
    background-color: transparent !important;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-cart:before, .wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-checkout:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-cart:hover:before, .wblm-shopping-cart-dropdown .wblm-cart-bottom .wblm-view-checkout:hover:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-vertical-menu-area .wblm-shopping-cart-holder {
    margin: 0
}

.wblm-vertical-menu-area .wblm-shopping-cart-holder .wblm-shopping-cart-dropdown {
    display: none !important
}

.widget.wblw {
    clear: both
}

.widget.wblw li {
    position: relative
}

.widget.wblw .product-title {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px
}

.widget.wblw li:not(.wc-layered-nav-rating) .star-rating span {
    max-width: 100px
}

.widget.wblw .amount {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    color: inherit;
    font-size: 13px;
    line-height: 24px;
    margin: 0
}

.widget.wblw .amount * {
    font-size: inherit;
    line-height: inherit
}

.widget.wblw .amount del {
    color: #a5a5a5;
    margin-right: 8px
}

.widget.wblw .amount span {
    color: inherit
}

.widget.wblw del {
    display: block;
    margin-right: 8px;
    color: rgba(45, 45, 45, .3)
}

.widget.wblw del span, .widget.wblw ins span {
    color: inherit
}

.widget.wblw ins {
    display: block
}

.widget.wblw.widget_layered_nav .chosen a {
    color: #000
}

.widget.wblw.widget_price_filter {
    margin: 0 0 43px
}

.widget.wblw.widget_price_filter .wblm-widget-title {
    margin: 0 0 30px
}

.widget.wblw.widget_price_filter form {
    margin-top: 20px
}

.widget.wblw.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #000;
    height: 1px;
    position: relative
}

.widget.wblw.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
    height: 11px;
    margin: 0 0 0 -1px;
    outline: 0;
    position: absolute;
    top: -5px;
    width: 11px;
    z-index: 2
}

.widget.wblw.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-child {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.widget.wblw.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
    background-color: #000;
    display: block;
    height: 3px;
    position: absolute;
    top: -1px;
    z-index: 1
}

.widget.wblw.widget_price_filter .price_slider_amount .button:before, .widget.wblw.widget_price_filter .price_slider_amount .button:hover:before {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    height: 1px;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    left: 0;
    width: 100%
}

.widget.wblw.widget_price_filter .price_slider_amount {
    margin: 12px 0 0
}

.widget.wblw.widget_price_filter .price_slider_amount .button {
    float: right;
    line-height: 30px;
    font-size: 15px;
    padding: 0 !important;
    color: #000;
    background-color: transparent;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle
}

.widget.wblw.widget_price_filter .price_slider_amount .button:before {
    background-color: currentColor;
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.widget.wblw.widget_price_filter .price_slider_amount .button:hover {
    color: #000;
    background-color: transparent
}

.widget.wblw.widget_price_filter .price_slider_amount .button:hover:before {
    background-color: currentColor;
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.widget.wblw.widget_price_filter .price_slider_amount .price_label {
    float: left;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 30px
}

.widget.wblw.widget_price_filter .price_slider_amount .price_label > span {
    color: #2d2d2d
}

.widget.wblw.widget_products, .widget.wblw.widget_recent_reviews, .widget.wblw.widget_recently_viewed_products, .widget.wblw.widget_shopping_cart, .widget.wblw.widget_top_rated_products {
    margin: 0 0 50px
}

.widget.wblw.widget_products .wblm-widget-title, .widget.wblw.widget_recent_reviews .wblm-widget-title, .widget.wblw.widget_recently_viewed_products .wblm-widget-title, .widget.wblw.widget_shopping_cart .wblm-widget-title, .widget.wblw.widget_top_rated_products .wblm-widget-title {
    margin: 0 0 32px
}

.widget.wblw.widget_products ul li, .widget.wblw.widget_recent_reviews ul li, .widget.wblw.widget_recently_viewed_products ul li, .widget.wblw.widget_shopping_cart ul li, .widget.wblw.widget_top_rated_products ul li {
    min-height: 72px;
    position: relative;
    display: table;
    margin: 0 0 20px;
    font-size: 0
}

.widget.wblw.widget_products ul li:last-child, .widget.wblw.widget_recent_reviews ul li:last-child, .widget.wblw.widget_recently_viewed_products ul li:last-child, .widget.wblw.widget_shopping_cart ul li:last-child, .widget.wblw.widget_top_rated_products ul li:last-child {
    margin: 0
}

.widget.wblw.widget_products ul li a img, .widget.wblw.widget_recent_reviews ul li a img, .widget.wblw.widget_recently_viewed_products ul li a img, .widget.wblw.widget_shopping_cart ul li a img, .widget.wblw.widget_top_rated_products ul li a img {
    left: 0;
    max-width: 72px;
    position: absolute;
    top: 0;
    width: 100%;
    max-height: 72px;
    object-fit: cover
}

.widget.wblw.widget_products ul li a span, .widget.wblw.widget_recent_reviews ul li a span, .widget.wblw.widget_recently_viewed_products ul li a span, .widget.wblw.widget_shopping_cart ul li a span, .widget.wblw.widget_top_rated_products ul li a span {
    box-sizing: border-box;
    display: block;
    padding: 0 0 0 92px;
    position: relative
}

.widget.wblw.widget_products ul li > :not(a), .widget.wblw.widget_recent_reviews ul li > :not(a), .widget.wblw.widget_recently_viewed_products ul li > :not(a), .widget.wblw.widget_shopping_cart ul li > :not(a), .widget.wblw.widget_top_rated_products ul li > :not(a) {
    clear: both;
    float: left;
    margin: 0 0 0 92px
}

.widget.wblw.widget_products ul li > span.quantity span, .widget.wblw.widget_recent_reviews ul li > span.quantity span, .widget.wblw.widget_recently_viewed_products ul li > span.quantity span, .widget.wblw.widget_shopping_cart ul li > span.quantity span, .widget.wblw.widget_top_rated_products ul li > span.quantity span {
    float: right;
    margin-left: 3px
}

.widget.wblw.widget_products ul li .star-rating, .widget.wblw.widget_recent_reviews ul li .star-rating, .widget.wblw.widget_recently_viewed_products ul li .star-rating, .widget.wblw.widget_shopping_cart ul li .star-rating, .widget.wblw.widget_top_rated_products ul li .star-rating {
    margin-bottom: 5px
}

.widget.wblw.widget_products ul li .reviewer, .widget.wblw.widget_recent_reviews ul li .reviewer, .widget.wblw.widget_recently_viewed_products ul li .reviewer, .widget.wblw.widget_shopping_cart ul li .reviewer, .widget.wblw.widget_top_rated_products ul li .reviewer {
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 400
}

.widget.wblw.widget_products ul li > del, .widget.wblw.widget_recent_reviews ul li > del, .widget.wblw.widget_recently_viewed_products ul li > del, .widget.wblw.widget_shopping_cart ul li > del, .widget.wblw.widget_top_rated_products ul li > del {
    margin-right: 9px
}

.widget.wblw.widget_products ul li > ins, .widget.wblw.widget_recent_reviews ul li > ins, .widget.wblw.widget_recently_viewed_products ul li > ins, .widget.wblw.widget_shopping_cart ul li > ins, .widget.wblw.widget_top_rated_products ul li > ins {
    clear: initial;
    margin: 0
}

.widget.wblw.widget_recent_reviews ul li a span {
    padding: 0
}

.widget.wblw.widget_recent_reviews a, .widget.wblw.widget_shopping_cart a {
    display: block;
    padding: 0 0 0 92px;
    font-size: 15px;
    line-height: 1.33em;
    color: #000
}

.widget.wblw.widget_shopping_cart .remove {
    font-size: 0;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    right: -15px;
    top: 3px;
    text-decoration: none;
    padding: 0
}

.widget.wblw.widget_shopping_cart .remove:after {
    content: "\4d";
    display: block;
    font-family: ElegantIcons;
    font-size: 15px;
    line-height: 15px;
    position: relative
}

.widget.wblw.widget_shopping_cart .variation {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.widget.wblw.widget_shopping_cart .variation > * {
    display: inline-block;
    margin: 0;
    vertical-align: middle
}

.widget.wblw.widget_shopping_cart .variation > * p {
    margin: 0
}

.widget.wblw.widget_shopping_cart .total {
    margin: 17px 0 13px
}

.widget.wblw.widget_shopping_cart .buttons .button {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 0 !important;
    color: #000 !important;
    background-color: transparent !important;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle
}

.widget.wblw.widget_shopping_cart .buttons .button:before, .widget.wblw.widget_shopping_cart .buttons .button:hover:before {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    height: 1px;
    background-color: inherit;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    width: 100%;
    left: 0
}

.widget.wblw.widget_shopping_cart .buttons .button:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.widget.wblw.widget_shopping_cart .buttons .button:hover:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.widget.wblw.widget_shopping_cart .buttons .button:first-child {
    float: right
}

.widget.wblw.widget_shopping_cart .buttons .button:last-child {
    float: left
}

.widget.wblw.widget_product_tag_cloud .wblm-widget-title {
    margin: 0 0 26px
}

.widget.wblw.widget_product_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: inherit;
    background-color: transparent;
    font-size: 10px !important;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 18px
}

.widget.wblw.widget_product_tag_cloud .tagcloud a:after {
    content: ',';
    color: #000
}

.widget.wblw.widget_product_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.widget.wblw.widget_product_categories {
    margin: 0 0 46px
}

.widget.wblw.widget_product_categories select {
    width: 100%
}

.widget.wblw.widget_layered_nav .select2-container--default, .widget.wblw.widget_layered_nav .select2-container--default .select2-selection {
    height: auto
}

.widget.wblw.widget_layered_nav .select2-container--default .select2-selection .select2-selection__rendered .select2-search--inline {
    margin: 0;
    width: 100%
}

.widget.wblw.widget_layered_nav .select2-container--default .select2-selection .select2-selection__rendered .select2-search--inline input {
    border: 0;
    margin: 0;
    padding: 0
}

.widget.wblw.widget_product_search {
    margin: 0 0 54px
}

.widget.wblw.widget_product_search .wblw-product-search {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    clear: both
}

.widget.wblw.widget_product_search .wblw-product-search > div {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

.widget.wblw.widget_product_search .wblw-product-search > div:focus-within {
    border-bottom-color: #000
}

.widget.wblw.widget_product_search .wblw-product-search button, .widget.wblw.widget_product_search .wblw-product-search input {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    margin: 0;
    height: 40px;
    line-height: 32px;
    color: #000;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

.widget.wblw.widget_product_search .wblw-product-search input {
    width: calc(100% - 40px);
    font-family: inherit;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

.widget.wblw.widget_product_search .wblw-product-search input::-webkit-input-placeholder {
    color: inherit
}

.widget.wblw.widget_product_search .wblw-product-search input:-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.wblw.widget_product_search .wblw-product-search input::-moz-placeholder {
    color: inherit;
    opacity: 1
}

.widget.wblw.widget_product_search .wblw-product-search input:-ms-input-placeholder {
    color: inherit
}

.widget.wblw.widget_product_search .wblw-product-search input:focus {
    color: #000;
    border-color: #000
}

.widget.wblw.widget_product_search .wblw-product-search button {
    width: 40px;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    text-align: right
}

.widget.wblw.widget_product_search .wblw-product-search button:hover {
    color: #000
}

.widget.wblw.widget_product_search .wblw-product-search button span, .widget.wblw.widget_product_search .wblw-product-search button span:before {
    display: block;
    line-height: inherit
}

.wblm-product-info, .wblm-product-info > div, .wblm-product-info > div a {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.wblm-product-info > div p {
    margin: 0
}

.wblm-product-info > div a {
    margin: 0 9px 0 0
}

.wblm-product-info > div a:last-child {
    margin: 0
}

.wblm-product-info .wblm-pi-image, .wblm-product-info .wblm-pi-rating, .wblm-product-info .wblm-pi-title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.wblm-product-info .wblm-pi-image img {
    display: block
}

.wblm-product-info .wblm-pi-category h1, .wblm-product-info .wblm-pi-category h2, .wblm-product-info .wblm-pi-category h3, .wblm-product-info .wblm-pi-category h4, .wblm-product-info .wblm-pi-category h5, .wblm-product-info .wblm-pi-category h6 {
    margin: 0
}

.wblm-product-info .wblm-pi-category h1 a, .wblm-product-info .wblm-pi-category h2 a, .wblm-product-info .wblm-pi-category h3 a, .wblm-product-info .wblm-pi-category h4 a, .wblm-product-info .wblm-pi-category h5 a, .wblm-product-info .wblm-pi-category h6 a {
    vertical-align: top
}

.wblm-product-info .wblm-pi-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblm-product-info .wblm-pi-rating:before {
    color: #a8a8a8;
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-product-info .wblm-pi-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-product-info .wblm-pi-rating span:before {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-product-info .wblm-pi-add-to-cart .wblm-btn.wblm-btn-solid.wblm-white-skin {
    color: #000;
    background-color: #fff;
    border-color: #fff
}

.wblm-product-info .wblm-pi-add-to-cart .wblm-btn.wblm-btn-solid.wblm-dark-skin, .wblm-product-info .wblm-pi-add-to-cart .wblm-btn.wblm-btn-solid.wblm-white-skin:hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.wblm-product-info .wblm-pi-add-to-cart .wblm-btn.wblm-btn-solid.wblm-dark-skin:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff
}

.wblm-pla-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    opacity: 0
}

.wblm-pla-holder.wblm-pla-animation-disabled, .touch .wblm-pla-holder {
    opacity: 1
}

.wblm-pla-holder .wblm-pla-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 200px, 0);
    -moz-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    will-change: transform;
    padding: 0;
    z-index: 100
}

.no-touch .wblm-pla-holder .wblm-pla-item.wblm-pla-animated {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 2s cubic-bezier(0, 0, 0, 1), opacity .6s;
    transition: transform 2s cubic-bezier(0, 0, 0, 1), opacity .6s
}

.touch .wblm-pla-holder .wblm-pla-item {
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-pla-holder.wblm-pla-animation-disabled .wblm-pla-item {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.wblm-pla-holder.wblm-two-columns .wblm-pla-item {
    width: 50%
}

.wblm-pla-holder.wblm-three-columns .wblm-pla-item {
    width: 33.33333%
}

.wblm-pla-holder.wblm-four-columns .wblm-pla-item {
    width: 25%
}

.wblm-pla-holder.wblm-five-columns .wblm-pla-item {
    width: 20%
}

.wblm-pla-holder.wblm-six-columns .wblm-pla-item {
    width: 16.66667%
}

@media only screen and (min-width: 1025px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item:nth-child(5n+1), .wblm-pla-holder.wblm-four-columns .wblm-pla-item:nth-child(4n+1), .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(6n+1), .wblm-pla-holder.wblm-three-columns .wblm-pla-item:nth-child(3n+1), .wblm-pla-holder.wblm-two-columns .wblm-pla-item:nth-child(2n+1) {
        clear: both
    }
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner {
    position: relative;
    overflow: hidden
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-image img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, .9);
    opacity: 0;
    -webkit-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    -moz-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    transition: opacity .4s cubic-bezier(.76, .14, 0, .74)
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder {
    position: absolute;
    width: 120px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border: 1px solid;
    opacity: 0;
    z-index: 111;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur()
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder .added_to_cart, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist {
    height: 43px;
    width: 18px;
    z-index: 300;
    overflow: hidden;
    padding: 0 16px;
    font-size: 0;
    vertical-align: bottom;
    margin: 0;
    border: 0;
    box-sizing: initial;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder .added_to_cart:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder .added_to_cart:before, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button:before, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button:before, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist:before {
    content: initial;
    color: inherit
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder .added_to_cart:hover, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button:hover, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button:hover, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist:hover {
    opacity: .8
}

.wblm-pla-holder .wblm-pla-item:hover .wblm-pla-inner .wblm-pla-text, .wblm-pla-holder .wblm-pla-item:hover .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder, .wblm-plc-holder .wblm-plc-item:hover .wblm-plc-image-outer .wblm-plc-text {
    opacity: 1
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button {
    bottom: 0;
    right: -1px
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.added {
    display: none
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.add_to_cart_button, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.product_type_external, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.product_type_variable {
    box-sizing: content-box
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.add_to_cart_button:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.product_type_external:after, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart a.button.product_type_variable:after {
    font-family: Ionicons;
    content: "\f110";
    font-size: 19px;
    line-height: 42px;
    font-weight: 500
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart .added_to_cart {
    color: unset;
    background-color: unset;
    font-weight: unset
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart .added_to_cart:before {
    content: initial
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .wblm-pla-add-to-cart .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button {
    bottom: 0
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-quickview-button:before {
    content: "\f06e";
    font-size: 17px;
    line-height: 43px;
    font-family: FontAwesome
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-rating span:before, .wblm-plc-holder .wblm-plc-item .wblm-plc-rating span:before, .wblm-plc-holder .wblm-plc-item .wblm-plc-rating:before {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist {
    bottom: 0
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist > div a {
    height: 100%
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-inner .wblm-pla-text .wblm-pla-icons-holder > .yith-wcwl-add-to-wishlist > div a:before {
    font-size: 16px;
    line-height: 45px;
    padding: 0;
    margin: 0
}

.wblm-pla-holder .wblm-pla-item:hover .wblm-pla-image img {
    will-change: transform;
    -webkit-filter: blur();
    filter: blur();
    -webkit-transform: translateX(-3%) scale(1.06);
    -moz-transform: translateX(-3%) scale(1.06);
    transform: translateX(-3%) scale(1.06);
    -webkit-transition: -webkit-transform 1s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform 1s cubic-bezier(.33, .02, 0, .93);
    transition: transform 1s cubic-bezier(.33, .02, 0, .93)
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-title {
    margin: 0
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-category {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px;
    margin: 0
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-price {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    color: inherit;
    font-size: 14px;
    margin: 0;
    line-height: 21px
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-price * {
    font-size: inherit;
    line-height: inherit
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-price del {
    color: #a5a5a5;
    margin-right: 8px
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-rating-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 0
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-rating:before {
    color: #a8a8a8;
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-pla-holder .wblm-pla-item .wblm-pla-excerpt {
    color: #000;
    line-height: 1.3em;
    margin: 11px 0 0;
    display: inline-block;
    font-size: 14px
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .wblm-pla-add-to-cart {
    margin: 0
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart, .wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 0 !important;
    color: #000;
    background-color: transparent;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle;
    white-space: nowrap;
    z-index: 3
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart > span:before, .wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button > span:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:hover, .wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:hover {
    background-color: transparent;
    color: #000
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:hover > span:before, .wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:hover > span:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart .wblm-btn-text, .wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button .wblm-btn-text {
    display: inline-block;
    vertical-align: middle
}

.wblm-pla-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button.added {
    display: none
}

.wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder {
    background: #000 !important
}

.wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .added_to_cart, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .wblm-pla-add-to-cart a.button, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .yith-quickview-button, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .yith-wcwl-add-button, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .yith-wcwl-add-to-wishlist *, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .yith-wcwl-wishlistaddedbrowse a:before, .wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .yith-wcwl-wishlistexistsbrowse a:before {
    color: #fff !important
}

.wblm-pla-holder.wblm-hover-type-standard-dark .wblm-pla-icons-holder .add_to_cart_button {
    box-sizing: content-box
}

.wblm-pla-holder .wblm-pla-text-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 23px 0 38px
}

.wblm-plc-holder, .wblm-plc-holder .wblm-plc-outer {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-plc-holder .wblm-plc-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 0;
    z-index: 100;
    overflow: hidden;
    box-sizing: border-box
}

.touch .wblm-plc-holder .wblm-plc-item {
    cursor: pointer
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer, .wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-new-product, .wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-onsale, .wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-out-of-stock {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 15px;
    width: 50px;
    height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    z-index: 100;
    box-sizing: border-box;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0)
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-onsale {
    left: 1px;
    background-color: #000
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-out-of-stock {
    right: 1px;
    background-color: #000
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-image .wblm-plc-new-product {
    left: 1px;
    background-color: #fff;
    color: #000
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-text {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
    opacity: 0;
    background-color: rgba(0, 0, 0, .6);
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-out, background-color .2s ease-out;
    -moz-transition: opacity .2s ease-out, background-color .2s ease-out;
    transition: opacity .2s ease-out, background-color .2s ease-out
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-text-outer {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-image-outer .wblm-plc-text-inner {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-title {
    margin: 0 0 4px
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-category {
    margin: 11px 0 3px
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-excerpt {
    color: #000;
    line-height: 1.3em;
    margin: 11px 0 3px
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-rating-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 10px 0 3px
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-rating:before {
    color: #a8a8a8
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-price {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    margin: 14px 0 0;
    line-height: 1;
    color: inherit
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-price * {
    font-size: inherit;
    line-height: inherit
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-price del {
    color: #a5a5a5;
    margin-right: 8px
}

.wblm-plc-holder .wblm-plc-item .added_to_cart, .wblm-plc-holder .wblm-plc-item .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 9px 46px;
    white-space: nowrap;
    z-index: 3
}

.wblm-plc-holder .wblm-plc-item .button.added {
    display: none
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart {
    margin: 20px 0 0
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .added_to_cart, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .button {
    color: #fff;
    background-color: #000;
    border: 1px solid transparent
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .added_to_cart:before, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .button:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .added_to_cart:hover, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .button:hover {
    color: #fff;
    background-color: #000
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .added_to_cart:hover:before, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-default-skin .button:hover:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-light-skin .added_to_cart, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-light-skin .button {
    color: #000;
    background-color: #fff
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-dark-skin .added_to_cart, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-dark-skin .added_to_cart:hover, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-dark-skin .button, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-dark-skin .button:hover, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-light-skin .added_to_cart:hover, .wblm-plc-holder .wblm-plc-item .wblm-plc-add-to-cart.wblm-light-skin .button:hover {
    color: #fff;
    background-color: #000
}

.wblm-plc-holder .wblm-plc-item .wblm-plc-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-category a, .wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-excerpt, .wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-price, .wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-rating, .wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-title {
    color: #fff
}

.wblm-plc-holder.wblm-standard-layout .wblm-plc-item .wblm-plc-category a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-plc-holder.wblm-simple-layout .wblm-plc-image-outer {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0 15px 0 0
}

.wblm-plc-holder.wblm-simple-layout .wblm-plc-text-wrapper {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0 0 0 15px
}

.wblm-pls-holder > ul, .wblm-pls-holder > ul > li {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0
}

.wblm-plc-holder.wblm-simple-layout .wblm-plc-text, .wblm-plc-holder.wblm-simple-layout .wblm-plc-text-inner, .wblm-plc-holder.wblm-simple-layout .wblm-plc-text-outer {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    -webkit-transform: translateZ(0)
}

.wblm-plc-holder.wblm-plc-nav-light-skin .owl-nav .owl-next, .wblm-plc-holder.wblm-plc-nav-light-skin .owl-nav .owl-prev {
    color: #fff
}

.wblm-plc-holder.wblm-plc-nav-light-skin .owl-nav .owl-next:hover, .wblm-plc-holder.wblm-plc-nav-light-skin .owl-nav .owl-prev:hover {
    color: rgba(255, 255, 255, .9)
}

.wblm-plc-holder.wblm-plc-pag-inside-slider .owl-next, .wblm-plc-holder.wblm-plc-pag-inside-slider .owl-prev {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-plc-holder.wblm-plc-pag-inside-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: 10px;
    margin: 0
}

.wblm-plc-holder.wblm-plc-pag-light-skin .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, .9)
}

.wblm-plc-holder.wblm-plc-pag-light-skin .owl-dots .owl-dot.active span, .wblm-plc-holder.wblm-plc-pag-light-skin .owl-dots .owl-dot:hover span {
    background-color: #fff
}

.wblm-pls-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-pls-holder > ul {
    position: relative;
    list-style: none;
    margin: 0
}

.wblm-pls-holder > ul > li {
    position: relative;
    margin: 0 0 20px
}

.wblm-pls-holder > ul > li:last-child {
    margin: 0
}

.wblm-pls-holder .wblm-pls-image {
    display: table-cell;
    vertical-align: top;
    width: 84px
}

.wblm-pls-holder .wblm-pls-image a, .wblm-pls-holder .wblm-pls-image img {
    display: block
}

.wblm-pls-holder .wblm-pls-image a {
    position: relative
}

.wblm-pls-holder .wblm-pls-image a:hover:after {
    opacity: 1
}

.wblm-pls-holder .wblm-pls-image a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.wblm-pls-holder .wblm-pls-text {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 20px
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-title {
    margin: 0 0 4px
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-rating-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 5px 0 3px
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-rating:before {
    color: #a8a8a8;
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-rating span:before {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-price {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    margin: 14px 0 0;
    line-height: 1;
    color: inherit
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-price * {
    font-size: inherit;
    line-height: inherit
}

.wblm-pls-holder .wblm-pls-text .wblm-pls-price del {
    color: #a5a5a5;
    margin-right: 8px
}

.wblm-pl-holder .wblm-pl-categories {
    position: relative;
    padding-bottom: 35px;
    float: left;
    text-align: center;
    width: 100%
}

.wblm-pl-holder .wblm-pl-categories h6.wblm-pl-categories-label {
    margin: 0;
    display: none;
    font-size: 13px
}

.wblm-pl-holder .wblm-pl-categories h6.wblm-pl-categories-label:after {
    content: "\35";
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-family: ElegantIcons;
    font-size: 14px;
    line-height: 1em;
    margin-left: 8px;
    top: -1px
}

.wblm-pl-holder .wblm-pl-categories ul {
    list-style: none;
    display: inline-block;
    margin: 0
}

.wblm-pl-holder .wblm-pl-categories ul li {
    display: inline-block;
    float: left;
    position: relative;
    padding: 0 20px
}

@media only screen and (max-width: 480px) {
    .wblm-pl-holder .wblm-pl-categories ul li {
        display: block;
        float: none;
        padding: 0
    }
}

.wblm-pl-holder .wblm-pl-categories ul li:first-child {
    padding-left: 0
}

.wblm-pl-holder .wblm-pl-categories ul li a {
    position: relative;
    color: #000;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 14px
}

.wblm-pl-holder .wblm-pl-categories ul li a.active:before, .wblm-pl-holder .wblm-pl-categories ul li a:before, .wblm-pl-holder .wblm-pl-categories ul li a:hover:before {
    position: absolute;
    right: 0;
    height: 1px;
    background-color: currentColor;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81);
    content: '';
    width: 100%;
    bottom: 0;
    left: 0
}

.wblm-pl-holder .wblm-pl-categories ul li a:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-pl-holder .wblm-pl-categories ul li a.active:before, .wblm-pl-holder .wblm-pl-categories ul li a:hover:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-pl-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-pl-holder .wblm-pl-outer.wblm-ajax-loading {
    opacity: 0
}

.wblm-pl-holder.wblm-enable-rand-fadein .wblm-pli:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff
}

@-webkit-keyframes wblmFadeOutCover {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes wblmFadeOutCover {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.wblm-pl-holder.wblm-enable-rand-fadein .wblm-pli.wblm-fade-out-cover:after {
    -webkit-animation: wblmFadeOutCover 1s cubic-bezier(.645, .045, .355, 1) forwards;
    -moz-animation: wblmFadeOutCover 1s cubic-bezier(.645, .045, .355, 1) forwards;
    animation: wblmFadeOutCover 1s cubic-bezier(.645, .045, .355, 1) forwards
}

.wblm-pl-holder.wblm-enable-rand-fadein .wblm-pli.wblm-remove-cover:after {
    display: none
}

.wblm-pl-holder .wblm-prl-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    background-color: transparent;
    display: none;
    margin-top: 45px;
    box-sizing: border-box;
    text-align: center;
    padding: 120px
}

.wblm-pl-holder .wblm-prl-loading .wblm-prl-loading-msg {
    font-size: 12px;
    line-height: 1.3em;
    color: #000;
    font-weight: 500
}

.wblm-pl-holder .wblm-pli {
    padding: 0;
    z-index: 100
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-direction: row-reverse;
    padding: 0 8px
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder .added_to_cart, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist {
    height: 43px;
    width: 18px;
    z-index: 300;
    overflow: hidden;
    padding: 0 8px;
    font-size: 0;
    vertical-align: bottom;
    margin: 0;
    border: 0;
    box-sizing: initial;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder .added_to_cart:after, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder .added_to_cart:before, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button:after, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button:before, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button:after, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button:before, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist:after, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist:before {
    content: initial;
    color: inherit
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder .added_to_cart:hover, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button:hover, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button:hover, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist:hover {
    opacity: .8
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button {
    bottom: 0;
    right: -1px;
    display: inline-block;
    background: 0 0;
    color: inherit
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button.added {
    display: none
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button.add_to_cart_button {
    box-sizing: content-box
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart a.button.add_to_cart_button:after {
    font-family: Ionicons;
    content: "\f110";
    font-size: 19px;
    line-height: 42px;
    font-weight: 500
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart .added_to_cart {
    color: unset;
    background-color: unset;
    font-weight: unset
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .wblm-pli-add-to-cart .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button {
    bottom: 0
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-quickview-button:before {
    content: "\f06e";
    font-size: 17px;
    line-height: 43px;
    font-family: FontAwesome
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist {
    bottom: 0
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist > div, .wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist > div a {
    height: 100%
}

.wblm-pl-holder .wblm-pli .wblm-pli-icons-holder > .yith-wcwl-add-to-wishlist > div a:before {
    font-size: 16px;
    line-height: 45px;
    padding: 0;
    margin: 0
}

.wblm-pl-holder .wblm-pli:hover .wblm-pli-image img {
    will-change: transform;
    -webkit-filter: blur();
    filter: blur();
    -webkit-transform: translate(-3%, 0) scale(1.06);
    -moz-transform: translate(-3%, 0) scale(1.06);
    transform: translate(-3%, 0) scale(1.06);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .75s cubic-bezier(.33, .02, 0, .93);
    transition: transform .75s cubic-bezier(.33, .02, 0, .93)
}

.wblm-pl-holder .wblm-pli .wblm-pli-title {
    margin: 0
}

.wblm-pl-holder .wblm-pli .wblm-pli-title > * {
    font-family: inherit
}

.wblm-pl-holder .wblm-pli .wblm-pli-category {
    font-family: Montserrat, sans-serif;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px;
    margin-top: 3px
}

.wblm-pl-holder .wblm-pli .wblm-pli-price {
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    position: relative;
    display: block;
    margin: 14px 0 0;
    line-height: 1;
    color: inherit
}

.wblm-pl-holder .wblm-pli .wblm-pli-price * {
    font-size: inherit;
    line-height: inherit
}

.wblm-pl-holder .wblm-pli .wblm-pli-price del {
    color: #a5a5a5;
    margin-right: 8px
}

.wblm-pl-holder .wblm-pli .wblm-pli-rating-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 0
}

.wblm-pl-holder .wblm-pli .wblm-pli-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.wblm-pl-holder .wblm-pli .wblm-pli-rating:before {
    color: #a8a8a8;
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pl-holder .wblm-pli .wblm-pli-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.wblm-pl-holder .wblm-pli .wblm-pli-rating span:before {
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3"
}

.wblm-pl-holder .wblm-pli .wblm-pli-excerpt {
    color: #000;
    line-height: 1.3em;
    margin: 11px 0 0;
    display: inline-block;
    font-size: 14px
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .wblm-pli-add-to-cart {
    margin: 0;
    padding: 0 8px
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 2.1em;
    font-weight: 600;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 0 !important;
    color: #000;
    background-color: transparent;
    border: 0;
    letter-spacing: .01em;
    vertical-align: middle;
    white-space: nowrap;
    z-index: 3
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:before, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart > span:before, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:before, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button > span:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(1, 1);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:hover, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:hover {
    background-color: transparent;
    color: #000
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:hover:before, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:hover:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:hover > span:before, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button:hover > span:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: inherit;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart .wblm-btn-text, .wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button .wblm-btn-text {
    display: inline-block;
    vertical-align: middle
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart {
    font-size: 0
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .added_to_cart:before {
    content: none
}

.wblm-pl-holder:not(.wblm-product-add-to-cart-in-box):not(.wblm-info-below-image) .button.added {
    display: none
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder {
    background: #000 !important
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .wblm-pli-add-to-cart a.button, .wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .yith-quickview-button, .wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .yith-wcwl-add-button, .wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .yith-wcwl-add-to-wishlist *, .wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .yith-wcwl-wishlistaddedbrowse a:before, .wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .yith-wcwl-wishlistexistsbrowse a:before {
    color: #fff !important
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .added_to_cart {
    color: #fff !important;
    font-size: 0
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .added_to_cart:before {
    content: initial
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder .added_to_cart:after {
    content: "Z";
    font-size: 18px;
    line-height: 46px;
    font-family: ElegantIcons
}

.wblm-pl-holder.wblm-hover-type-standard-dark .wblm-pli-icons-holder:hover {
    opacity: .9
}

.wblm-pl-holder .wblm-pli-inner {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden
}

.touch .wblm-pl-holder .wblm-pli-inner {
    cursor: pointer
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image img {
    display: block;
    width: 100%;
    backface-visibility: hidden;
    -webkit-transform: scale(1.06) rotate(.1deg);
    -moz-transform: scale(1.06) rotate(.1deg);
    transform: scale(1.06) rotate(.1deg);
    -webkit-transition: -webkit-transform .45s cubic-bezier(.33, .02, 0, .93);
    -moz-transition: -moz-transform .45s cubic-bezier(.33, .02, 0, .93);
    transition: transform .45s cubic-bezier(.33, .02, 0, .93)
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-new-product, .wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-onsale, .wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-out-of-stock {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 15px;
    width: 50px;
    height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    z-index: 100;
    box-sizing: border-box;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0)
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-onsale {
    left: 1px;
    background-color: #000
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-out-of-stock {
    right: 1px;
    background-color: #000
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-image .wblm-pli-new-product {
    left: 1px;
    background-color: #fff;
    color: #000
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-text {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    box-sizing: border-box
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-text-outer {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    text-align: center
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-text-outer .wblm-pli-text-inner {
    display: table-cell
}

.wblm-pl-holder .wblm-pli-inner .wblm-pli-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wblm-pl-holder .wblm-pli-text-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 23px 0 38px
}

.wblm-pl-holder.wblm-masonry-layout .wblm-pli-inner {
    width: 100%;
    height: 100%
}

.wblm-pl-holder.wblm-masonry-layout .wblm-pli-inner .wblm-pli-image {
    height: 100%
}

.wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-next, .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-prev {
    background-color: transparent;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

.wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-prev {
    left: -83px
}

.wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-next {
    right: -83px
}

@media only screen and (max-width: 1024px) {
    .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-next, .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-prev {
        background-color: #fff
    }

    .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-prev {
        left: 0
    }

    .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-owl-slider .owl-nav .owl-next {
        right: 0
    }
}

.wblm-pl-holder.wblm-carousel-layout .wblm-pl-outer, .wblm-pl-holder.wblm-carousel-layout.wblm-navigation-inside-slider .wblm-pl-outer .wblm-pli {
    margin: 0 !important
}

.wblm-pl-holder.wblm-carousel-layout .wblm-pl-outer .wblm-pli {
    padding: 0 !important;
    width: auto
}

@media only screen and (max-width: 991px) {
    .wblm-pl-holder.wblm-carousel-layout .wblm-with-custom-holder {
        position: relative;
        left: 0 !important;
        top: 0 !important
    }
}

.wblm-pl-holder.wblm-carousel-layout .wblm-pl-holder:not(.wblm-info-outside-with-custom-text) .owl-nav .owl-next, .wblm-pl-holder.wblm-carousel-layout .wblm-pl-holder:not(.wblm-info-outside-with-custom-text) .owl-nav .owl-prev {
    top: calc(50% - 123px);
    background-color: transparent
}

.wblm-pl-holder.wblm-carousel-layout .wblm-pl-holder:not(.wblm-info-outside-with-custom-text) .owl-nav .owl-prev {
    left: -88px;
    right: initial
}

.wblm-pl-holder.wblm-carousel-layout .wblm-pl-holder:not(.wblm-info-outside-with-custom-text) .owl-nav .owl-next {
    right: -88px
}

.wblm-pl-holder.wblm-info-on-image .wblm-pli .wblm-pli-icons-holder {
    position: relative;
    z-index: 111;
    opacity: 0;
    border: 1px solid;
    margin: 23px auto 0;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur();
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}

.wblm-pl-holder.wblm-info-on-image .wblm-pli:hover .wblm-pli-icons-holder, .wblm-pl-holder.wblm-info-on-image .wblm-pli:hover .wblm-pli-inner .wblm-pli-text {
    opacity: 1
}

.wblm-pl-holder.wblm-info-on-image .wblm-pli .wblm-pli-inner .wblm-pli-text {
    padding: 30px;
    background-color: rgba(255, 255, 255, .9);
    opacity: 0;
    -webkit-transition: opacity .66s cubic-bezier(.76, .14, 0, .74);
    -moz-transition: opacity .66s cubic-bezier(.76, .14, 0, .74);
    transition: opacity .66s cubic-bezier(.76, .14, 0, .74)
}

.wblm-pl-holder.wblm-info-on-image .wblm-pli .wblm-pli-inner .wblm-pli-text .wblm-pli-price {
    margin-top: 16px
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-vertical-top .wblm-pli .wblm-pli-text-inner {
    vertical-align: top
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-vertical-middle .wblm-pli .wblm-pli-text-inner {
    vertical-align: middle
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-vertical-bottom .wblm-pli .wblm-pli-text-inner {
    vertical-align: bottom
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-horizontal-left .wblm-pli .wblm-pli-text-inner {
    text-align: left
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-horizontal-center .wblm-pli .wblm-pli-text-inner {
    text-align: center
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-horizontal-right .wblm-pli .wblm-pli-text-inner {
    text-align: right
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-category a, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-excerpt, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-price, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-rating, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-title {
    color: #fff
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-info-light .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-category a:hover {
    color: rgba(255, 255, 255, .8)
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-category a, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-excerpt, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-price, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-rating, .wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-title {
    color: #000
}

.wblm-pl-holder.wblm-info-on-image.wblm-product-info-dark .wblm-pli-inner .wblm-pli-text-inner .wblm-pli-category a:hover {
    color: rgba(0, 0, 0, .8)
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli .wblm-pli-title {
    float: left;
    width: 55%
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli .wblm-pli-category {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px;
    margin: 0;
    width: 100%;
    display: inline-block
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli .wblm-pli-price {
    float: right;
    width: 45%;
    text-align: right;
    margin: 4px 0 0
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli:hover .wblm-pli-inner .wblm-pli-text .wblm-pli-icons-holder {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0)
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli .wblm-pli-inner .wblm-pli-text {
    padding: 0
}

.wblm-pl-holder.wblm-info-below-image .wblm-pli .wblm-pli-inner .wblm-pli-text .wblm-pli-icons-holder {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: #fff;
    z-index: 111;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .35s cubic-bezier(.34, .18, 0, .9);
    -moz-transition: transform .35s cubic-bezier(.34, .18, 0, .9);
    transition: transform .35s cubic-bezier(.34, .18, 0, .9)
}

.wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-center .wblm-pli-text-wrapper > *, .wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-left .wblm-pli-text-wrapper > *, .wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-right .wblm-pli-text-wrapper > * {
    width: 100%
}

.wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-center .wblm-pli-price, .wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-left .wblm-pli-price, .wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-right .wblm-pli-price {
    text-align: inherit
}

.wblm-pl-holder.wblm-info-below-image.wblm-product-info-align-center .wblm-pli-price {
    margin: 13px 0 0
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli .wblm-pli-title {
    float: left;
    width: 55%
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli .wblm-pli-category {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 21px;
    margin: 0;
    width: 100%;
    display: inline-block
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli .wblm-pli-price {
    float: right;
    width: 45%;
    text-align: right;
    margin: 4px 0 0
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli:hover .wblm-pli-inner .wblm-pli-text {
    opacity: 1
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli .wblm-pli-inner .wblm-pli-text {
    padding: 0;
    background-color: rgba(255, 255, 255, .9);
    opacity: 0;
    -webkit-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    -moz-transition: opacity .4s cubic-bezier(.76, .14, 0, .74);
    transition: opacity .4s cubic-bezier(.76, .14, 0, .74)
}

.wblm-pl-holder.wblm-info-below-image-icons-on .wblm-pli .wblm-pli-inner .wblm-pli-text .wblm-pli-icons-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    z-index: 111;
    will-change: transform;
    -webkit-filter: blur();
    filter: blur();
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-center .wblm-pli-text-wrapper > *, .wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-left .wblm-pli-text-wrapper > *, .wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-right .wblm-pli-text-wrapper > * {
    width: 100%
}

.wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-center .wblm-pli-price, .wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-left .wblm-pli-price, .wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-right .wblm-pli-price {
    text-align: inherit
}

.wblm-pl-holder.wblm-info-below-image-icons-on.wblm-product-info-align-center .wblm-pli-price {
    margin: 13px 0 0
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli-new-product, .wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli-onsale, .wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli-out-of-stock {
    display: none !important
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .owl-nav .owl-next, .wblm-pl-holder.wblm-info-outside-with-custom-text .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    line-height: 40px
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .owl-nav .owl-prev {
    right: 40px
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli {
    margin: 0 !important
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli .wblm-pli-inner .wblm-pli-text .wblm-pli-price {
    position: absolute;
    top: 10px;
    left: 11px;
    margin: 0;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 500
}

.wblm-pl-holder.wblm-info-outside-with-custom-text .wblm-pli .wblm-pli-inner .wblm-pli-text .wblm-pli-price .wblw-Price-currencySymbol {
    font-size: 10px;
    vertical-align: top;
    margin: 0 2px
}

.wblm-pl-holder .wblm-with-custom-text {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    color: #000;
    letter-spacing: .42em;
    text-align: left;
    z-index: 100;
    box-sizing: border-box;
    transform-origin: 0 0;
    -webkit-transform: rotate(90deg) translateZ(0);
    -moz-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0)
}

.wblm-pl-holder .wblm-with-custom-button, .wblm-pl-holder .wblm-with-custom-title {
    font-weight: 600;
    display: block;
    font-family: Poppins, sans-serif
}

.wblm-pl-holder.custom-text-position-right .wblm-with-custom-text {
    left: calc(100% + 40px)
}

.wblm-pl-holder .wblm-with-custom-holder {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    top: 25%;
    left: 94%;
    z-index: 100;
    width: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media only screen and (max-width: 768px) {
    .wblm-pl-holder .wblm-with-custom-holder {
        left: 10% !important
    }
}

@media only screen and (max-width: 480px) {
    .wblm-pl-holder .wblm-with-custom-holder {
        width: 75%
    }
}

.wblm-pl-holder .wblm-with-custom-title {
    font-size: 25px;
    line-height: 28px
}

.wblm-pl-holder .wblm-with-custom-link {
    position: relative
}

.wblm-pl-holder .wblm-with-custom-button {
    margin-top: 25px;
    font-size: 13px
}

.wblm-drop-down .wblm-pli-icons-holder {
    display: none !important
}

.wblm-product-single {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.touch .wblm-product-single {
    cursor: pointer
}

.wblm-product-single .wblm-product-single-content {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%
}

.wblm-product-single .wblm-product-single-text {
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 50%;
    padding: 0 14%;
    box-sizing: border-box;
    background-color: #fff
}

.wblm-product-single .wblm-product-single-text-inner, .wblm-product-single .wblm-single-thumbnail-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.wblm-product-single .wblm-single-thumbnail-holder {
    width: 100%;
    overflow: hidden
}

.wblm-product-single .wblm-single-thumbnail-holder img {
    display: block;
    width: 100%
}

.wblm-product-single .wblm-product-single-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.wblm-product-single .wblm-sp-text-wrapper {
    position: absolute;
    display: inline-block;
    width: 100%;
    left: 0;
    bottom: 27px;
    vertical-align: middle;
    margin: 20px 0 0
}

.wblm-product-single .wblm-product-single-title {
    display: inline-block;
    width: auto;
    margin: 0 0 7px
}

.wblm-product-single .wblm-sp-price {
    font-family: Poppins, sans-serif;
    position: relative;
    display: block;
    line-height: 1;
    color: #000;
    clear: both;
    margin: 0;
    font-weight: 300;
    font-size: 14px
}

.wblm-product-single .wblm-sp-price * {
    font-size: inherit;
    line-height: inherit
}

.wblm-product-single .wblm-sp-price del {
    color: #a5a5a5;
    margin-right: 8px
}

.wblm-product-single .wblm-sp-button {
    margin-top: 20px;
    position: relative;
    z-index: 2
}

.wblm-product-single .wblm-product-single-image {
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 50%
}

.wblm-product-single .wblm-product-single-image img {
    display: block
}

.wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-left .wblm-sp-text-wrapper {
    left: 80%;
    right: auto;
    text-align: left
}

.wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-right .wblm-sp-text-wrapper {
    right: 80%;
    left: auto;
    text-align: right
}

.rev_slider_wrapper .wblm-product-single .wblm-product-single-image img, .rev_slider_wrapper .wblm-product-single .wblm-single-thumbnail-holder img {
    width: 100% !important;
    height: auto !important
}

#yith-quick-view-modal {
    z-index: 1050
}

#yith-quick-view-modal .yith-quick-view-overlay {
    background: rgba(246, 246, 246, .7)
}

#yith-quick-view-modal .yith-wcqv-wrapper {
    height: 680px;
    width: 1084px
}

#yith-quick-view-modal .yith-wcqv-main {
    overflow: -moz-scrollbars-none;
    -webkit-box-shadow: none;
    box-shadow: none
}

#yith-quick-view-modal .yith-wcqv-main::-webkit-scrollbar {
    display: none
}

#yith-quick-view-modal .wblm-out-of-stock {
    right: 50px
}

#yith-quick-view-modal #yith-quick-view-content > .product, #yith-quick-view-modal #yith-quick-view-content > .product > .product {
    margin-bottom: 0
}

#yith-quick-view-modal #yith-quick-view-content .product div.images {
    width: 50%
}

#yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper {
    margin: 0
}

#yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper div:first-child {
    padding-right: 10px
}

#yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper div:not(:first-child) {
    display: none;
    width: calc(50% - 10px);
    float: left;
    padding-right: 10px
}

#yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper a, #yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper img {
    display: block;
    height: 100%;
    height: -webkit-fill-available;
    object-fit: cover
}

#yith-quick-view-modal #yith-quick-view-content div.summary {
    width: calc(50% - 50px);
    padding: 54px 15px 15px 52px
}

@media only screen and (max-width: 480px) {
    #yith-quick-view-modal #yith-quick-view-content div.summary {
        padding: 50px 0 15px 21px
    }
}

#yith-quick-view-modal #yith-quick-view-content div.summary .product_title.entry-title {
    font-size: 40px;
    line-height: 1.125em;
    margin-bottom: 7px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    line-height: 1;
    margin: 13px 0 0;
    font-family: Poppins, sans-serif;
    font-size: 14px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating a.wblw-review-link {
    display: inline-block;
    color: #000
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-rating a.wblw-review-link:hover {
    color: #000
}

#yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a, #yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a, #yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
    font-size: 14px !important;
    text-transform: capitalize
}

#yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:before, #yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before, #yith-quick-view-modal #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
    top: 1px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblw-product-details__short-description {
    margin: 47px 0 13px
}

#yith-quick-view-modal #yith-quick-view-content div.summary form.cart {
    margin: 43px 0 0
}

#yith-quick-view-modal #yith-quick-view-content div.summary .wblm-quantity-buttons {
    margin-right: 11px
}

#yith-quick-view-modal #yith-quick-view-content div.summary .product_meta {
    display: none;
    margin: 42px 0 0
}

#yith-quick-view-modal #yith-quick-view-close, .yith-quick-view.yith-modal #yith-quick-view-close {
    top: 24px;
    right: 24px;
    color: #000;
    background: url(/wp-content/themes/onea/assets/img/close-icon.svg) no-repeat;
    width: 16px;
    height: 17px;
    font-size: 0;
    line-height: 15px;
    font-weight: 400;
    text-align: center;
    opacity: 1;
    border: 0
}

ul.products > .product .button.yith-wcqv-button {
    display: none !important
}

ul.products > .product .wblm-pl-yith {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
    overflow: hidden;
    font-size: 0;
    width: 121px
}

ul.products > .product .wblm-pl-yith .wblm-yith-wcqv-holder {
    display: inline-block;
    height: 29px;
    vertical-align: middle
}

ul.products > .product .wblm-pl-yith .wblm-yith-wcqv-holder a {
    display: block;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase
}

ul.products > .product .wblm-pl-yith .wblm-yith-wcqv-holder a span {
    display: inline-block;
    background-color: #000;
    line-height: 1;
    padding: 8px 10px
}

ul.products > .product .wblm-pl-yith .wblm-yith-wcqv-holder a span.wblm-yith-wcqv-icon {
    background-color: #404040
}

#yith-wcwl-popup-message, #yith-wcwl-popup-message.wblm-wishlist-vanish-out {
    display: none;
    opacity: 0
}

.wblm-yith-wcqv-holder {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.yith-wcwl-add-to-wishlist {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 8px 0 0;
    text-align: center
}

.yith-wcwl-add-button a, .yith-wcwl-wishlistaddedbrowse a, .yith-wcwl-wishlistexistsbrowse a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0 !important;
    line-height: inherit;
    color: #000
}

.yith-wcwl-add-button a:before, .yith-wcwl-wishlistaddedbrowse a:before, .yith-wcwl-wishlistexistsbrowse a:before {
    content: "\e030";
    position: relative;
    display: inline-block;
    font-family: ElegantIcons;
    font-size: 11px;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    padding-top: 2px
}

.yith-wcwl-add-button a:not(.wblm-adding-to-wishlist):hover:before, .yith-wcwl-wishlistaddedbrowse a:not(.wblm-adding-to-wishlist):hover:before, .yith-wcwl-wishlistexistsbrowse a:not(.wblm-adding-to-wishlist):hover:before {
    opacity: 1
}

@-webkit-keyframes wblmWishlistLoading {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .2
    }
}

@keyframes wblmWishlistLoading {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .2
    }
}

.yith-wcwl-add-button a.wblm-adding-to-wishlist:before, .yith-wcwl-wishlistaddedbrowse a.wblm-adding-to-wishlist:before, .yith-wcwl-wishlistexistsbrowse a.wblm-adding-to-wishlist:before {
    -webkit-animation: wblmWishlistLoading 1s ease infinite;
    -moz-animation: wblmWishlistLoading 1s ease infinite;
    animation: wblmWishlistLoading 1s ease infinite
}

.yith-wcwl-add-button a:hover, .yith-wcwl-wishlistaddedbrowse a:hover, .yith-wcwl-wishlistexistsbrowse a:hover {
    color: #000
}

.yith-wcwl-wishlistaddedbrowse a:before, .yith-wcwl-wishlistexistsbrowse a:before {
    content: "\e089";
    color: #000
}

.yith-wcwl-add-button .ajax-loading {
    display: none !important
}

.wblw-wishlist .wishlist-title, .yith-wcwl-wishlistaddedbrowse span, .yith-wcwl-wishlistexistsbrowse span {
    display: none
}

.wblw-wishlist .wblw-error, .wblw-wishlist .wblw-info, .wblw-wishlist .wblw-message {
    position: relative;
    display: block;
    padding: 15px 30px;
    margin: 50px 0 30px;
    line-height: 48px;
    list-style: none;
    background-color: transparent;
    border: 1px solid #ccc
}

.wblw-wishlist .wblw-error > a, .wblw-wishlist .wblw-error > a:hover, .wblw-wishlist .wblw-info > a, .wblw-wishlist .wblw-info > a:hover, .wblw-wishlist .wblw-message > a, .wblw-wishlist .wblw-message > a:hover {
    color: #000
}

.wblw-wishlist .wblw-error a, .wblw-wishlist .wblw-info a, .wblw-wishlist .wblw-message a {
    float: right
}

.wblw-wishlist table.wishlist_table {
    font-size: inherit;
    margin: 50px 0 100px
}

.wblw-wishlist table.wishlist_table thead tr {
    border: none;
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.235em;
    text-transform: capitalize
}

.wblw-wishlist table.wishlist_table thead tr th {
    border: none;
    text-align: left;
    padding: 16px 12px;
    font-weight: 600
}

.wblw-wishlist table.wishlist_table thead tr th.product-name {
    position: absolute;
    left: 0;
    padding-left: 0
}

.wblw-wishlist table.wishlist_table thead tr th.product-remove {
    width: 18px
}

.wblw-wishlist table.wishlist_table tbody tr {
    border: 0;
    border-bottom: 1px solid #e6e6e6
}

.wblw-wishlist table.wishlist_table tbody tr td {
    vertical-align: middle;
    text-align: left;
    padding: 30px 12px
}

.wblw-wishlist table.wishlist_table tbody tr td.product-remove {
    text-align: left
}

.wblw-wishlist table.wishlist_table tbody tr td.product-remove a {
    color: #000;
    font-size: 0
}

.wblw-wishlist table.wishlist_table tbody tr td.product-remove a:before {
    content: "\4d";
    display: inline-block;
    vertical-align: middle;
    speak: none;
    color: #000;
    font-family: ElegantIcons;
    font-size: 24px;
    line-height: inherit;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wblw-wishlist table.wishlist_table tbody tr td.product-remove a:hover {
    color: #000
}

.wblw-wishlist table.wishlist_table tbody tr td.product-thumbnail {
    padding-left: 8px;
    padding-right: 8px;
    width: 115px
}

.wblw-wishlist table.wishlist_table tbody tr td.product-thumbnail a, .wblw-wishlist table.wishlist_table tbody tr td.product-thumbnail img {
    display: block;
    max-width: 115px;
    max-height: 115px;
    object-fit: cover
}

.wblw-wishlist table.wishlist_table tbody tr td.product-name a {
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.235em;
    text-transform: capitalize;
    text-align: left
}

.wblw-wishlist table.wishlist_table tbody tr td.product-price, .wblw-wishlist table.wishlist_table tbody tr td.product-stock-status {
    font-size: 14px
}

.wblw-wishlist table.wishlist_table tbody tr td.product-name .yith-wcqv-button {
    display: none
}

.wblw-wishlist table.wishlist_table tbody tr td.product-stock-status span {
    color: #000 !important
}

.wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart {
    text-align: right
}

.wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart a {
    border-radius: 0;
    border: 0;
    display: inline-block !important
}

.wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart a:after {
    content: '';
    display: none
}

.wblw-wishlist table.wishlist_table .yith-wcwl-share {
    margin: 0
}

#yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist, .wblm-single-product-summary .yith-wcwl-add-to-wishlist {
    width: auto;
    background-color: transparent;
    margin: 18px 0 0
}

#yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
    font-size: 14px;
    line-height: inherit;
    color: #000;
    font-weight: 400;
    text-transform: lowercase;
    vertical-align: middle
}

#yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
    color: #000
}

#yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:before, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before, #yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:before, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
    content: "\e089";
    font-size: 17px;
    padding: 0 2px
}

#yith-quick-view-content div.summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:before, .wblm-single-product-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:before {
    content: "\e030";
    color: #000
}

.wblm-wishlist-widget-holder {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0 10px;
    font-size: 17px
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper .wblm-wishlist-text:before, .wblm-wishlist-widget-holder:hover .wblm-wishlist-opener-wrapper .wblm-wishlist-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    width: 100%;
    transition: transform .4s cubic-bezier(.28, .38, 0, .81)
}

.wblm-wishlist-widget-holder:hover .wblm-wishlist-opener-wrapper .wblm-wishlist-text:before {
    transform: scale(1, 1);
    transform-origin: 0 50%
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper {
    display: block
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper .wblm-wishlist-text {
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box;
    font-weight: 600;
    margin-left: 5px
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper .wblm-wishlist-text:before {
    transform: scale(0, 1);
    transform-origin: 100% 50%
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: inherit
}

.wblm-wishlist-widget-holder .wblm-wishlist-opener-wrapper > :before {
    display: block;
    line-height: inherit
}

.wblm-wishlist-widget-holder.wblm-search-opener-svg-path .wblm-search-opener-wrapper > * {
    vertical-align: middle
}

.wblm-wishlist-widget-holder.wblm-search-opener-svg-path .wblm-search-opener-wrapper path, .wblm-wishlist-widget-holder.wblm-search-opener-svg-path .wblm-search-opener-wrapper > * {
    fill: currentColor;
    stroke: currentColor
}

.wblm-light-header .wblm-wishlist-widget-holder {
    color: #fff
}

.wblm-dark-header .wblm-wishlist-widget-holder, .wblm-dark-header .wblm-wishlist-widget-holder .wblm-wishlist-items-number, .wblm-light-header .wblm-wishlist-widget-holder .wblm-wishlist-items-number {
    color: #000
}

textarea {
    padding: 13px 25px !important;
    margin-top: 10px !important;
    font-size: 10px !important;
    text-transform: none !important;
    letter-spacing: .16em !important;
    font-weight: 400 !important
}

@media only screen and (max-width: 1366px) {
    .wblm-woocommerce-page .wblw .wblw-cart-form {
        width: 61%
    }

    .wblm-woocommerce-page .wblw .cart-collaterals {
        width: 39%
    }

    .wblm-woocommerce-page .wblm-page-content-holder:not(:last-child) .wblw .cart-collaterals, .wblm-woocommerce-page .wblm-page-content-holder:not(:last-child) .wblw .wblw-cart-form {
        width: 100%
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-woocommerce-page .wblw .wblw-cart-form {
        width: 100%;
        padding: 0
    }

    .wblm-woocommerce-page .wblw .cart-collaterals {
        width: 100%
    }
}

@media only screen and (max-width: 768px) {
    .wblm-quantity-input {
        padding-right: 20px !important
    }

    .wblm-woocommerce-page table.cart td.actions .coupon input[type=text] {
        width: 200px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-quantity-input {
        padding-right: 20px !important
    }

    .wblm-woocommerce-page .wblw table.cart tr td, .wblm-woocommerce-page .wblw table.cart tr th {
        font-size: 12px
    }

    .wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-thumbnail {
        width: auto;
        padding-right: 0;
        display: none
    }

    .wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-thumbnail img {
        display: none
    }

    .wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-name {
        padding-right: 10px
    }

    .wblm-woocommerce-page .wblw table.cart tr.cart_item td.product-remove {
        padding-right: 0
    }

    .wblm-woocommerce-page .wblw table.cart td.actions .coupon {
        margin: 0 0 20px
    }

    .wblm-woocommerce-page .wblw table.cart td.actions .coupon input[type=text] {
        width: 100%
    }

    .wblm-woocommerce-page .wblw table.cart td.actions .coupon input[type=submit] {
        right: 0
    }

    .wblm-woocommerce-page .wblw table.cart td.actions .coupon, .wblm-woocommerce-page .wblw table.cart td.actions > input {
        float: none;
        display: block
    }
}

@media only screen and (max-width: 480px) {
    .wblm-woocommerce-page .wblw table.cart td.actions button[type=submit] {
        padding: 0;
        margin-top: 6px
    }

    .wblm-woocommerce-page .wblw .cart-collaterals .wblw-shipping-calculator p > button {
        width: 100%;
        font-size: 14px;
        padding: 15px 26px
    }

    .wblm-woocommerce-page .wblw .cart-collaterals .wc-proceed-to-checkout a {
        padding: 15px 26px
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table tr.shipping td {
        width: 89%;
        text-align: left
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table th {
        text-align: left;
        display: inline-block
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table td, .wblm-woocommerce-page .wblw .cart-collaterals table th {
        display: inline-block;
        padding-left: 30px
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table tr.cart-subtotal td, .wblm-woocommerce-page .wblw .cart-collaterals table tr.cart-subtotal th {
        display: inline-block;
        width: 50%;
        box-sizing: border-box;
        text-align: right
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table td[data-title=Total] {
        margin: 0;
        padding: 0
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table tr.order-total {
        box-sizing: border-box
    }

    .wblm-woocommerce-page .wblw .cart-collaterals table tr.order-total td, .wblm-woocommerce-page .wblw .cart-collaterals table tr.order-total th {
        width: 50%;
        box-sizing: border-box
    }

    .wblm-woocommerce-page .wblw-checkout .wblw-checkout-payment ul li.payment_method_paypal label img {
        display: none
    }
}

@media only screen and (max-width: 768px) {
    .wblm-woocommerce-page .wblw-checkout .col-1, .wblm-woocommerce-page .wblw-checkout .col-2 {
        width: 100%
    }

    .wblm-woocommerce-page .wblw-checkout .col-1 {
        margin: 0 0 25px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-woocommerce-page .wblw-checkout .col-1 .form-row, .wblm-woocommerce-page .wblw-checkout .col-2 .form-row {
        width: 100%;
        margin: 0;
        float: none
    }
}

@media only screen and (max-width: 1024px) {
    .wblw-page .wblm-content .wc-forward:not(.added_to_cart):not(.checkout-button), .wblw-page .wblm-content a.added_to_cart, .wblw-page .wblm-content a.button, .wblw-page .wblm-content button[type=submit]:not(.wblm-search-submit), .wblw-page .wblm-content input[type=submit], div.wblw .wc-forward:not(.added_to_cart):not(.checkout-button), div.wblw a.added_to_cart, div.wblw a.button, div.wblw button[type=submit]:not(.wblm-search-submit), div.wblw input[type=submit] {
        padding: 8px 36px
    }

    .wblm-woo-single-page .wblm-single-product-content .wblm-new-product, .wblm-woo-single-page .wblm-single-product-content .wblm-out-of-stock {
        right: 0
    }
}

@media only screen and (max-width: 768px) {
    .wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-1, .wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-2 {
        width: 100%
    }

    .wblm-woocommerce-page.wblw-order-received .wblw .col2-set.addresses .col-1 {
        margin: 0 0 25px
    }

    .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .wblm-onsale {
        left: 10px
    }

    .wblm-woocommerce-page .wblw-error, .wblm-woocommerce-page .wblw-info, .wblm-woocommerce-page .wblw-message {
        padding: 17px 25px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-woocommerce-page .wblw-error, .wblm-woocommerce-page .wblw-info, .wblm-woocommerce-page .wblw-message {
        padding: 14px 20px;
        line-height: 2em
    }

    .wblm-woocommerce-page .wblw-error a.button.wc-forward:not(.added_to_cart):not(.checkout-button), .wblm-woocommerce-page .wblw-info a.button.wc-forward:not(.added_to_cart):not(.checkout-button), .wblm-woocommerce-page .wblw-message a.button.wc-forward:not(.added_to_cart):not(.checkout-button) {
        float: none;
        margin: 0 70% 15px 0
    }
}

@media only screen and (max-width: 768px) {
    .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-input, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus, div.wblw .wblm-quantity-buttons .wblm-quantity-input, div.wblw .wblm-quantity-buttons .wblm-quantity-minus, div.wblw .wblm-quantity-buttons .wblm-quantity-plus {
        font-size: 13px
    }

    .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-input, div.wblw .wblm-quantity-buttons .wblm-quantity-input {
        height: 38px;
        width: 38px;
        margin: 0 19px 0 0;
        line-height: 36px
    }

    .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-minus, .wblw-page .wblm-content .wblm-quantity-buttons .wblm-quantity-plus, div.wblw .wblm-quantity-buttons .wblm-quantity-minus, div.wblw .wblm-quantity-buttons .wblm-quantity-plus {
        width: 19px;
        height: 19px;
        line-height: 17px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-woocommerce-page .wblw-ordering, .wblm-woocommerce-page .wblw-result-count {
        width: 100%;
        margin-bottom: 30px
    }

    .wblm-woocommerce-page .wblw-ordering {
        text-align: initial
    }

    .wblm-woocommerce-page .wblw-ordering .orderby {
        display: block
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation {
        width: 28%
    }

    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-content {
        width: 72%;
        padding: 0 0 0 20px
    }
}

@media only screen and (max-width: 768px) {
    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-content, .wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation {
        float: none;
        width: 100%;
        padding: 0
    }

    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul {
        border-right: none
    }

    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-navigation ul li:not(:last-child) {
        margin: 0 0 14px
    }

    .wblm-woocommerce-page.wblw-account .wblw-MyAccount-content {
        margin: 40px 0 0
    }

    .wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-1, .wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-2 {
        width: 100%
    }

    .wblm-woocommerce-page.wblw-account .wblw .col2-set.addresses .col-1 {
        margin: 0 0 25px
    }
}

@media only screen and (max-width: 1440px) {
    .wblw.columns-6 > .products > .product {
        width: 20%
    }
}

@media only screen and (max-width: 1200px) {
    .wblw.columns-5 > .products > .product, .wblw.columns-6 > .products > .product {
        width: 25%
    }
}

@media only screen and (max-width: 1200px) and (min-width: 1025px) {
    .wblw.columns-5 > .products > .product:nth-child(4n+1), .wblw.columns-6 > .products > .product:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product, .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-3 .related.products > .products > .product, .wblm-woocommerce-columns-3 .upsells.products > .products > .product, .wblm-woocommerce-columns-4 .cross-sells > .products > .product, .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-4 .related.products > .products > .product, .wblm-woocommerce-columns-4 .upsells.products > .products > .product, .wblw.columns-4 > .products > .product, .wblw.columns-5 > .products > .product, .wblw.columns-6 > .products > .product {
        width: 33.33333%
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .related.products > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-3 .upsells.products > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-4 .cross-sells > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-4 .related.products > .products > .product:nth-child(3n+1), .wblm-woocommerce-columns-4 .upsells.products > .products > .product:nth-child(3n+1), .wblw.columns-4 > .products > .product:nth-child(3n+1), .wblw.columns-5 > .products > .product:nth-child(3n+1), .wblw.columns-6 > .products > .product:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width: 768px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product, .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-3 .related.products > .products > .product, .wblm-woocommerce-columns-3 .upsells.products > .products > .product, .wblm-woocommerce-columns-4 .cross-sells > .products > .product, .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-4 .related.products > .products > .product, .wblm-woocommerce-columns-4 .upsells.products > .products > .product, .wblw.columns-3 > .products > .product, .wblw.columns-4 > .products > .product, .wblw.columns-5 > .products > .product, .wblw.columns-6 > .products > .product {
        width: 50%
    }
}

@media only screen and (max-width: 768px) and (min-width: 681px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-3 .related.products > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-3 .upsells.products > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-4 .cross-sells > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-4 .related.products > .products > .product:nth-child(2n+1), .wblm-woocommerce-columns-4 .upsells.products > .products > .product:nth-child(2n+1), .wblw.columns-3 > .products > .product:nth-child(2n+1), .wblw.columns-4 > .products > .product:nth-child(2n+1), .wblw.columns-5 > .products > .product:nth-child(2n+1), .wblw.columns-6 > .products > .product:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    div.wblw > .single-product .wblw-tabs ul.tabs > li a {
        padding: 12px 7px
    }
}

@media only screen and (max-width: 1024px) {
    div.wblw > .single-product .wblw-tabs ul.tabs > li a {
        padding: 13px 10px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-woocommerce-columns-3 .cross-sells > .products > .product, .wblm-woocommerce-columns-3 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-3 .related.products > .products > .product, .wblm-woocommerce-columns-3 .upsells.products > .products > .product, .wblm-woocommerce-columns-4 .cross-sells > .products > .product, .wblm-woocommerce-columns-4 .wblm-pl-main-holder > .products > .product, .wblm-woocommerce-columns-4 .related.products > .products > .product, .wblm-woocommerce-columns-4 .upsells.products > .products > .product, .wblw.columns-2 > .products > .product, .wblw.columns-3 > .products > .product, .wblw.columns-4 > .products > .product, .wblw.columns-5 > .products > .product, .wblw.columns-6 > .products > .product {
        width: 100%
    }

    div.wblw > .single-product .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child) {
        width: 50%
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1440px) {
    .wblm-woo-single-page .wblw-tabs ul.tabs > li a {
        padding: 13px 9px
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    .wblm-woo-single-page .wblw-tabs ul.tabs > li a {
        padding: 12px 7px
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-woo-single-page .wblm-single-product-content .wblm-single-product-summary, .wblm-woo-single-page .wblm-single-product-content .images {
        float: none;
        width: 100%;
        padding: 0
    }

    .wblm-woo-single-page .wblm-single-product-content .images .wblw-product-gallery__trigger {
        right: 10px
    }

    .wblm-woo-single-page .wblm-single-product-content .wblm-single-product-summary {
        margin: 30px 0 0
    }

    .wblm-woo-single-page .wblw-tabs ul.tabs > li a {
        padding: 13px 10px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-woo-single-page .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child), .wblm-woo-single-page.wblm-woo-single-thumb-on-left-side .wblm-single-product-content .images.wblw-product-gallery--columns-4 .wblw-product-gallery__image:not(:first-child) {
        width: 50%
    }
}

@media only screen and (max-width: 768px) {
    .wblm-shopping-cart-dropdown ul {
        margin: 20px
    }
}

@media only screen and (max-width: 1440px) {
    .wblm-pla-holder.wblm-six-columns .wblm-pla-item {
        width: 20%
    }
}

@media only screen and (max-width: 1440px) and (min-width: 1201px) {
    .wblw.columns-6 > .products > .product:nth-child(5n+1) {
        clear: both
    }

    .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(6n+1) {
        clear: none
    }

    .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width: 1300px) {
    .wblm-pla-holder .wblm-pla-inner .wblm-pla-text-inner .added_to_cart, .wblm-pla-holder .wblm-pla-inner .wblm-pla-text-inner .button {
        height: 44px;
        line-height: 44px;
        padding: 0 36px
    }


    .wblm-pla-holder .wblm-pla-text-wrapper {
        margin: 0 0 20px
    }

    .wblm-pla-holder .wblm-pla-text-wrapper .wblm-pla-title {
        margin: 24px 0 10px
    }
}

@media only screen and (max-width: 1200px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item, .wblm-pla-holder.wblm-six-columns .wblm-pla-item {
        width: 25%
    }
}

@media only screen and (max-width: 1200px) and (min-width: 1025px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item:nth-child(5n+1) {
        clear: none
    }

    .wblm-pla-holder.wblm-five-columns .wblm-pla-item:nth-child(4n+1) {
        clear: both
    }

    .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(6n+1) {
        clear: none
    }

    .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width: 1024px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item, .wblm-pla-holder.wblm-four-columns .wblm-pla-item, .wblm-pla-holder.wblm-six-columns .wblm-pla-item {
        width: 50%
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-four-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-three-columns .wblm-pla-item:nth-child(3n+1), .wblm-pla-holder.wblm-two-columns .wblm-pla-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width: 768px) and (min-width: 681px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-four-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-six-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-three-columns .wblm-pla-item:nth-child(2n+1), .wblm-pla-holder.wblm-two-columns .wblm-pla-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width: 768px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item, .wblm-pla-holder.wblm-four-columns .wblm-pla-item, .wblm-pla-holder.wblm-six-columns .wblm-pla-item, .wblm-pla-holder.wblm-three-columns .wblm-pla-item, .wblm-pla-holder.wblm-two-columns .wblm-pla-item {
        width: 50%
    }

    .wblm-pla-holder .wblm-pla-inner .wblm-pla-text-inner .added_to_cart, .wblm-pla-holder .wblm-pla-inner .wblm-pla-text-inner .button {
        height: 38px;
        line-height: 38px;
        padding: 0 27px;
        letter-spacing: 1px
    }

    .wblm-plc-holder.wblm-simple-type .wblm-plc-image-outer, .wblm-plc-holder.wblm-simple-type .wblm-plc-text-wrapper {
        display: inline-block;
        width: 100%;
        padding: 0
    }

    .wblm-plc-holder.wblm-simple-type .wblm-plc-text-wrapper {
        margin: 30px 0 40px
    }
}

@media only screen and (max-width: 680px) {
    .wblm-pla-holder.wblm-five-columns .wblm-pla-item, .wblm-pla-holder.wblm-four-columns .wblm-pla-item, .wblm-pla-holder.wblm-six-columns .wblm-pla-item, .wblm-pla-holder.wblm-three-columns .wblm-pla-item, .wblm-pla-holder.wblm-two-columns .wblm-pla-item {
        width: 100%
    }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .wblm-product-single .wblm-sp-text-wrapper {
        bottom: -37px
    }



}

@media screen and (max-width: 414px) {
    .wblm-woo-normal-space ul.products > .product{
        width:100%;
    }
}
@media screen and (max-width: 540px) {
    .wblm-grid-row {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .bread_crap_setps {
        padding: 0px !important;
        margin-top: 0px !important;
        text-align: center;
    }
    #my_cart .qnt_box input.wblm-quantity-input {
        height: 25px !important;
        width: 25px !important;
    }
    .wblm-quantity-buttons .wblm-quantity-input, .wblm-quantity-buttons .wblm-quantity-input {
        position: relative;
        height: 50px !important;
        width: 50px !important;
        padding: 0;
        margin: 0 25px 0 0;
        font-family: Poppins, sans-serif;
        line-height: 48px;
        font-size: 13px;
        font-weight: 600;
        color: #2d2d2d;
        outline: 0;
        padding-right: 0px !important;
    }

    .total_cart_line {
        text-align: center !important;
        padding: 10px !important;
        font-size: 18px !important;
    }

    .coupon_code_area input, .coupon_code_area span.code_apply {
        display: inline-table;
        width: 90%;
    }
    div#bill_infos {
        width: 75% !important;
        text-align: left;
        margin: 0 auto;
        /* border: 1px solid #c4c4c4; */
        padding: 20px 0px !important;
        border-radius: 9px;
    }

    h2.cart_ht {
        font-size: 17px !important;
        color: #262626;
        padding: 12px 0px !important;
        text-transform: uppercase;
        font-weight: 300;
    }

    /* CUSTOM FOR MOBILE CART */
    div.cart {
        padding-top: 20px !important;
    }

    table > tbody > tr > td {
        display: inline-flex !important;
        max-width: 100%;
        padding: 2px 2px 10px 2px;
    }

    .qnt_box, .rmv_box, .tot_row, .item_price_box {
        width: 27%;
    }

    .item_price_box {
        display: none !important;
    }

    img.cart_thumb {
        height: 90px;
        max-width: 90px !important;
        float: left !important;
        vertical-align: middle;
        display: block;
    }

    .cart_prodetails {
        margin-left: 20px;
        font-size: 12px !important;
        width: 60% !important;
        vertical-align: middle;
        /* float: none !important; */
        display: inline-block !important;
        min-height: fit-content !important;
    }

    .cart_prodetails.color_box {
        margin-left: 20px;
        font-size: 12px !important;
        width: 30% !important;
        vertical-align: middle;
        /* float: none !important; */
        display: inline-block !important;
        min-height: 123px;
    }

    .cart_prodetails span {
        display: block;
        width: fit-content;
        padding: 2px;
        line-height: 25px;
        margin-bottom: 0px;
        border-radius: 4px;
        text-transform: uppercase;
    }

    .cart_prodetails span.title::after {
        content: " ";
        display: block;
        height: 1px;
        background-color: #c4c4c4;
        box-shadow: #ffffff 0px 0px 0px 1px;
        margin-top: 8px
    }

    .wblm-quantity-buttons {
        width: 76px;
        display: block;
        height: 50px;
    }

    .wblm-woo-normal-space ul.products > .product {
        width: 50% !important;
        margin: 0 0 10px !important;
    }
    ul.products > .product .wblm-product-list-title {
        float: right !important;
        width: 100% !important;
        margin: 0;
        line-height: 21px;
        font-size: 12px;
        min-height: 60px;
        max-height: 60px;
        word-break: break-word;
    }
    ul.products > .product .price {
    line-height: 22px;
    float: left !important;
    width: 100% !important;
    margin: 0;
    text-align: center !important;
    font-weight: bold;
    }
    .col-md-12.cookie-container {
        width: 90%;
    }

    .cart_prodetails .color_item, .cart_prodetails .size_item {
        padding: 5px !important;
        min-width: 10px !important;
        height: 10px !important;
        line-height: 10px !important;
        margin: 5px !important;
        vertical-align: middle;
        max-width: fit-content;
    }

}
    @media only screen and (max-width: 1024px) {
        .wblm-product-single .wblm-product-single-content {
            display: block
        }

        .wblm-product-single .wblm-product-single-image {
            display: block;
            height: auto;
            width: 100%
        }

        .wblm-product-single .wblm-product-single-text {
            display: block;
            height: auto;
            width: 100%;
            margin: 50px 0;
            padding: 0 0 0 50px
        }

        .wblm-product-single .wblm-product-single-text .wblm-product-single-custom-title {
            font-size: 40px
        }

        .wblm-product-single .wblm-product-single-text.wblm-single-product-position-right {
            padding: 0 50px 0 0
        }

        .wblm-product-single .wblm-product-single-text.wblm-single-product-position-right .wblm-product-single-custom-subtitle {
            padding-top: 70px
        }

        .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-left .wblm-sp-text-wrapper, .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-right .wblm-sp-text-wrapper {
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            margin: 0;
            padding: 15px;
            text-align: left
        }

        .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-left .wblm-sp-text-wrapper .wblm-product-single-title, .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-right .wblm-sp-text-wrapper .wblm-product-single-title {
            width: calc(100% - 80px);
            float: left;
            display: block;
            margin: 0
        }

        .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-left .wblm-sp-text-wrapper .wblm-sp-price, .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-right .wblm-sp-text-wrapper .wblm-sp-price {
            width: calc(100% - 80px);
            float: left;
            display: block;
            margin: 10px 0 0;
            clear: none
        }

        .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-left .wblm-sp-text-wrapper .wblm-sp-button, .wblm-product-single.wblm-product-text-outside.wblm-product-single-featured-right .wblm-sp-text-wrapper .wblm-sp-button {
            position: absolute;
            z-index: 2;
            display: inline-block;
            margin: 0;
            right: 15px;
            top: 15px;
            width: 80px
        }

        .rev_slider_wrapper .wblm-product-single .wblm-product-single-image {
            display: none
        }

        .rev_slider_wrapper .wblm-product-single .wblm-product-single-text {
            padding: 0;
            margin: 0
        }

        .rev_slider_wrapper .wblm-product-single .wblm-product-single-text.wblm-single-product-position-right {
            padding: 0
        }

        .rev_slider_wrapper .wblm-product-single .wblm-sp-text-wrapper {
            padding: 0 15px 15px;
            box-sizing: border-box
        }

        .rev_slider_wrapper .wblm-product-single .wblm-rating-holder {
            right: 15px
        }

        #yith-quick-view-modal .yith-wcqv-wrapper {
            max-height: 506px !important
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-product-single .wblm-product-single-text, .wblm-product-single .wblm-product-single-text.wblm-single-product-position-right {
            padding: 0 15px
        }

        .wblm-product-single .wblm-product-single-text .wblm-sp-excerpt, .wblm-product-single .wblm-product-single-text.wblm-single-product-position-right .wblm-sp-excerpt {
            margin: 0
        }
    }

    @media only screen and (max-width: 768px) {
        #yith-quick-view-modal #yith-quick-view-content .product div.images {
            width: 100%;
            float: none
        }

        #yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper div, #yith-quick-view-modal #yith-quick-view-content .product div.images figure.wblw-product-gallery__wrapper div:first-child {
            padding: 0
        }

        #yith-quick-view-modal #yith-quick-view-content .product div.summary {
            width: calc(100% - 40px)
        }

        #yith-quick-view-modal #yith-quick-view-content .product div.summary .wblw-product-rating {
            line-height: 2
        }

        .wblw-wishlist .wblw-error, .wblw-wishlist .wblw-info, .wblw-wishlist .wblw-message {
            padding: 17px 25px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblw-wishlist table.wishlist_table tbody tr td.product-thumbnail, .wblw-wishlist table.wishlist_table thead tr th.product-thumbnail {
            display: none
        }

        .wblw-wishlist .wblm-container-inner {
            width: 98%
        }

        .wblw-wishlist .wblw-error, .wblw-wishlist .wblw-info, .wblw-wishlist .wblw-message {
            padding: 14px 20px;
            line-height: 2em
        }

        .wblw-wishlist .wblw-error a, .wblw-wishlist .wblw-info a, .wblw-wishlist .wblw-message a {
            float: none;
            margin: 0 70% 15px 0
        }

        .wblw-wishlist table.wishlist_table thead tr th {
            padding: 14px 10px;
            font-size: 14px
        }

        .wblw-wishlist table.wishlist_table thead tr th.product-name {
            position: relative
        }

        .wblw-wishlist table.wishlist_table tbody tr td {
            padding: 25px 6px;
            line-height: 1.2em
        }

        .wblw-wishlist table.wishlist_table tbody tr td.product-name a {
            font-size: 12px;
            padding-left: 1px;
            padding-right: 5px
        }

        .wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart a {
            padding: 0;
            font-size: 12px;
            color: #000;
            background-color: transparent;
            border: 0
        }

        .wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart a:after {
            height: 0
        }

        .wblw-wishlist table.wishlist_table tbody tr td.product-add-to-cart a:hover {
            -webkit-animation: none;
            -moz-animation: none;
            -o-animation: none;
            animation: none
        }

        .wblw-wishlist table.wishlist_table tbody tr td .product-stock-status, .wblw-wishlist table.wishlist_table tbody tr td.product-price {
            font-size: 14px
        }
    }

    .cf7_custom_style_2 textarea.wpcf7-form-control.wpcf7-textarea {
        height: 120px;
    }

    .wblm-page-footer .wblm-footer-top-holder {
        border-color: #414141;
        border-width: 1px;
    }

    .wblm-fullscreen-menu-holder {
        background-image: url(https://onea.qodeinteractive.com/wp-content/uploads/2018/10/full-screen-img-1.jpg);
        background-position: center 0;
        background-repeat: no-repeat;
    }

    .wblm-header-box .wblm-top-bar-background {
        height: 91px;
    }

    @media only screen and (max-width: 1200px) {
        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 950px
        }
    }

    @media only screen and (max-width: 1024px) {
        body:not(.wblm-content-is-behind-header):not(.error404) .wblm-content {
            margin-top: 0 !important
        }

        .wblm-hide-on-tablet {
            display: none !important
        }

        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 768px
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 600px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-hide-on-mobile {
            display: none !important
        }

        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 420px
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 300px
        }
    }

    @media only screen and (max-width: 320px) {
        .wblm-container-inner, .wblm-grid, .wblm-row-grid-section {
            width: 90%
        }
    }

    @media only screen and (max-width: 1200px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 1000px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 818px
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 650px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 470px
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 350px
        }
    }

    @media only screen and (max-width: 320px) {
        .wblm-boxed .wblm-wrapper .wblm-footer-inner, .wblm-boxed .wblm-wrapper .wblm-wrapper-inner {
            width: 92%
        }
    }

    @media only screen and (max-width: 1280px) {
        .wblm-huge-space .wblm-outer-space {
            margin: 0 -25px
        }

        .wblm-huge-space .wblm-outer-space .wblm-item-space {
            padding: 0 25px;
            margin: 0 0 50px
        }

        .wblm-huge-space.wblm-disable-bottom-space {
            margin-bottom: -50px
        }

        .wblm-huge-space.wblm-columns-has-side-space {
            padding: 0 50px
        }
    }

    @media only screen and (max-width: 1440px) {
        .wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer {
            width: 20%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 40%
        }
    }

    @media only screen and (max-width: 1440px) and (min-width: 1367px) {
        .wblm-grid-list.wblm-six-columns .wblm-item-space:nth-child(5n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 1366px) {
        .wblm-grid-list.wblm-five-columns .wblm-item-space, .wblm-grid-list.wblm-five-columns .wblm-masonry-grid-sizer {
            width: 25%
        }

        .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 50%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer {
            width: 25%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 50%
        }
    }

    @media only screen and (max-width: 1366px) and (min-width: 1025px) {
        .wblm-grid-list.wblm-five-columns .wblm-item-space:nth-child(4n+1), .wblm-grid-list.wblm-six-columns .wblm-item-space:nth-child(4n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-grid-list.wblm-four-columns .wblm-item-space, .wblm-grid-list.wblm-four-columns .wblm-masonry-grid-sizer {
            width: 33.33333%
        }

        .wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 66.66667%
        }

        .wblm-grid-list.wblm-five-columns .wblm-item-space, .wblm-grid-list.wblm-five-columns .wblm-masonry-grid-sizer {
            width: 33.33333%
        }

        .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 66.66667%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer {
            width: 33.33333%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 66.66667%
        }

        .wblm-blog-slider-holder.wblm-bs-carousel-centered .active.center .wblm-item-text-wrapper {
            opacity: 1
        }
    }

    @media only screen and (max-width: 1024px) and (min-width: 769px) {
        .wblm-grid-list.wblm-five-columns .wblm-item-space:nth-child(3n+1), .wblm-grid-list.wblm-four-columns .wblm-item-space:nth-child(3n+1), .wblm-grid-list.wblm-six-columns .wblm-item-space:nth-child(3n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-grid-list.wblm-three-columns .wblm-item-space, .wblm-grid-list.wblm-three-columns .wblm-masonry-grid-sizer {
            width: 50%
        }

        .wblm-grid-list.wblm-three-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-three-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 100%
        }

        .wblm-grid-list.wblm-four-columns .wblm-item-space, .wblm-grid-list.wblm-four-columns .wblm-masonry-grid-sizer {
            width: 50%
        }

        .wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-four-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 100%
        }

        .wblm-grid-list.wblm-five-columns .wblm-item-space, .wblm-grid-list.wblm-five-columns .wblm-masonry-grid-sizer {
            width: 50%
        }

        .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-five-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 100%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer {
            width: 50%
        }

        .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width, .wblm-grid-list.wblm-six-columns .wblm-item-space.wblm-masonry-size-large-width-height {
            width: 100%
        }
    }

    @media only screen and (max-width: 768px) and (min-width: 681px) {
        .wblm-grid-list.wblm-five-columns .wblm-item-space:nth-child(2n+1), .wblm-grid-list.wblm-four-columns .wblm-item-space:nth-child(2n+1), .wblm-grid-list.wblm-six-columns .wblm-item-space:nth-child(2n+1), .wblm-grid-list.wblm-three-columns .wblm-item-space:nth-child(2n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-grid-list.wblm-five-columns .wblm-item-space, .wblm-grid-list.wblm-five-columns .wblm-masonry-grid-sizer, .wblm-grid-list.wblm-four-columns .wblm-item-space, .wblm-grid-list.wblm-four-columns .wblm-masonry-grid-sizer, .wblm-grid-list.wblm-six-columns .wblm-item-space, .wblm-grid-list.wblm-six-columns .wblm-masonry-grid-sizer, .wblm-grid-list.wblm-three-columns .wblm-item-space, .wblm-grid-list.wblm-three-columns .wblm-masonry-grid-sizer, .wblm-grid-list.wblm-two-columns .wblm-item-space, .wblm-grid-list.wblm-two-columns .wblm-masonry-grid-sizer {
            width: 100%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-related-posts-holder .wblm-related-post {
            width: 50% !important
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-related-posts-holder .wblm-related-post {
            width: 100% !important
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-blog-holder.wblm-blog-single article .wblm-post-info-bottom .wblm-post-info-bottom-left, .wblm-blog-holder.wblm-blog-single article .wblm-post-info-bottom .wblm-post-info-bottom-right {
            width: 100%;
            float: none
        }

        .wblm-blog-holder.wblm-blog-single article .wblm-post-info-bottom .wblm-post-info-bottom-right {
            text-align: inherit;
            margin: 10px 0 0
        }
    }

    @media only screen and (max-width: 1024px) and (min-width: 681px) {
        .wblm-page-footer .wblm-column-content.wblm-grid-col-3 {
            width: 50%;
            float: left
        }

        .wblm-page-footer .wblm-column-content.wblm-grid-col-3:nth-child(2n+1) {
            clear: both
        }

        .wblm-page-footer .wblm-column-content.wblm-grid-col-3:nth-child(3), .wblm-page-footer .wblm-column-content.wblm-grid-col-3:nth-child(4) {
            margin-top: 30px
        }

        .wblm-page-footer .wblm-column-content.wblm-grid-col-4 {
            width: 33.33333333333333%;
            float: left
        }

        .wblm-instagram-list-holder.wblm-il-three-columns .wblm-il-item:nth-child(2n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 1200px) {
        .wblm-boxed .wblm-page-header .wblm-fixed-wrapper.fixed {
            width: 1000px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-page-header {
            display: none
        }

        .wblm-fullscreen-menu-holder .wblm-fullscreen-menu-holder-inner {
            padding: 90px 21px 20px
        }

        .wblm-fullscreen-above-menu-widget-holder, .wblm-fullscreen-below-menu-widget-holder {
            right: 10%
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-page-footer .wblm-column-content:not(:first-child) {
            margin-top: 30px
        }

        .wblm-fullscreen-menu-holder .wblm-fullscreen-menu-holder-inner {
            padding: 60px 10px
        }

        nav.wblm-fullscreen-menu > ul > li.has_sub > a > span:after {
            bottom: 0
        }

        nav.wblm-fullscreen-menu > ul > li > ul.sub_menu {
            top: calc(100% - 54px)
        }

        nav.wblm-fullscreen-menu > ul > li > a {
            font-size: 25px
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-fullscreen-menu-holder .wblm-fullscreen-menu-holder-inner {
            padding: 90px 10px 20px
        }

        nav.wblm-fullscreen-menu > ul {
            width: 160px
        }

        nav.wblm-fullscreen-menu > ul > li.open_sub > a > span:after {
            width: calc(100% + 30px)
        }

        nav.wblm-fullscreen-menu > ul > li ul.sub_menu li a {
            left: 45px
        }

        .wblm-fullscreen-below-menu-widget-holder {
            bottom: 0
        }
    }

    @media only screen and (min-width: 1490px) and (max-width: 1650px) {
        .wblm-header-vertical-sliding .wblm-container-inner, .wblm-header-vertical-sliding .wblm-grid, .wblm-header-vertical-sliding .wblm-row-grid-section {
            width: 1100px
        }
    }

    @media only screen and (min-width: 1314px) and (max-width: 1490px) {
        .wblm-header-vertical-sliding .wblm-container-inner, .wblm-header-vertical-sliding .wblm-grid, .wblm-header-vertical-sliding .wblm-row-grid-section {
            width: 1035px
        }
    }

    @media only screen and (min-width: 1024px) and (max-width: 1314px) {
        .wblm-header-vertical-sliding .wblm-container-inner, .wblm-header-vertical-sliding .wblm-grid, .wblm-header-vertical-sliding .wblm-row-grid-section {
            width: 900px
        }
    }

    @media only screen and (min-width: 1025px) {
        .error404.wblm-header-vertical .wblm-content, .error404.wblm-header-vertical-sliding .wblm-content {
            margin: 0 !important
        }
    }

    @media only screen and (max-width: 1440px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 950px
        }

        .wblm-frame-slider-holder .wblm-fs-phone {
            background-size: contain
        }
    }

    @media only screen and (max-width: 1200px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 768px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-header-vertical-sliding .wblm-vertical-menu-area {
            display: none
        }

        .wblm-header-vertical-sliding .wblm-content, .wblm-header-vertical-sliding footer {
            padding-left: 0
        }

        .wblm-header-vertical .wblm-vertical-menu-area {
            display: none
        }

        .wblm-header-vertical .wblm-content, .wblm-header-vertical footer {
            padding-left: 0
        }

        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 768px
        }

        .wblm-mobile-header {
            display: block
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 600px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 420px
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 300px
        }
    }

    @media only screen and (max-width: 320px) {
        .wblm-header-vertical .wblm-container-inner, .wblm-header-vertical .wblm-grid, .wblm-header-vertical .wblm-row-grid-section {
            width: 90%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-paspartu-enabled .wblm-mobile-header .wblm-grid {
            width: 90%
        }
    }

    @media only screen and (max-width: 1200px) {
        .wblm-boxed .wblm-page-header .wblm-sticky-header {
            width: 1000px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-boxed.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
            width: 818px;
            left: auto
        }

        .wblm-top-bar {
            display: none
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-boxed.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
            width: 650px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-boxed.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
            width: 470px
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-boxed.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
            width: 350px
        }
    }

    @media only screen and (max-width: 320px) {
        .wblm-boxed.wblm-sticky-up-mobile-header .mobile-header-appear .wblm-mobile-header-inner {
            width: 92%
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-search-page-holder article .wblm-post-image {
            width: 80px
        }

        .wblm-search-page-holder article .wblm-post-title-area {
            padding: 0 0 0 105px;
            min-height: 80px
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-search-page-holder article .wblm-post-image {
            width: 60px
        }

        .wblm-search-page-holder article .wblm-post-title-area {
            padding: 0 0 0 80px;
            min-height: 60px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-fullscreen-with-sidebar-search-holder .wblm-form-holder-inner {
            width: 75%
        }

        .wblm-fullscreen-search-holder .wblm-form-holder-inner {
            width: 80%
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-fullscreen-with-sidebar-search-holder .wblm-form-holder-inner {
            width: 80%
        }
    }

    @media only screen and (max-width: 1280px) {
        .wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-search-cell {
            padding: 50px 0 0
        }

        .wblm-fullscreen-with-sidebar-search-holder .wblm-fullscreen-sidebar {
            margin: 20px 0 0
        }

        .wblm-fullscreen-with-sidebar-search-holder .wblm-search-field {
            font-size: 70px
        }

        .wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit {
            font-size: 40px
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner {
            width: 63%
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-subscribe-popup-holder .wblm-sp-inner {
            width: 75%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-fullscreen-with-sidebar-search-holder .wblm-field-holder .wblm-search-field {
            font-size: 25px
        }

        .wblm-fullscreen-with-sidebar-search-holder .wblm-search-submit {
            font-size: 25px;
            bottom: 25px !important
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner {
            width: 90%;
            min-height: auto;
            min-width: auto
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-content-text {
            top: 29%
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-subscribe-popup-holder .wblm-sp-content-container {
            width: 100%;
            padding: 0 40px
        }

        .wblm-subscribe-popup-holder .wblm-sp-background {
            display: none
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner {
            width: 90%;
            min-height: auto;
            min-width: auto;
            box-shadow: none
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-prevent {
            position: relative;
            right: 0;
            bottom: 0;
            text-align: center;
            margin-top: 25px
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-content-container {
            width: 100%;
            padding: 20px 10px;
            overflow: hidden;
            box-sizing: border-box
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-content-text {
            position: relative;
            top: 20px;
            left: 0;
            width: 100%;
            margin: 0
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-title {
            font-size: 30px;
            margin: 35px 0;
            padding-bottom: 26px
        }

        .wblm-subscribe-popup-holder .wblm-sp-inner .wblm-sp-close {
            top: 20px;
            right: 20px
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-title-holder.wblm-has-bg-image {
            height: auto !important;
            background-image: none !important
        }

        .wblm-title-holder.wblm-has-bg-image .wblm-title-image {
            display: block
        }

        .wblm-title-holder.wblm-has-bg-image .wblm-title-wrapper {
            position: absolute;
            top: 50%;
            left: 0;
            height: 100% !important;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            transform: translateY(-50%)
        }

        .wblm-title-holder.wblm-title-va-header-bottom {
            height: auto !important
        }

        .wblm-title-holder.wblm-title-va-header-bottom .wblm-title-wrapper {
            padding-top: 0 !important;
            height: 100px;
        }

        .wblm-title-holder.wblm-centered-type .wblm-page-subtitle {
            padding: 0 !important
        }

        .wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs-info, .wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-title-info {
            display: block;
            width: 100%
        }

        .wblm-title-holder.wblm-standard-with-breadcrumbs-type .wblm-breadcrumbs-info {
            margin: 10px 0 0;
            text-align: initial;
            white-space: inherit
        }

        .wblm-portfolio-single-holder .wblm-ps-info-holder {
            margin: 30px 0 0 !important
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-portfolio-single-holder .wblm-ps-image-holder.wblm-ps-gallery-images .wblm-ps-image {
            width: 100% !important
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-shop-masonry-gallery-holder .wblm-smg-grid-sizer, .wblm-shop-masonry-gallery-holder .wblm-smg-item {
            width: 33.3333%
        }

        .wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-gallery-product, .wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-rectangle-landscape, .wblm-shop-masonry-gallery-holder .wblm-smg-item.wblm-smg-square-big {
            width: 100%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-shop-masonry-gallery-holder .wblm-smg-grid-sizer, .wblm-shop-masonry-gallery-holder .wblm-smg-item {
            width: 50%
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-shop-masonry-gallery-holder .wblm-smg-grid-sizer, .wblm-shop-masonry-gallery-holder .wblm-smg-item {
            width: 100%
        }

        .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner {
            padding: 0 10px 0 30%;
            box-sizing: border-box
        }

        .wblm-testimonials-holder.wblm-testimonials-image-pagination .wblm-testimonials-image-pagination-inner .wblm-testimonial-text {
            font-size: 15px;
            line-height: 27px
        }
    }

    @media only screen and (min-width: 1201px) and (max-width: 1300px) {
        .wblm-call-to-action-holder .wblm-grid {
            width: 1100px
        }
    }

    @media only screen and (max-width: 1200px) {
        .wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-text-holder, .wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-text-holder {
            width: 66.66666666666667%
        }

        .wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-button-holder {
            width: 33.33333333333333%
        }

        .wblm-countdown .countdown-row .countdown-section .countdown-amount {
            font-size: 60px
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-inner, .wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-text-holder {
            display: block
        }

        .wblm-call-to-action-holder.wblm-normal-layout .wblm-cta-button-holder {
            margin: 28px 0 0;
            text-align: initial
        }

        .wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-four-fifths-columns .wblm-cta-text-holder, .wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-three-quarters-columns .wblm-cta-text-holder, .wblm-call-to-action-holder.wblm-two-halves-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-two-halves-columns .wblm-cta-text-holder, .wblm-call-to-action-holder.wblm-two-thirds-columns .wblm-cta-button-holder, .wblm-call-to-action-holder.wblm-two-thirds-columns .wblm-cta-text-holder {
            width: 100%
        }

        .wblm-countdown .countdown-row.countdown-show4 .countdown-section, .wblm-countdown .countdown-row.countdown-show5 .countdown-section, .wblm-countdown .countdown-row.countdown-show6 .countdown-section {
            width: 33.33333333333333%
        }

        .wblm-countdown .countdown-row .countdown-section .countdown-amount {
            font-size: 50px
        }

        .wblm-custom-font-holder.wblm-disable-title-break br {
            display: none
        }
    }

    @media only screen and (max-width: 1366px) {
        .wblm-elements-holder.wblm-responsive-mode-1366.wblm-five-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1366.wblm-four-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1366.wblm-six-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1366.wblm-three-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1366.wblm-two-columns .wblm-eh-item {
            width: 100%;
            height: auto;
            display: inline-block
        }

        .wblm-elements-holder.wblm-responsive-mode-1366.wblm-one-column-alignment-left .wblm-eh-item .wblm-eh-item-content {
            text-align: left
        }

        .wblm-elements-holder.wblm-responsive-mode-1366.wblm-one-column-alignment-right .wblm-eh-item .wblm-eh-item-content {
            text-align: right
        }

        .wblm-elements-holder.wblm-responsive-mode-1366.wblm-one-column-alignment-center .wblm-eh-item .wblm-eh-item-content {
            text-align: center
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-btn.wblm-btn-huge, .wblm-btn.wblm-btn-large {
            padding: 9px 46px
        }

        .wblm-elements-holder.wblm-responsive-mode-1024.wblm-five-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1024.wblm-four-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1024.wblm-six-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1024.wblm-three-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-1024.wblm-two-columns .wblm-eh-item {
            width: 100%;
            height: auto;
            display: inline-block
        }

        .wblm-elements-holder.wblm-responsive-mode-1024.wblm-one-column-alignment-left .wblm-eh-item .wblm-eh-item-content {
            text-align: left
        }

        .wblm-elements-holder.wblm-responsive-mode-1024.wblm-one-column-alignment-right .wblm-eh-item .wblm-eh-item-content {
            text-align: right
        }

        .wblm-elements-holder.wblm-responsive-mode-1024.wblm-one-column-alignment-center .wblm-eh-item .wblm-eh-item-content {
            text-align: center
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-elements-holder.wblm-responsive-mode-768.wblm-five-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-768.wblm-four-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-768.wblm-six-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-768.wblm-three-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-768.wblm-two-columns .wblm-eh-item {
            width: 100%;
            height: auto;
            display: inline-block
        }

        .wblm-elements-holder.wblm-responsive-mode-768.wblm-one-column-alignment-left .wblm-eh-item .wblm-eh-item-content {
            text-align: left
        }

        .wblm-elements-holder.wblm-responsive-mode-768.wblm-one-column-alignment-right .wblm-eh-item .wblm-eh-item-content {
            text-align: right
        }

        .wblm-elements-holder.wblm-responsive-mode-768.wblm-one-column-alignment-center .wblm-eh-item .wblm-eh-item-content {
            text-align: center
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-countdown .countdown-row .countdown-section .countdown-amount {
            font-size: 40px
        }

        .wblm-elements-holder.wblm-responsive-mode-680.wblm-five-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-680.wblm-four-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-680.wblm-six-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-680.wblm-three-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-680.wblm-two-columns .wblm-eh-item {
            width: 100%;
            height: auto;
            display: inline-block
        }

        .wblm-elements-holder.wblm-responsive-mode-680.wblm-one-column-alignment-left .wblm-eh-item .wblm-eh-item-content {
            text-align: left
        }

        .wblm-elements-holder.wblm-responsive-mode-680.wblm-one-column-alignment-right .wblm-eh-item .wblm-eh-item-content {
            text-align: right
        }

        .wblm-elements-holder.wblm-responsive-mode-680.wblm-one-column-alignment-center .wblm-eh-item .wblm-eh-item-content {
            text-align: center
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-elements-holder.wblm-responsive-mode-480.wblm-five-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-480.wblm-four-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-480.wblm-six-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-480.wblm-three-columns .wblm-eh-item, .wblm-elements-holder.wblm-responsive-mode-480.wblm-two-columns .wblm-eh-item {
            width: 100%;
            height: auto;
            display: inline-block
        }

        .wblm-elements-holder.wblm-responsive-mode-480.wblm-one-column-alignment-left .wblm-eh-item .wblm-eh-item-content {
            text-align: left
        }

        .wblm-elements-holder.wblm-responsive-mode-480.wblm-one-column-alignment-right .wblm-eh-item .wblm-eh-item-content {
            text-align: right
        }

        .wblm-elements-holder.wblm-responsive-mode-480.wblm-one-column-alignment-center .wblm-eh-item .wblm-eh-item-content {
            text-align: center
        }

        .wblm-elements-holder .wblm-eh-item-content {
            padding: 0 10px
        }

        div.product {
            padding-top: 30px !important;
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-frame-slider-holder {
            padding: 74px 0
        }

        .wblm-frame-slider-holder .wblm-fs-phone {
            height: 100%;
            width: 72%;
            background-size: 100% auto
        }

        .wblm-full-screen-image-slider .wblm-fsis-content-image, .wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots {
            display: none
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-frame-slider-holder {
            padding: 57px 0 66px
        }

        .wblm-frame-slider-holder .wblm-fs-phone {
            width: 76%
        }

        .wblm-single-product-summary form.cart {
            padding: 5px 0 !important;
            div.summary form.cart, .wblm-single-product-summary form.cart, .wblm-woo-single-page #yith-quick-view-content div.summary form.cart, .wblm-woo-single-page .wblm-single-product-summary form.cart {
                position: relative;
                display: inline-block;
                width: 100%;
                vertical-align: middle;
                margin: 57px 0 0;
            };
            margin: 20px 0 0 !important;
            border-top: 1px solid #c4c4c4;
        }
    }

    @media only screen and (max-width: 1440px) {
        .wblm-full-screen-image-slider .wblm-fsis-content-image img {
            max-width: 440px
        }
    }

    @media only screen and (max-width: 1280px) {
        .wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots {
            bottom: calc(8% - 14px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-thumb-nav {
            top: 16%;
            height: 68%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-top {
            height: 14%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-right {
            width: 14%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-top {
            height: 0
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-right {
            width: 0
        }

        .wblm-full-screen-image-slider .wblm-fsis-content-image img {
            max-width: 370px
        }

        .wblm-full-screen-image-slider .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-frame-top {
            height: 16%
        }

        .wblm-full-screen-image-slider .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-frame-right {
            width: 16%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-full-screen-image-slider .wblm-fsis-slider .owl-nav, .wblm-full-screen-image-slider .wblm-fsis-thumb-nav {
            display: none
        }

        .wblm-full-screen-image-slider .wblm-fsis-slider .owl-dots {
            bottom: calc(5% - 14px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-image-left {
            left: 2%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-image-right {
            right: 5%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-content-image-init .wblm-fsis-subtitle {
            margin: 15px 0 0
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-image-left {
            left: calc(2% - 10px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-image-right {
            right: calc(5% - 10px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-top {
            height: 10%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-image-hover .wblm-fsis-frame-right {
            width: 10%
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-image-left {
            left: calc(2% - 25px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-image-right {
            right: calc(5% - 25px)
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-top {
            height: 0
        }

        .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-item.wblm-fsis-active-image .wblm-fsis-frame-right {
            width: 0
        }

        .wblm-full-screen-image-slider .wblm-fsis-frame-bottom, .wblm-full-screen-image-slider .wblm-fsis-frame-top {
            height: 10%
        }

        .wblm-full-screen-image-slider .wblm-fsis-frame-left, .wblm-full-screen-image-slider .wblm-fsis-frame-right {
            width: 10%
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-full-screen-image-slider .wblm-fsis-content-image img {
            max-width: 340px
        }

        .wblm-google-map-overlay {
            display: block
        }

        .wblm-linked-images.wblm-linked-images-five-images .wblm-linked-image-holder, .wblm-linked-images.wblm-linked-images-four-images .wblm-linked-image-holder, .wblm-linked-images.wblm-linked-images-three-images .wblm-linked-image-holder {
            width: 50%
        }

        .wblm-linked-images.wblm-linked-images-five-images .wblm-linked-image-holder:nth-child(2n+1), .wblm-linked-images.wblm-linked-images-four-images .wblm-linked-image-holder:nth-child(2n+1), .wblm-linked-images.wblm-linked-images-three-images .wblm-linked-image-holder:nth-child(2n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 1366px) {
        .wblm-process-holder.wblm-responsive-1366 .wblm-mark-horizontal-holder {
            display: none
        }

        .wblm-process-holder.wblm-responsive-1366 .wblm-mark-vertical-holder {
            display: block
        }

        .wblm-process-holder.wblm-responsive-1366 .wblm-process-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            padding: 0 0 0 76px;
            margin: 0;
            box-sizing: border-box
        }

        .wblm-process-holder.wblm-responsive-1366 .wblm-process-item {
            width: 100%;
            float: none;
            padding: 0;
            text-align: inherit
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-process-holder.wblm-responsive-1024 .wblm-mark-horizontal-holder {
            display: none
        }

        .wblm-process-holder.wblm-responsive-1024 .wblm-mark-vertical-holder {
            display: block
        }

        .wblm-process-holder.wblm-responsive-1024 .wblm-process-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            padding: 0 0 0 76px;
            margin: 0;
            box-sizing: border-box
        }

        .wblm-process-holder.wblm-responsive-1024 .wblm-process-item {
            width: 100%;
            float: none;
            padding: 0;
            text-align: inherit
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-process-holder.wblm-responsive-768 .wblm-mark-horizontal-holder {
            display: none
        }

        .wblm-process-holder.wblm-responsive-768 .wblm-mark-vertical-holder {
            display: block
        }

        .wblm-process-holder.wblm-responsive-768 .wblm-process-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            padding: 0 0 0 76px;
            margin: 0;
            box-sizing: border-box
        }

        .wblm-process-holder.wblm-responsive-768 .wblm-process-item {
            width: 100%;
            float: none;
            padding: 0;
            text-align: inherit
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-linked-images.wblm-linked-images-five-images .wblm-linked-image-holder, .wblm-linked-images.wblm-linked-images-four-images .wblm-linked-image-holder, .wblm-linked-images.wblm-linked-images-three-images .wblm-linked-image-holder {
            width: 100%
        }

        .wblm-process-holder.wblm-responsive-680 .wblm-mark-horizontal-holder {
            display: none
        }

        .wblm-process-holder.wblm-responsive-680 .wblm-mark-vertical-holder {
            display: block
        }

        .wblm-process-holder.wblm-responsive-680 .wblm-process-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            padding: 0 0 0 76px;
            margin: 0;
            box-sizing: border-box
        }

        .wblm-process-holder.wblm-responsive-680 .wblm-process-item {
            width: 100%;
            float: none;
            padding: 0;
            text-align: inherit
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-process-holder.wblm-responsive-480 .wblm-mark-horizontal-holder {
            display: none
        }

        .wblm-process-holder.wblm-responsive-480 .wblm-mark-vertical-holder {
            display: block
        }

        .wblm-process-holder.wblm-responsive-480 .wblm-process-inner {
            position: relative;
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            padding: 0 0 0 76px;
            margin: 0;
            box-sizing: border-box
        }

        .wblm-process-holder.wblm-responsive-480 .wblm-process-item {
            width: 100%;
            float: none;
            padding: 0;
            text-align: inherit
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-section-title-holder.wblm-st-two-columns {
            padding: 0 !important
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-section-title-holder {
            padding: 0 !important
        }

        .wblm-section-title-holder.wblm-st-two-columns .wblm-st-text, .wblm-section-title-holder.wblm-st-two-columns .wblm-st-title {
            width: 100%;
            float: none !important;
            text-align: initial !important
        }

        .wblm-section-title-holder.wblm-st-two-columns .wblm-st-text {
            margin: 14px 0 0
        }

        .wblm-section-title-holder.wblm-st-disable-title-break .wblm-st-title br {
            display: none
        }

        .wblm-ss-holder.wblm-ss-break-768.wblm-ss-image-right .wblm-ss-image {
            position: relative;
            left: 0
        }

        .wblm-ss-holder.wblm-ss-break-768 .wblm-ss-content {
            left: 0;
            width: 100%;
            padding: 25px
        }

        .wblm-ss-holder.wblm-ss-break-768 .wblm-ss-image {
            position: relative;
            width: 100%;
            background-image: none !important
        }

        .wblm-ss-holder.wblm-ss-break-768 .wblm-ss-image img {
            display: block
        }
    }

    @media only screen and (max-width: 1366px) {
        .wblm-ss-holder.wblm-ss-break-1366.wblm-ss-image-right .wblm-ss-image {
            position: relative;
            left: 0
        }

        .wblm-ss-holder.wblm-ss-break-1366 .wblm-ss-content {
            left: 0;
            width: 100%;
            padding: 25px
        }

        .wblm-ss-holder.wblm-ss-break-1366 .wblm-ss-image {
            position: relative;
            width: 100%;
            background-image: none !important
        }

        .wblm-ss-holder.wblm-ss-break-1366 .wblm-ss-image img {
            display: block
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-ss-holder.wblm-ss-break-680.wblm-ss-image-right .wblm-ss-image {
            position: relative;
            left: 0
        }

        .wblm-ss-holder.wblm-ss-break-680 .wblm-ss-content {
            left: 0;
            width: 100%;
            padding: 25px
        }

        .wblm-ss-holder.wblm-ss-break-680 .wblm-ss-image {
            position: relative;
            width: 100%;
            background-image: none !important
        }

        .wblm-ss-holder.wblm-ss-break-680 .wblm-ss-image img {
            display: block
        }
    }

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

        .wblm-ss-holder.wblm-ss-break-480.wblm-ss-image-right .wblm-ss-image {
            position: relative;
            left: 0
        }

        .wblm-ss-holder.wblm-ss-break-480 .wblm-ss-content {
            left: 0;
            width: 100%;
            padding: 25px
        }

        .wblm-ss-holder.wblm-ss-break-480 .wblm-ss-image {
            position: relative;
            width: 100%;
            background-image: none !important
        }

        .wblm-ss-holder.wblm-ss-break-480 .wblm-ss-image img {
            display: block
        }

        table > thead {
            display: none;
        }

        table > tbody > tr > td {
            display: flex;
            width: 100%;

        }

    }

    @media only screen and (max-width: 1024px) {
        .wblm-ss-holder.wblm-ss-break-1024.wblm-ss-image-right .wblm-ss-image {
            position: relative;
            left: 0
        }

        .wblm-ss-holder.wblm-ss-break-1024 .wblm-ss-content {
            left: 0;
            width: 100%;
            padding: 25px
        }

        .wblm-ss-holder.wblm-ss-break-1024 .wblm-ss-image {
            position: relative;
            width: 100%;
            background-image: none !important
        }

        .wblm-ss-holder.wblm-ss-break-1024 .wblm-ss-image img {
            display: block
        }

        .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li a {
            padding: 7px 21px
        }

        .wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li {
            margin: 0 8px 0 0
        }

        .wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li a {
            padding: 7px 18px
        }

        .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li {
            margin: 0 26px 0 0
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav {
            width: 180px
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tab-container {
            width: calc(100% - 180px);
            padding: 0 0 0 30px
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li a, .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li a {
            width: 100%
        }

        .wblm-tabs.wblm-tabs-standard .wblm-tabs-nav li {
            display: block;
            float: none
        }

        .wblm-tabs.wblm-tabs-boxed .wblm-tabs-nav li {
            display: block;
            float: none;
            margin: 0 0 8px
        }

        .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li {
            margin: 0 20px 0 0
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tab-container, .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav {
            display: inline-block;
            width: 100%;
            height: auto
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav {
            border-right: 0
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li {
            float: left;
            margin: 0 20px 0 0
        }

        .wblm-tabs.wblm-tabs-vertical .wblm-tab-container {
            padding: 31px 0 0
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li, .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li {
            display: block;
            float: none;
            margin: 0 0 20px
        }

        .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav {
            padding: 0 0 20px
        }

        .wblm-tabs.wblm-tabs-simple .wblm-tabs-nav li a, .wblm-tabs.wblm-tabs-vertical .wblm-tabs-nav li a {
            padding: 0;
            width: 100%
        }
    }

    @media only screen and (max-width: 1280px) {
        .wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item, .wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item {
            width: 33.33333%
        }
    }

    @media only screen and (max-width: 1280px) and (min-width: 1025px) {
        .wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item:nth-child(3n+1), .wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item:nth-child(3n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 1024px) {
        body.wblm-vss-initialized {
            overflow-y: visible !important;
            height: auto !important
        }

        #multiscroll-nav, .wblm-vertical-split-slider {
            display: none
        }

        .wblm-vss-responsive {
            display: block
        }

        .wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item, .wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item, .wblm-instagram-list-holder.wblm-il-three-columns .wblm-il-item {
            width: 50%
        }
    }

    @media only screen and (max-width: 1024px) and (min-width: 681px) {
        .wblm-instagram-list-holder.wblm-il-five-columns .wblm-il-item:nth-child(2n+1), .wblm-instagram-list-holder.wblm-il-four-columns .wblm-il-item:nth-child(2n+1) {
            clear: both
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-instagram-list-holder .wblm-il-item {
            width: 100% !important
        }
    }

    @media only screen and (max-width: 1024px) {
        .wblm-instagram-feed:not(.wblm-instagram-carousel) li img {
            width: 100%
        }

        .wblm-instagram-feed:not(.wblm-instagram-carousel).wblm-col-6 li, .wblm-instagram-feed:not(.wblm-instagram-carousel).wblm-col-9 li {
            width: 25%
        }
    }

    @media only screen and (max-width: 768px) {
        .wblm-instagram-feed:not(.wblm-instagram-carousel).wblm-col-6 li, .wblm-instagram-feed:not(.wblm-instagram-carousel).wblm-col-9 li {
            width: 33.33333%
        }
    }

    @media only screen and (max-width: 680px) {
        .wblm-instagram-feed:not(.wblm-instagram-carousel) li {
            width: 50% !important
        }
    }

    @media only screen and (max-width: 480px) {
        .wblm-instagram-feed:not(.wblm-instagram-carousel) li {
            width: 100% !important
        }
    }

    textarea {
        padding: 13px 25px !important;
        margin-top: 10px !important;
        font-size: 10px !important;
        text-transform: none !important;
        letter-spacing: .16em !important;
        font-weight: 400 !important
    }

    @media only screen and (max-width: 1024px) {
    }

    @media only screen and (min-width: 769px) and (max-width: 1024px) {
    }

    @media only screen and (min-width: 681px) and (max-width: 768px) {
    }

    @media only screen and (max-width: 680px) {
        h1 {
            font-size: 38px;
        }

        h2 {
            font-size: 30px;
        }
    }
