/*
* Table of content
*
*
* HEADER
*
* SITE FOOTER
* Copyright Footer
*
* WIDGETS
*   Classic WP menu
*   Search widget
*   Newsletter
*
* WOOCOMMERCE
* Mini cart
*
* HELPER AND BASIC CLASSES
* Admin bar logo fix
* Backgrounds
* Page Content & Sidebar Divider
* Widgets
*   Contact Number Widget
*   Sidebar Widgets
*   Recent News Widget
*   Pages widget
*   RSS widget
*   Calendar widget
*
* REVOLUTION SLIDER NAVIGATION
*
* CUSTOM PADDINGS (HELPER CLASSES)
*
* WOOCOMMERCE
* Cart totals
* Cross sells
* Coupon
* Quantity field
* WooCommerce Checkout
* Site Notice
* Boxed layout
*/


/* # Header */

.anps-header--top .anps-header__content,
.anps-header--bottom .anps-header__content {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: var(--anps-hbar-m-height);
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: .4s height ease-out;
}

@media (min-width: 992px) {
  .anps-header--top .anps-header__content,
  .anps-header--bottom .anps-header__content {
    height: var(--anps-hbar-height);
  }
}

.anps-header--top .anps-header__bar,
.anps-header--bottom .anps-header__bar {
  background: var(--anps-hbar-bg);
}

.anps-header--shadow .anps-header__bar {
  box-shadow: 0 30px 100px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
}

@media (min-width: 992px) {
  .anps-header--full-width .container {
    padding: 0 80px;
    width: 100%;
  }
}

.anps-header--transparent {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
}

.anps-header--transparent:not(.anps-header--sticky) .anps-header__bar {
  box-shadow: none;
}

@media (min-width: 1200px) {
  .anps-header--bottom .anps-header__wrap {
    left: 0;
    position: absolute;
    width: 100%;
  }
}

.anps-header--sticky .anps-header__bar {
  background: var(--anps-sticky-bg);
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.anps-header--sticky .anps-header__bar .anps-main-menu > ul > .menu-item > a,
.anps-header--sticky .anps-header__bar .anps-main-menu > .menu-item > a {
  color: var(--anps-sticky-color);
}

.anps-header--sticky .anps-header__bar .anps-main-menu > ul > .menu-item > a:hover,
.anps-header--sticky .anps-header__bar .anps-main-menu > ul > .menu-item > a:focus,
.anps-header--sticky .anps-header__bar .anps-main-menu > .menu-item > a:hover,
.anps-header--sticky .anps-header__bar .anps-main-menu > .menu-item > a:focus {
  color: var(--anps-sticky-color--hover);
}

.anps-header--sticky .anps-main-menu .menu-search-toggle {
  color: var(--anps-sticky-color--active);
}

.anps-header--sticky .menu-item.current-menu-item > a {
  color: var(--anps-sticky-color--active) !important;
  cursor: default;
}

.anps-header--sticky .anps-header__content {
  height: var(--anps-hbar-m-height--sticky);
}

@media (min-width: 992px) {
  .anps-header--sticky .anps-header__content {
    height: var(--anps-hbar-height--sticky);
  }
}

.anps-logo {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 30px;
}

.anps-logo__sticky,
.anps-logo__mobile {
  display: none;
}

@media (max-width: 991px) {
  .anps-logo__main {
    display: none;
  }

  .anps-logo__mobile {
    display: block;
  }
}

.anps-header--sticky .anps-logo__main,
.anps-header--sticky .anps-logo__mobile {
  display: none;
}

.anps-header--sticky .anps-logo__sticky {
  display: block;
}

ul.anps-main-menu,
.anps-main-menu > ul {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.anps-main-menu > ul > li,
.anps-main-menu > li {
  position: relative;
}

.anps-main-menu > ul > li + li,
.anps-main-menu > li + li {
  margin-left: var(--anps-menu-spacing);
}

@media (max-width: 1199px) {
  .anps-main-menu > ul > .menu-item,
  .anps-main-menu > .menu-item {
    display: none;
  }
}

.anps-main-menu > ul > .menu-item > a,
.anps-main-menu > .menu-item > a {
  color: var(--anps-menu-color);
  display: inline-block;
  font-size: var(--anps-menu-font-size);
  padding: 10px 5px;
  transition: .2s color ease-in-out;
}

.anps-main-menu > ul > .menu-item > a:hover,
.anps-main-menu > ul > .menu-item > a:focus,
.anps-main-menu > .menu-item > a:hover,
.anps-main-menu > .menu-item > a:focus {
  color: var(--anps-menu-color--hover);
}

.anps-main-menu .menu-item:hover > .sub-menu,
.anps-main-menu .menu-item:focus > .sub-menu {
  opacity: 1;
  pointer-events: all;
}

.anps-main-menu .current-menu-item > a {
  color: var(--anps-menu-color--active) !important;
  cursor: default;
}

.anps-main-menu .sub-menu {
  background-color: var(--anps-submenu-bg-color);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  font-size: var(--anps-submenu-font-size);
  left: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 15px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transition: .2s opacity ease-in-out;
  width: 240px;
  z-index: 5;
}

.anps-main-menu .sub-menu .current-menu-item > a {
  color: var(--anps-submenu-color--active) !important;
}

.anps-main-menu .sub-menu a {
  color: var(--anps-submenu-color);
  display: block;
  padding: 3px 20px;
}

.anps-main-menu .sub-menu a:hover,
.anps-main-menu .sub-menu a:focus {
  color: var(--anps-submenu-color--hover);
}

.anps-main-menu .sub-menu .sub-menu {
  left: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}

.anps-main-menu .menu-search-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: var(--anps-menu-mobile-icons);
  display: none;
  margin: 0;
  outline: none;
  padding: 0;
  transition: .2s opacity ease-in-out;
}

@media (min-width: 1200px) {
  .anps-main-menu .menu-search-toggle {
    color: var(--anps-menu-color--active);
  }
}

.anps-main-menu .menu-search-toggle i {
  width: 15px;
}

@media (min-width: 1200px) {
  .anps-main-menu .menu-search-toggle--lg {
    display: block;
  }
}

@media (max-width: 1199px) {
  .anps-main-menu .menu-search-toggle--sm {
    display: block;
  }
}

@media (max-width: 1199px) {
  .anps-main-menu .menu-search-toggle {
    border-radius: 3px;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    margin-left: 15px;
    position: relative;
    width: 15px;
  }
}

.anps-main-menu .menu-search-toggle:hover,
.anps-main-menu .menu-search-toggle:focus {
  opacity: .7;
}

.anps-main-menu .menu-button {
  padding-left: 10px;
}

@media (max-width: 1199px) {
  .anps-main-menu .menu-button {
    display: none;
  }
}

.anps-header--sticky-anim .menu-item a {
  transition: none;
}

.anps-mobile-menu {
  background-color: #000;
  bottom: 0;
  left: 100%;
  position: fixed;
  top: 0;
  width: 290px;
  z-index: 999;
}

@media (min-width: 601px) {
  .admin-bar .anps-mobile-menu {
    top: 46px;
  }
}

@media (min-width: 783px) {
  .admin-bar .anps-mobile-menu {
    top: 32px;
  }
}

.anps-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.anps-mobile-menu .menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.anps-mobile-menu .menu-item a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  padding: 7px 20px;
}

.anps-mobile-menu .menu-item a:hover,
.anps-mobile-menu .menu-item a:focus {
  color: #fff;
  outline: none;
}

.anps-mobile-menu .current-menu-item > a {
  color: #fff;
}

.anps-mobile-menu .sub-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
}

.anps-mobile-menu .sub-menu a {
  padding-left: 30px;
}

.anps-mobile-menu .sub-menu .menu-item:last-child {
  border-bottom: none;
}

.anps-mobile-menu .sub-menu-active > .sub-menu {
  display: block;
}

.anps-mobile-menu .sub-menu-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  height: 41px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}

.anps-mobile-menu .sub-menu-toggle:focus {
  color: #fff;
  outline: none;
}

.anps-mobile-menu .sub-menu-toggle i {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.anps-mobile-menu .menu-search,
.anps-mobile-menu .mini-cart {
  display: none !important;
}

.anps-mobile-menu .menu-button {
  margin-top: 30px;
  padding: 0 15px;
}

.anps-mobile-menu .menu-button .anps-btn {
  width: 100%;
}

.site-main,
.top-bar,
.anps-header__bar,
.anps-mobile-menu,
.site-footer {
  transition: .3s transform ease-in-out;
}

.anps-show-mobile-menu .site-main,
.anps-show-mobile-menu
  .top-bar,
.anps-show-mobile-menu
  .anps-header__bar,
.anps-show-mobile-menu
  .anps-mobile-menu,
.anps-show-mobile-menu
  .site-footer {
  transform: translateX(-290px);
}

.anps-menu-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid;
  border-radius: 3px;
  color: var(--anps-menu-mobile-icons);
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  position: relative;
  width: 40px;
}

.anps-header--sticky .anps-menu-toggle {
  color: var(--anps-sticky-color);
}

.anps-menu-toggle .fa {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
  .anps-menu-toggle {
    display: none;
  }
}

.top-bar {
  background-color: var(--anps-top-bar-bg-color);
  color: var(--anps-top-bar-color);
  font-size: var(--anps-top-bar-font-size);
}

.top-bar .widget + .widget {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .top-bar-row {
    padding: 12px 0;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .top-bar-row {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: var(--anps-top-bar-height);
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .top-bar-left,
  .top-bar-right {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
  }
}

.site-search {
  background-color: #000;
  height: 0;
  overflow: hidden;
  transition: .3s height ease-in-out;
}

.site-search__form {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.site-search__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  font-size: 18px;
  outline: none;
  padding: 12px 0;
  width: 100%;
}

.site-search__field:-ms-input-placeholder {
  color: #888;
}

.site-search__field::placeholder {
  color: #888;
}

.site-search__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  outline: none;
  padding: 0;
  transition: .2s color ease-in-out;
}

.site-search__submit:hover,
.site-search__submit:focus {
  color: #fff;
}

@media (max-width: 1199px) {
  .anps-header--vertical .anps-header__content {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: var(--anps-hbar-m-height);
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: .4s height ease-out;
  }

  .anps-header--vertical .anps-header__bar {
    background-color: var(--anps-hbar-bg);
  }
}

@media (min-width: 1200px) {
  .anps-header--vertical .anps-header__bar {
    background-color: var(--anps-hbar-bg);
    height: 100vh;
    left: 0;
    padding: 50px 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 300px;
    z-index: 999;
  }

  .admin-bar .anps-header--vertical .anps-header__bar {
    top: 32px;
  }

  .anps-header--vertical .anps-header__bar .container {
    padding: 0;
    width: 100%;
  }

  .anps-header--vertical .anps-logo {
    margin-bottom: 30px;
  }

  .anps-header--vertical .anps-main-menu {
    display: block;
  }

  .anps-header--vertical .anps-main-menu > li {
    position: relative;
  }

  .anps-header--vertical .anps-main-menu > li + li {
    margin-left: 0;
    margin-top: var(--anps-menu-spacing);
  }

  .anps-header--vertical .anps-main-menu .sub-menu {
    left: 100%;
    top: 0;
  }

  .anps-header--vertical .anps-main-menu > .menu-item > a {
    padding: 3px 15px;
  }

  .anps-header--vertical .anps-main-menu .menu-search-toggle,
  .anps-header--vertical .anps-main-menu .mini-cart-link,
  .anps-header--vertical .anps-main-menu .menu-button {
    display: inline-block;
    margin-top: 15px;
  }

  .anps-header--vertical .anps-header__sticky-wrap {
    height: auto !important;
  }
}

@media (min-width: 1200px) {
  .vertical-menu .site {
    padding-left: 300px;
  }

  .vertical-menu .site-search {
    padding-left: 300px;
  }
}

/* # Site Footer */

.site-footer {
  position: relative;
}

.site-footer__main {
  border: 1px solid transparent;
  padding: 15px 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 500px) {
  .site-footer__main {
    padding: 30px 0;
  }
}

@media (min-width: 768px) {
  .site-footer__main {
    padding: 45px 0;
  }
}

@media (min-width: 992px) {
  .site-footer__main {
    padding: 60px 0;
  }
}

@media (min-width: 1200px) {
  .site-footer__main {
    padding: 80px 0;
  }
}

.site-footer__main .widget-title {
  color: var(--anps-footer-heading-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 0;
}

@media (min-width: 992px) {
  .site-footer__main .widget-title {
    margin-bottom: 45px;
  }
}

.site-footer__col {
  padding: 0 15px;
  width: 100%;
}

@media (max-width: 767px) {
  .site-footer__col + .site-footer__col {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .site-footer__col {
    float: left;
    width: 22%;
  }
}

@media (min-width: 992px) {
  .site-footer__col {
    width: 21%;
  }
}

@media (min-width: 1200px) {
  .site-footer__col {
    width: 19%;
  }
}

@media (min-width: 768px) {
  .site-footer__col--lg {
    padding-right: 40px;
    width: 34%;
  }
}

@media (min-width: 992px) {
  .site-footer__col--lg {
    padding-right: 110px;
    width: 37%;
  }
}

@media (min-width: 1200px) {
  .site-footer__col--lg {
    padding-right: 140px;
    width: 43%;
  }
}

.site-footer p + p {
  margin-top: 0;
}

@media (min-width: 1000px) {
  .fixed-footer .site-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
  }
}

.site-footer .widget:not(.widget_anpsspacings) + .widget:not(.widget_anpsspacings) {
  margin-top: 55px;
}

.site-footer a:not(.btn) {
  color: inherit;
}

.site-footer a:not(.btn):hover,
.site-footer a:not(.btn):focus {
  color: var(--anps-footer-hover-color);
}

.site-footer .current-menu-item > a {
  color: var(--anps-footer-hover-color);
}

.site-footer #wp-calendar a {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.site-footer__shadow {
  left: 0;
  position: absolute;
  top: -220px;
  z-index: 2;
}

.site-footer__shadow svg {
  max-width: 100%;
}

@media (max-width: 600px) {
  .site-footer__shadow {
    display: none;
  }
}

/* ## Copyright Footer */

.copyright-footer__row {
  padding: 15px 0;
}

@media (min-width: 768px) {
  .copyright-footer__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 27px 0;
  }
}

@media (max-width: 767px) {
  .copyright-footer__col {
    padding: 7px 0;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .copyright-footer__col--right {
    text-align: right;
  }
}

.copyright-footer > .container {
  position: relative;
}

.copyright-footer .widget-title {
  display: none;
}

.copyright-footer p {
  margin-bottom: 0;
}

.copyright-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright-footer--shadow {
  box-shadow: inset 0 3px 19px 0 rgba(221, 224, 231, 0.5);
  overflow: hidden;
  position: relative;
}

/* # Widgets */

/* ### Classic WP menu */

.sidebar .widget_nav_menu ul,
.sidebar .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .sidebar .widget_nav_menu li a,
.site-footer
.sidebar .woocommerce-MyAccount-navigation li a {
  border-bottom: 1px solid #2e2e2e;
}

.sidebar .widget_nav_menu li:first-of-type:not(.current-menu-item),
.sidebar .woocommerce-MyAccount-navigation li:first-of-type:not(.current-menu-item) {
  padding-top: 0;
}

.sidebar .widget_nav_menu li:last-of-type,
.sidebar .woocommerce-MyAccount-navigation li:last-of-type {
  border-bottom: none;
}

.sidebar .widget_nav_menu div > ul > li:not(.current-menu-item):first-of-type > a,
.sidebar .woocommerce-MyAccount-navigation div > ul > li:not(.current-menu-item):first-of-type > a {
  margin-top: 0;
  padding-top: 0;
}

.sidebar .widget_nav_menu div > ul > li:last-of-type > a,
.sidebar .widget_nav_menu div > ul > li:last-of-type > .sub-menu > li:last-of-type > a,
.sidebar .woocommerce-MyAccount-navigation div > ul > li:last-of-type > a,
.sidebar .woocommerce-MyAccount-navigation div > ul > li:last-of-type > .sub-menu > li:last-of-type > a {
  border-bottom: 0;
}

.sidebar .widget_nav_menu div > ul > li:last-of-type > .sub-menu,
.sidebar .woocommerce-MyAccount-navigation div > ul > li:last-of-type > .sub-menu {
  border-top: 1px solid #ebf2f6;
}

.sidebar .widget_nav_menu a,
.sidebar .woocommerce-MyAccount-navigation a {
  border-bottom: 1px solid #ebf2f6;
  display: block;
  padding: 14px 0;
}

.sidebar .widget_nav_menu .sub-menu > li > ul > li a {
  padding-left: 20px;
}

.sidebar .widget_nav_menu .sub-menu > li > ul > li ul > li > a {
  padding-left: 30px;
}

.sidebar .widget_nav_menu .sub-menu > li > ul > li ul > li > ul > li > a {
  padding-left: 40px;
}

.sidebar .widget_nav_menu .sub-menu > li > ul > li ul > li > ul > li > ul > li > a {
  padding-left: 50px;
}

.copyright-footer .widget_nav_menu li,
.copyright-footer .woocommerce-MyAccount-navigation li {
  display: inline-block;
}

.copyright-footer .widget_nav_menu li + li,
.copyright-footer .woocommerce-MyAccount-navigation li + li {
  margin-left: 27px;
}

.copyright-footer .sub-menu {
  display: none;
}

/* ### Search widget */

.searchform input[type="text"] {
  background: none;
  border: 1px solid #ebf2f6;
  padding: 10px 62px 10px 19px;
  transition: .2s border-color;
  width: 100%;
}

.searchform input[type="text"]:-ms-input-placeholder {
  color: rgba(137, 144, 155, 0.8);
}

.searchform input[type="text"]::placeholder {
  color: rgba(137, 144, 155, 0.8);
}

.searchform input[type="text"]:focus {
  border-color: #ccc;
  outline: none;
}

.site-footer .searchform input[type="text"] {
  border: 1px solid #2e2e2e;
}

.searchform > div {
  position: relative;
}

.searchform > div::after {
  color: #7f7f7f;
  content: "\f002";
  cursor: pointer;
  font-family: FontAwesome;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
}

.searchform #searchsubmit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  bottom: 1px;
  padding: 0;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: 1px;
  white-space: nowrap;
  width: 54px;
}

.searchform #searchsubmit:focus {
  outline: none;
}

/* WordPress default "list" widgets */

.sidebar .widget_archive,
.sidebar .widget_categories,
.sidebar .widget_layered_nav,
.sidebar .widget_meta,
.sidebar .widget_pages,
.sidebar .widget_product_categories,
.sidebar .widget_recent_comments,
.sidebar .widget_recent_entries {
  /* Children */
}

.sidebar .widget_archive ul,
.sidebar .widget_categories ul,
.sidebar .widget_layered_nav ul,
.sidebar .widget_meta ul,
.sidebar .widget_pages ul,
.sidebar .widget_product_categories ul,
.sidebar .widget_recent_comments ul,
.sidebar .widget_recent_entries ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar .widget_archive li,
.sidebar .widget_categories li,
.sidebar .widget_layered_nav li,
.sidebar .widget_meta li,
.sidebar .widget_pages li,
.sidebar .widget_product_categories li,
.sidebar .widget_recent_comments li,
.sidebar .widget_recent_entries li {
  padding: 9px 0;
}

.sidebar .widget_archive li:first-of-type,
.sidebar .widget_categories li:first-of-type,
.sidebar .widget_layered_nav li:first-of-type,
.sidebar .widget_meta li:first-of-type,
.sidebar .widget_pages li:first-of-type,
.sidebar .widget_product_categories li:first-of-type,
.sidebar .widget_recent_comments li:first-of-type,
.sidebar .widget_recent_entries li:first-of-type {
  padding-top: 0;
}

.sidebar .widget_archive li:last-of-type,
.sidebar .widget_categories li:last-of-type,
.sidebar .widget_layered_nav li:last-of-type,
.sidebar .widget_meta li:last-of-type,
.sidebar .widget_pages li:last-of-type,
.sidebar .widget_product_categories li:last-of-type,
.sidebar .widget_recent_comments li:last-of-type,
.sidebar .widget_recent_entries li:last-of-type {
  border-bottom: none;
}

.sidebar .widget_archive a,
.sidebar .widget_categories a,
.sidebar .widget_layered_nav a,
.sidebar .widget_meta a,
.sidebar .widget_pages a,
.sidebar .widget_product_categories a,
.sidebar .widget_recent_comments a,
.sidebar .widget_recent_entries a {
  display: inline-block;
  font-size: 16px;
  padding: 5px 0;
}

.sidebar .widget_archive .children,
.sidebar .widget_categories .children,
.sidebar .widget_layered_nav .children,
.sidebar .widget_meta .children,
.sidebar .widget_pages .children,
.sidebar .widget_product_categories .children,
.sidebar .widget_recent_comments .children,
.sidebar .widget_recent_entries .children {
  margin-bottom: -9px;
  margin-top: 9px;
}

.sidebar .widget_archive .children li,
.sidebar .widget_categories .children li,
.sidebar .widget_layered_nav .children li,
.sidebar .widget_meta .children li,
.sidebar .widget_pages .children li,
.sidebar .widget_product_categories .children li,
.sidebar .widget_recent_comments .children li,
.sidebar .widget_recent_entries .children li {
  padding-left: 15px;
}

.sidebar .widget_archive .children li:first-of-type,
.sidebar .widget_categories .children li:first-of-type,
.sidebar .widget_layered_nav .children li:first-of-type,
.sidebar .widget_meta .children li:first-of-type,
.sidebar .widget_pages .children li:first-of-type,
.sidebar .widget_product_categories .children li:first-of-type,
.sidebar .widget_recent_comments .children li:first-of-type,
.sidebar .widget_recent_entries .children li:first-of-type {
  padding-top: 9px;
}

.sidebar .widget_archive .children li:last-of-type,
.sidebar .widget_categories .children li:last-of-type,
.sidebar .widget_layered_nav .children li:last-of-type,
.sidebar .widget_meta .children li:last-of-type,
.sidebar .widget_pages .children li:last-of-type,
.sidebar .widget_product_categories .children li:last-of-type,
.sidebar .widget_recent_comments .children li:last-of-type,
.sidebar .widget_recent_entries .children li:last-of-type {
  padding-bottom: none;
}

.site-footer__main .menu,
.site-footer__main .widget_archive,
.site-footer__main .widget_categories,
.site-footer__main .widget_layered_nav,
.site-footer__main .widget_meta,
.site-footer__main .widget_pages,
.site-footer__main .widget_product_categories,
.site-footer__main .widget_recent_comments,
.site-footer__main .widget_recent_entries {
  /* Children */
}

.site-footer__main .menu li + li,
.site-footer__main .widget_archive li + li,
.site-footer__main .widget_categories li + li,
.site-footer__main .widget_layered_nav li + li,
.site-footer__main .widget_meta li + li,
.site-footer__main .widget_pages li + li,
.site-footer__main .widget_product_categories li + li,
.site-footer__main .widget_recent_comments li + li,
.site-footer__main .widget_recent_entries li + li {
  margin-top: 15px;
}

.site-footer__main .menu a,
.site-footer__main .widget_archive a,
.site-footer__main .widget_categories a,
.site-footer__main .widget_layered_nav a,
.site-footer__main .widget_meta a,
.site-footer__main .widget_pages a,
.site-footer__main .widget_product_categories a,
.site-footer__main .widget_recent_comments a,
.site-footer__main .widget_recent_entries a {
  display: inline-block;
}

.site-footer__main .menu .sub-menu,
.site-footer__main .menu .children,
.site-footer__main .widget_archive .sub-menu,
.site-footer__main .widget_archive .children,
.site-footer__main .widget_categories .sub-menu,
.site-footer__main .widget_categories .children,
.site-footer__main .widget_layered_nav .sub-menu,
.site-footer__main .widget_layered_nav .children,
.site-footer__main .widget_meta .sub-menu,
.site-footer__main .widget_meta .children,
.site-footer__main .widget_pages .sub-menu,
.site-footer__main .widget_pages .children,
.site-footer__main .widget_product_categories .sub-menu,
.site-footer__main .widget_product_categories .children,
.site-footer__main .widget_recent_comments .sub-menu,
.site-footer__main .widget_recent_comments .children,
.site-footer__main .widget_recent_entries .sub-menu,
.site-footer__main .widget_recent_entries .children {
  margin-top: 15px;
  padding-left: 15px;
}

/* ### Newsletter */

.tnp-widget {
  position: relative;
}

.tnp-widget label {
  display: none;
}

.tnp-widget::after {
  color: #fff;
  content: "\f0e0";
  font-family: FontAwesome;
  font-size: 16px;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
}

.tnp-widget .tnp-email {
  border: none;
  padding: 10px 17px;
  width: 100%;
}

.sidebar .tnp-widget .tnp-email {
  border: 1px solid #e7e7e7;
  border-radius: 5px;
}

.tnp-widget .tnp-submit {
  border: none;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-indent: -1000px;
  top: 0;
  width: 58px;
}

.sidebar .tnp-widget .tnp-submit {
  border-radius: 0 5px 5px 0;
}

.tagcloud a {
  background-color: #f6f7f8;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px !important;
  height: 41px;
  line-height: 41px;
  margin-bottom: 10px;
  margin-right: 6px;
  padding: 0 24px;
}

/* # WooCommerce */

/* ## Mini cart */

.show-menu .mini-cart {
  opacity: .3;
  pointer-events: none;
}

.mini-cart .variation {
  margin-bottom: 0;
}

.mini-cart .variation dd,
.mini-cart .variation dt {
  display: inline-block;
}

.menu-search + .mini-cart {
  margin-left: 20px;
}

.mini-cart-content {
  background-color: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
  display: none;
  margin-top: 13px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 244px;
}

@media (min-width: 1200px) {
  .vertical-menu .mini-cart-content {
    left: 50%;
    margin-left: 16px;
    margin-top: 0;
    top: 15px;
  }
}

.mini-cart-content:focus,
.mini-cart-content:hover {
  display: block;
}

.mini-cart-content::after {
  content: "";
  height: 21px;
  left: 0;
  position: absolute;
  top: -21px;
  width: 100%;
}

.mini-cart-content .total {
  font-weight: bold;
  padding: 9px 20px;
  text-transform: uppercase;
}

.mini-cart-content p {
  margin-bottom: 0;
}

.mini-cart-content .buttons a {
  color: #fff !important;
  display: block;
  float: left;
  line-height: 32px;
  text-align: center;
  width: 50%;
}

.mini-cart-content .buttons a:focus,
.mini-cart-content .buttons a:hover {
  background-color: #ffcc43;
}

.mini-cart-content .buttons a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.mini-cart-link {
  color: var(--anps-menu-color);
  display: block;
  height: 39px;
  padding: 0 !important;
  position: relative;
  width: 39px;
}

.mini-cart-link:hover,
.mini-cart-link:focus {
  color: var(--anps-menu-color--hover);
}

.anps-header--sticky .mini-cart-link {
  color: var(--anps-sticky-color);
}

.anps-header--sticky .mini-cart-link:hover,
.anps-header--sticky .mini-cart-link:focus {
  color: var(--anps-sticky-color--hover);
}

@media (max-width: 1199px) {
  .mini-cart-link {
    color: var(--anps-menu-mobile-icons);
  }
}

@media (min-width: 1200px) {
  .mini-cart-link {
    height: 38px;
    width: 38px;
  }
}

.mini-cart-link:focus + .mini-cart-content,
.mini-cart-link:hover + .mini-cart-content {
  display: block;
}

.mini-cart-link i {
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mini-cart-number {
  background-color: var(--anps-menu-color--active);
  border-radius: 50%;
  bottom: 24px;
  color: #fff;
  font-size: 9px;
  left: 26px;
  line-height: 18px;
  min-width: 18px;
  padding: 0 4px;
  position: absolute;
  text-align: center;
}

.anps-header--transparent .mini-cart-number {
  background-color: rgba(0, 0, 0, 0.3);
}

.anps-header--sticky .mini-cart-number {
  background-color: var(--anps-sticky-color--active);
}

@media (min-width: 1200px) {
  .mini-cart-number {
    bottom: 27px;
    left: 27px;
  }
}

.mini-cart-list {
  margin: 0;
  padding: 0;
}

.mini-cart-list li {
  padding: 17px 19px 17px 80px;
  width: 100%;
}

.mini-cart-list li.empty {
  font-size: 16px;
  padding: 15px 20px;
}

.mini-cart-list .mini_cart_item {
  border-bottom: 1px solid #ebf2f6;
  position: relative;
}

.site-footer .mini-cart-list .mini_cart_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.127);
}

.mini-cart-list .mini_cart_item > a.remove {
  padding: 7px 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.mini-cart-list .mini_cart_item > a.remove:focus,
.mini-cart-list .mini_cart_item > a.remove:hover {
  color: red;
}

.mini-cart-list img {
  border: 1px solid #ebf2f6;
  height: 50px;
  width: 50px;
}

a.mini_cart_item_img,
a.mini_cart_item_title {
  transition: .2s opacity ease;
}

a.mini_cart_item_img:focus,
a.mini_cart_item_img:hover,
a.mini_cart_item_title:focus,
a.mini_cart_item_title:hover {
  opacity: .8;
}

a.mini_cart_item_img {
  left: 19px;
  opacity: 1;
  position: absolute;
  top: 19px;
}

.mini_cart_item_title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-top: 2px;
}

.mini_cart_item {
  min-height: 89px !important;
  position: relative;
}

/* # Helper and Basic classes */

::-moz-selection {
  color: #fff;
}

::selection {
  color: #fff;
}

body {
  background-color: var(--anps-page-bg);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7em;
}

.site {
  background-color: var(--anps-page-bg);
  overflow: hidden;
}

.custom-background .site {
  background: none;
}

.page-content-wrap::after {
  clear: both;
  content: "";
  display: table;
}

.page-content-wrap + .anps-heading,
.page-content-wrap + .comment-respond {
  margin-top: 60px;
}

a {
  transition: background-color .2s, color .2s;
}

a > h1,
a > h3,
a > h4,
a > h5,
a > h6,
a > h2 {
  transition: .4s opacity;
}

a:focus,
a:hover {
  text-decoration: none;
}

a:focus > h1,
a:focus > h3,
a:focus > h4,
a:focus > h5,
a:focus > h6,
a:focus > h2,
a:hover > h1,
a:hover > h3,
a:hover > h4,
a:hover > h5,
a:hover > h6,
a:hover > h2 {
  opacity: .7;
}

p {
  margin: 0 0 30px;
}

.w-255 {
  width: 255px;
}

.w-350 {
  width: 350px;
}

.margin-l-5 {
  margin-left: 5px;
}

.top-margin-70 {
  margin-top: 70px;
}

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

.font-size-30 {
  font-size: 30px;
}

.no-border {
  border: none;
}

.clear {
  clear: both;
}

@media (max-width: 999px) {
  .no-margin-mobile {
    margin-top: 0 !important;
  }

  .no-padding-mobile .vc_column-inner {
    padding-top: 0 !important;
  }
}

label {
  cursor: pointer;
}

select {
  border: 1px solid #e4e4e4;
  padding: 8px 15px;
}

.select-wrapper {
  background-color: #fff;
  display: inline-block;
  position: relative;
}

.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 3px;
  padding-right: 35px;
  position: relative;
  z-index: 1;
}

.select-wrapper::before {
  content: "\f107";
  font-family: FontAwesome;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ## Admin bar logo fix */

.embed-responsive + .embed-responsive {
  margin-top: 47px;
}

@media (min-width: 1000px) {
  .embed-responsive + .embed-responsive {
    margin-top: 87px;
  }
}

.background-mask {
  color: #fff;
  position: relative;
}

.background-mask > * {
  position: relative;
  z-index: 2;
}

.background-mask::before {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

b {
  font-weight: normal;
}

mark {
  color: #fff;
  padding: .1em .2em;
}

.dropcap {
  float: left;
  font-size: 36px;
  line-height: 1em;
  margin-right: 8px;
}

p:last-child {
  margin-bottom: 0;
}

p + .panel-group {
  margin-top: 31px;
}

.error-page-sample {
  padding: 60px 0;
}

[class*="col-"] > *:first-child {
  margin-top: 0;
}

body .bg-top-full {
  background-size: 100% !important;
  background-position: top !important;
}

body .bg-pattern-x {
  background-position: top !important;
  background-repeat: repeat-x !important;
}

img {
  height: auto;
  max-width: 100%;
}

.container {
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.abs-bot-right {
  display: none;
  padding: 0 !important;
}

.abs-bot-right .container {
  z-index: 1;
}

.abs-bot-right img {
  bottom: 0;
  position: absolute;
  right: -190px;
}

@media (min-width: 1000px) {
  .abs-bot-right {
    display: block;
  }
}

/* ## Backgrounds */

.bg-gray {
  background-color: #f8f9f9;
}

.bg-dark {
  background-color: #252525;
}

.bg-dark * {
  color: rgba(255, 255, 255, 0.4);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: #fff;
}

.bg-dark .title::before {
  background-color: rgba(255, 255, 255, 0.1);
}

body .background-image-center {
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media (max-width: 999px) {
  body .background-image-center {
    background-image: none !important;
  }
}

body .background-image-left {
  background-origin: content-box;
  background-position: bottom -35px left 0;
  background-repeat: no-repeat;
}

@media (max-width: 999px) {
  body .background-image-left {
    background-image: none !important;
  }
}

.rev-subtitle,
.rev-title {
  color: #fff;
  font-weight: 700;
}

.rev-title {
  font-size: 72px;
}

.rev-subtitle {
  font-size: 18px;
}

/* ## Page Content & Sidebar Divider */

@media (max-width: 999px) {
  .sidebar-hide .sidebar {
    display: none;
  }

  .sidebar-after .content-container > .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sidebar-after .sidebar {
    -ms-flex-order: 1;
    order: 1;
  }

  .sidebar-after:not(.sidebar-hide) .page-content {
    padding-bottom: 0;
  }
}

.page-content,
.sidebar {
  position: relative;
}

/* ## Widgets */

/* ### Contact Number Widget */

.contact-number {
  border-radius: 3px;
  line-height: 1em;
  min-height: 64px;
  padding: 15px 27px;
  text-align: center;
  text-transform: uppercase;
}

.contact-number > * {
  display: block;
}

.contact-number > * + * {
  margin-top: 5px;
}

.contact-number-number {
  font-size: 15px;
}

.vertical-menu .contact-number {
  margin: 0 auto;
  max-width: 181px;
}

/* ### Sidebar Widgets */

.sidebar {
  /* Menu */
}

.sidebar .widget + .widget {
  margin-top: 40px;
}

.sidebar a {
  color: inherit;
}

.sidebar .widget-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 24px;
}

.sidebar .menu a {
  font-size: 16px;
}

.sidebar .menu,
.sidebar .sub-menu,
.sidebar .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.sidebar .sub-menu a::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 12px;
  opacity: .75;
}

.sidebar .current-menu-item > .sub-menu,
.sidebar .current-menu-ancestor > .sub-menu {
  display: block;
}

.sidebar .sub-menu a {
  padding-left: 25px;
  padding-right: 25px;
}

.sidebar .sub-menu .sub-menu a {
  padding-left: 50px;
  padding-right: 50px;
}

.sidebar .sub-menu .sub-menu .sub-menu a {
  padding-left: 60px;
  padding-right: 60px;
}

/* ### Recent News Widget */

.anps-recent-posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.anps-recent-posts li {
  display: table;
  height: 62px;
  line-height: 1em;
  padding-left: 92px;
  padding-right: 15px;
  position: relative;
  width: 100%;
}

.anps-recent-posts li + li {
  margin-top: 18px;
}

.anps-recent-posts a {
  display: table-cell;
  vertical-align: middle;
}

.anps-recent-posts img {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.anps-recent-posts span {
  display: block;
  font-size: 12px;
  padding: 15px 0;
  text-transform: uppercase;
}

.sidebar .anps-recent-posts li {
  background-color: #f7f7f7;
}

.sidebar .anps-recent-posts span {
  color: #5b5b5b;
}

.site-main {
  position: relative;
}

@media (max-width: 999px) {
  .fixed-footer .site-main {
    margin-bottom: 0 !important;
  }
}

.widget_recent_entries .post-date::before {
  content: "/ ";
}

/* ### Pages widget */

.widget_pages > ul {
  overflow: hidden;
}

.widget_pages a {
  position: relative;
}

.widget_pages a::before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 8px;
}

/* ### RSS widget */

.widget_rss {
  /* Title */
  /* Content */
}

.widget_rss .widget-title:focus,
.widget_rss .widget-title:hover {
  color: #333333;
}

.widget_rss .widget-title a {
  color: inherit;
}

.widget_rss .widget-title .rsswidget:first-of-type::before {
  content: "\f09e";
  font-family: FontAwesome;
}

.widget_rss .widget-title .rsswidget:first-of-type img {
  display: none;
}

.widget_rss ul {
  list-style: none;
  padding: 0;
}

.widget_rss ul li + li {
  margin-top: 15px;
}

.widget_rss ul .rsswidget {
  text-transform: uppercase;
}

.widget_rss ul .rss-date,
.widget_rss ul cite {
  display: block;
  font-style: normal;
}

.site-footer .widget_rss ul .rss-date,
.site-footer
      .widget_rss ul cite {
  color: #fff;
}

/* ### Calendar widget */

@media (min-width: 1000px) {
  .sidebar .widget_calendar,
  .site-footer .widget_calendar {
    font-size: 12px;
  }
}

.widget_calendar caption,
.widget_calendar td,
.widget_calendar th {
  line-height: 30px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.widget_calendar th {
  background-color: #f5f5f5;
  color: #727272;
  font-weight: normal;
  position: relative;
}

.widget_calendar th::after {
  background-color: #ebf2f6;
  content: "";
  height: 2000px;
  left: -1px;
  margin-top: -1000px;
  position: absolute;
  top: 50%;
  width: 1px;
}

.site-footer .widget_calendar th::after {
  background-color: #2e2e2e;
}

.widget_calendar a {
  color: #fff;
  display: block;
}

.widget_calendar a:focus,
.widget_calendar a:hover {
  color: #fff;
}

.widget_calendar #today {
  font-weight: bold;
}

.widget_calendar caption {
  color: #fff;
  position: relative;
  z-index: 1;
}

.widget_calendar .calendar_wrap {
  overflow: hidden;
}

.widget_calendar table {
  border: 1px solid #ebf2f6;
  border-collapse: collapse;
  width: 100%;
}

.site-footer .widget_calendar table {
  border-color: #2e2e2e;
}

.widget_calendar tfoot {
  display: none;
}

.widget_calendar table td,
.widget_calendar table th {
  border: 1px solid #ebf2f6;
}

.widget_calendar table tr:first-child th {
  border-top: 0;
}

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

.widget_calendar table tr td:first-child,
.widget_calendar table tr th:first-child {
  border-left: 0;
}

.widget_calendar table tr td:last-child,
.widget_calendar table tr th:last-child {
  border-right: 0;
}

/* # Revolution Slider Navigation */

.tparrows.custom {
  background-color: #fff;
  border-radius: 3px;
  bottom: 40px !important;
  color: #005746;
  height: 40px;
  left: 50% !important;
  top: auto !important;
  transform: none !important;
  width: 40px;
}

@media (min-width: 1000px) {
  .tparrows.custom {
    left: auto !important;
    right: 40px;
  }
}

@media (min-width: 1200px) {
  .tparrows.custom {
    bottom: 160px !important;
    left: 0 !important;
    right: auto;
  }
}

.tparrows.custom:focus,
.tparrows.custom:hover {
  color: #fff !important;
}

.tparrows.custom::before {
  color: inherit;
  font-family: FontAwesome;
  font-size: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tparrows.custom.tp-leftarrow::before {
  content: "\f053";
}

.tparrows.custom.tp-rightarrow::before {
  content: "\f054";
}

/* # Custom Paddings (helper classes) */

.no-bottom-padding {
  padding-bottom: 0 !important;
}

@media (min-width: 1000px) {
  .no-bottom-padding-md {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .no-bottom-padding-lg {
    padding-bottom: 0 !important;
  }
}

.no-top-padding {
  padding-top: 0 !important;
}

.no-padding {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

@media (min-width: 1000px) {
  .padding-small {
    padding: 50px 0;
  }

  .padding-top-small {
    padding-top: 30px;
  }

  .padding-bottom-small {
    padding-top: 30px;
  }

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

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

  .title.margin-bottom-small {
    margin-bottom: 40px;
  }
}

.anps-particles {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.active-revslide .anps-particles {
  z-index: 1;
}

.anps-particles canvas {
  height: 100%;
  width: 100%;
}

/* Set padding on spans with background color */

.content-container {
  padding-bottom: calc(var(--anps-main-space-bottom) / 2);
  padding-top: calc(var(--anps-main-space-top) / 2);
}

@media (min-width: 992px) {
  .content-container {
    padding-bottom: calc(var(--anps-main-space-bottom) / 1.5);
    padding-top: calc(var(--anps-main-space-top) / 1.5);
  }
}

@media (min-width: 1200px) {
  .content-container {
    padding-bottom: var(--anps-main-space-bottom);
    padding-top: var(--anps-main-space-top);
  }
}

.footer-spacing-off .content-container {
  padding-bottom: 0;
}

.header-spacing-off .content-container {
  padding-top: 0;
}

/* Owl Slider Chrome issue */

.owl-stage {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.owl-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
}

/* VC Video shadow fix */

.shadow .wpb_video_widget {
  margin-bottom: 0;
}

/* Cart page */

.shop_table_wrapper {
  margin-bottom: 25px;
}

.table.shop_table {
  border: 1px solid #ebf2f6;
  margin-bottom: 0;
}

.table.shop_table th {
  border-top: 1px solid #ebf2f6;
  text-align: left;
}

.table.shop_table td {
  vertical-align: middle;
}

.table.shop_table .product-thumbnail {
  max-width: 70px;
  min-width: 70px;
}

.table.shop_table .product-thumbnail img {
  width: 70px;
}

.table.shop_table .product-remove {
  position: relative;
  width: 35px;
}

.table.shop_table .product-remove .remove {
  color: #fa7267;
  font-size: 24px;
  padding: 1px 10px;
}

.table.shop_table .product-remove .remove:focus,
.table.shop_table .product-remove .remove:hover {
  color: red;
}

.table.customer_details_wrap,
.table.order_details_wrap {
  margin-bottom: 15px;
}

/* Change AJAX overlay color */

.blockOverlay {
  background-color: #fff !important;
}

@media (max-width: 999px) {
  .btn.update-cart {
    margin-top: 30px;
    width: 100% !important;
  }
}

@media (max-width: 500px) {
  .btn.update-cart {
    margin-top: 15px;
  }
}

/* # WooCommerce */

/* ## Cart totals */

.cart_totals table {
  width: 100%;
}

.cart_totals .shipping ul {
  list-style: none;
}

.cart_totals .shipping input[type="radio"] {
  float: right;
  margin-left: 7px;
}

.cart_totals .order-total {
  font-size: 16px;
}

.cart_totals .input-text {
  padding: 9px 20px;
}

.cart_totals td,
.cart_totals th {
  padding: 15px 0;
}

.cart_totals tr:first-of-type td,
.cart_totals tr:first-of-type th {
  padding-top: 0;
}

.cart_totals tr + tr {
  border-top: 1px solid #ebf2f6;
}

.cart_totals td {
  text-align: right;
}

.cart_totals .checkout-button {
  display: block;
  margin-top: 10px;
}

.cart_totals select {
  width: 100%;
}

/* ## Cross sells */

.cross-sells {
  margin-top: 25px;
}

/* ## Coupon */

@media (min-width: 450px) {
  .anps-coupon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .anps-coupon__col--left {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 991px) {
  .anps-coupon {
    margin-bottom: 30px;
  }
}

@media (max-width: 449px) {
  .anps-coupon .anps-btn {
    width: 100%;
  }
}

.coupon [type="text"],
.coupon [name="apply_coupon"] {
  padding: 10px 20px;
}

.coupon [type="text"] {
  display: block;
}

@media (min-width: 450px) {
  .coupon [type="text"] {
    max-width: 210px;
  }
}

@media (min-width: 768px) {
  .coupon [type="text"] {
    float: left;
  }
}

.coupon [name="apply_coupon"] {
  float: left;
  margin-top: 15px;
}

@media (max-width: 449px) {
  .coupon [name="apply_coupon"] {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .coupon [name="apply_coupon"] {
    margin-left: 20px;
    margin-top: 0;
  }
}

/* ## Quantity field */

.quantity {
  overflow: hidden;
  position: relative;
  width: 84px;
}

.quantity .minus,
.quantity .plus {
  background: none;
  border: 1px solid #ebf2f6;
  border-style: none none none solid;
  height: 50%;
  position: absolute;
  right: 1px;
  transition: .2s background-color;
  width: 25px;
  z-index: 1;
}

@media (min-width: 1000px) {
  .quantity .btn.btn-md {
    width: 100%;
  }
}

.quantity .plus {
  border-bottom-style: solid;
  top: 0;
}

.quantity .minus {
  bottom: 0;
}

.quantity .qty {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  border: 1px solid #ebf2f6;
  border-radius: 4px;
  display: inline-block;
  height: 59px;
  line-height: 59px;
  padding-left: 0;
  padding-right: 25px;
  text-align: center;
  width: 84px;
}

.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* WooCommerce account pages form buttons */

.woocommerce-MyAccount-content form .button {
  margin-top: 40px;
}

/* ## WooCommerce Checkout */

.order-again {
  margin-top: 25px;
}

/* ## Site Notice */

.demo_store_wrapper {
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.14);
  color: #fff;
  left: 0;
  padding: 13px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform .2s, opacity .2s;
  z-index: 999;
}

.demo_store_wrapper p {
  margin: 0;
}

.show-menu .demo_store_wrapper {
  left: -100%;
  transform: translateX(-290px);
}

.show-menu .demo_store_wrapper::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 1200px) {
  .vertical-menu .demo_store_wrapper {
    left: 380px;
  }
}

.admin-bar .demo_store_wrapper {
  position: absolute;
  top: 46px;
}

@media (min-width: 601px) {
  .admin-bar .demo_store_wrapper {
    position: fixed;
  }
}

@media (min-width: 783px) {
  .admin-bar .demo_store_wrapper {
    top: 32px;
  }
}

.woocommerce-demo-store .site-header .woocommerce-demo-store .top-bar {
  margin-top: 49px;
}

.top-bar:not(.visible-lg-block) + .site-header:not(.sticky) {
  margin-top: 0 !important;
}

@media (min-width: 1200px) {
  .top-bar.visible-lg-block + .site-header:not(.sticky) {
    margin-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .vertical-menu .site-header {
    margin-top: 0 !important;
  }
}

#ship-to-different-address {
  font-size: 16px;
  margin-bottom: 24px;
}

#ship-to-different-address label {
  display: inline-block;
  margin-right: 20px;
}

.select2-container .select2-choice,
.select2-drop-active {
  border-color: #ebf2f6 !important;
}

.select2-container .select2-choice {
  padding: 15px 19px;
}

.woocommerce textarea {
  height: 190px;
}

.woocommerce form label {
  font-weight: normal;
  margin-bottom: 12px;
  margin-top: 15px;
}

.woocommerce form .form-row label {
  display: block;
}

.woocommerce-billing-fields .title {
  float: left;
}

.form-row-wide {
  clear: both;
  width: 100%;
}

.form-row:not(.form-row-first):not(.form-row-last) {
  width: 100%;
}

.form-row,
p.form-row {
  float: left;
  margin-bottom: 7px;
  margin-top: 7px;
}

#shipping_method {
  list-style: none;
  padding: 0;
  vertical-align: middle;
}

#shipping_method input {
  margin-top: 8px;
}

@media (min-width: 500px) {
  .form-row-first,
  .form-row-last {
    width: 49%;
  }

  .form-row-first {
    clear: left;
  }

  .form-row-last {
    clear: right;
    margin-left: 2%;
  }
}

.checkout_coupon:before,
.checkout_coupon:after {
  content: " ";
  display: table;
}

.checkout_coupon:after {
  clear: both;
}

.shop_table.woocommerce-checkout-review-order-table {
  margin-bottom: 25px;
  width: 100%;
}

.shop_table.woocommerce-checkout-review-order-table p {
  margin-bottom: 0;
}

.payment_methods {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.payment_methods img {
  margin: 0 20px;
  max-width: 200px;
}

.payment_methods label {
  margin-left: 5px;
}

.woocommerce-order-details {
  margin-bottom: 30px;
}

.title.title-edit-account {
  margin-bottom: 30px;
  margin-top: 30px;
}

.title#order_review_heading {
  margin: 40px 0 20px;
}

.order_details {
  list-style: none;
  padding: 0;
}

@media (min-width: 1000px) {
  .order_details li {
    display: inline-block;
  }

  .order_details li + li::before {
    content: "/";
    margin: 0 10px;
  }
}

.addresses address {
  line-height: 1.7em;
}

.site-main .wp-caption {
  margin-bottom: 30px;
  padding: 0;
}

.site-main .wp-caption img {
  max-width: 100%;
  width: 100%;
}

.site-main .wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 40px;
  margin-top: 0;
  padding-bottom: 10px;
  padding-top: 10px;
}

.site-main .wp-caption.alignnone {
  margin-bottom: 30px;
}

/* row classes */

.site .bg-image-bottom {
  background-position: center bottom !important;
}

.site .bg-image-top {
  background-position: center top !important;
}

.site .bg-full-width {
  background-size: 100% auto !important;
}

.no-bottom-padding-row {
  display: table;
  margin-bottom: -60px !important;
}

/* ## Boxed layout */

@media (min-width: 1000px) {
  .boxed .site,
  .boxed .site-footer {
    max-width: 100%;
    width: 1200px;
  }

  .boxed .site {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    left: auto;
    margin: auto;
    position: relative;
  }

  .boxed.fixed-footer .site-footer {
    left: 50%;
    transform: translateX(-50%);
  }

  .pattern-0 {
    background-attachment: fixed;
    background-position: center center;
  }

  .pattern-1 {
    background-image: url("boxed/pattern-1.png");
  }

  .pattern-2 {
    background-image: url("boxed/pattern-2.png");
  }

  .pattern-3 {
    background-image: url("boxed/pattern-3.png");
  }

  .pattern-4 {
    background-image: url("boxed/pattern-4.png");
  }

  .pattern-5 {
    background-image: url("boxed/pattern-5.png");
  }

  .pattern-6 {
    background-image: url("boxed/pattern-6.png");
  }

  .pattern-7 {
    background-image: url("boxed/pattern-7.png");
  }

  .pattern-8 {
    background-image: url("boxed/pattern-8.png");
  }

  .pattern-9 {
    background-image: url("boxed/pattern-9.png");
  }

  .pattern-10 {
    background-image: url("boxed/pattern-10.png");
  }

  .pattern-11 {
    background-image: url("boxed/pattern-11.png");
  }

  .pattern-12 {
    background-image: url("boxed/pattern-12.png");
  }
}

/* VC 4.11 */

@media (min-width: 768px) {
  .u-columns {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }

  .col2-set > * {
    padding: 0 15px;
    width: 50%;
  }
}

.anps-crypto-from,
.anps-crypto-to {
  padding: 0 !important;
}

.anps-crypto-form__btn {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  outline: none;
  padding: 0 20px !important;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99 !important;
}

.anps-crypto-form__field {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  border: none;
  width: 100%;
}

.anps-crypto-form__field::-webkit-outer-spin-button,
.anps-crypto-form__field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.anps-crypto-list {
  background-color: #fff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  max-height: 200px;
  overflow: auto;
  padding: 0;
  position: absolute;
  transform: translateX(-100%);
  z-index: 9999;
}

.anps-crypto-list__item {
  border-top: 1px solid #eee;
}

.anps-crypto-list__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  padding: 9px 25px;
  transition: .2s opacity ease-in-out;
  width: 150px;
}

.anps-crypto-list__btn:hover,
.anps-crypto-list__btn:focus {
  opacity: .7;
}

.hesperiden.tparrows {
  z-index: 999 !important;
}