/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) {
  background: @color;
  background: -webkit-gradient(linear,
                               left bottom,
                               left top,
                               color-stop(0, @start),
                               color-stop(1, @stop));
  background: -ms-linear-gradient(bottom,
                                  @start,
                                  @stop);
  background: -moz-linear-gradient(center bottom,
                                   @start 0%,
                                   @stop 100%);
  background: -o-linear-gradient(@stop,
                                 @start);
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@stop,@start));
}
.bw-gradient(@color: #F5F5F5, @start: 0, @stop: 255) {
  background: @color;
  background: -webkit-gradient(linear,
                               left bottom,
                               left top,
                               color-stop(0, rgb(@start,@start,@start)),
                               color-stop(1, rgb(@stop,@stop,@stop)));
  background: -ms-linear-gradient(bottom,
                                  rgb(@start,@start,@start) 0%,
                                  rgb(@stop,@stop,@stop) 100%);
  background: -moz-linear-gradient(center bottom,
                                   rgb(@start,@start,@start) 0%,
                                   rgb(@stop,@stop,@stop) 100%);
  background: -o-linear-gradient(rgb(@stop,@stop,@stop),
                                 rgb(@start,@start,@start));
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",rgb(@stop,@stop,@stop),rgb(@start,@start,@start)));
}*/
.disableSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clearAll:before,
.clearAll:after {
  clear: both;
  display: block;
  content: " ";
}
.clearAfter:after {
  clear: both;
  display: block;
  content: " ";
}
:root {
  --color: #b0876f;
  --color-navy: #243158;
  --color-text: #65605e;
  --color-title: #78787e;
  --color-danger: #b02727;
  --color-user-links: var(--color);
  --logo: url('/wp-content/themes/bda/img/logo.svg');
  --background-fade: rgba(176, 135, 111, 0.05);
  --color-navbar-active: var(--color);
  --header-background: #231f1c;
  --header-background-fade: rgba(35, 31, 28, 0.85);
  --info-bar-background: var(--color);
  --layout-margin-top: 50px;
  --layout-margin-bottom: 50px;
  --font-size: 16px;
  --title-font-size-large: 36px;
  --title-font-size-medium: 28px;
  --title-font-size-small: 25px;
  --border-color: #dacfcb;
  --border-color-dark: #9a9aa0;
  --button-background-color: var(--color);
  --button-background-color-hover: #936e58;
  --button-background-text: #FFF;
  --input-border: var(--border-color-dark);
  --input-height: 60px;
  --footer-background: #282727;
  --footer-image: url('../img/footer.jpg');
  --icon-quote: url('../img/i-quote.svg');
  --icon-plus-white: url('../img/i-plus-white.svg');
  --icon-plus: url('../img/i-plus-color.svg');
  --icon-minus: url('../img/i-minus-color.svg');
  --icon-arrow-down: url('../img/i-arrow-down.svg');
  --icon-arrow-up: url('../img/i-arrow-up.svg');
  --icon-header-basket: url('../img/i_basket.svg');
  --icon-header-doctors: url('../img/i_doctors.svg');
  --icon-header-login: url('../img/i_login.svg');
  --icon-header-account: url('../img/i_account.svg');
  --icon-header-logout: url('../img/i_logout.svg');
  --icon-header-facebook: url('../img/i_social_facebook.svg');
  --icon-header-instagram: url('../img/i_social_instagram.svg');
  --layout-full-image-background: #6c6b6b;
  --layout-full-image-half: #b4b4b4;
  --layout-full-image-left-color: var(--color);
  --shop-background-info: rgba(176, 135, 111, 0.1);
}
.body-navy {
  --color: #243158;
  --header-background: #1b2951;
  --header-background-fade: rgba(27, 41, 81, 0.96);
  --color-navbar-active: #828895;
  --background-fade: rgba(36, 49, 88, 0.05);
  --color-user-links: #FFF;
  --info-bar-background: #828895;
  --button-background-color: var(--color);
  --button-background-color-hover: #0f1831;
  --logo: url('../img/logo-white.svg');
  --footer-background: #162244;
  --footer-image: url('../img/footer-dark.jpg');
  --layout-full-image-background: #a3b2d9;
  --layout-full-image-half: #2f3f6a;
  --layout-full-image-left-color: #FFF;
  --icon-quote: url('../img/i-quote-dark.svg');
  --icon-plus: url('../img/i-plus-color-dark.svg');
  --icon-minus: url('../img/i-minus-color-dark.svg');
  --icon-arrow-down: url('../img/i-arrow-down-dark.svg');
  --icon-arrow-up: url('../img/i-arrow-up-dark.svg');
  --icon-header-basket: url('../img/i_basket_white.svg');
  --icon-header-doctors: url('../img/i_doctors_white.svg');
  --icon-header-login: url('../img/i_login_white.svg');
  --icon-header-account: url('../img/i_account_white.svg');
  --icon-header-logout: url('../img/i_logout_white.svg');
  --icon-header-facebook: url('../img/i_social_facebook.svg');
  --icon-header-instagram: url('../img/i_social_instagram.svg');
  --shop-background-coupon: rgba(36, 49, 88, 0.1);
}
body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: var(--font-size);
  color: var(--color-text);
  background: #FFF;
  line-height: 1.3;
}
body a {
  color: var(--color);
}
body.page-id-28 footer .newsletter {
  padding-top: 30px;
}
.loader {
  height: 150px;
  background: url('../img/loader.svg') center center no-repeat;
  background-size: 50px auto !important;
  width: 100%;
  display: block;
}
.global-message {
  text-align: center;
  margin: 20px 0px;
  padding: 15px;
  border: 1px solid var(--border-color);
}
.global-message a {
  font-weight: bold;
}
.short-expand:not(.in) > div {
  height: 40px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.short-expand .expand {
  cursor: pointer;
  margin: 10px 0px auto auto;
  padding-right: 20px;
  display: table;
  background: url('../img/i-arrow-down.svg') right center no-repeat;
  background-size: 11px auto !important;
}
.short-expand .expand::before {
  content: attr(data-expand);
}
.short-expand.in > div {
  height: auto;
}
.short-expand.in .expand {
  background: url('../img/i-arrow-up.svg') right center no-repeat;
}
.short-expand.in .expand::before {
  content: attr(data-collapse);
}
.content-flex {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-lines: multiple;
  -moz-box-lines: mulitple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px -15px;
}
.content-flex > div {
  margin: 0px 15px;
}
.wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 0px auto;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.container {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
@media (min-width: 1201px) and (max-width: 1500px) {
  .container {
    width: 100%;
    width: 1230px;
  }
}
@media (min-width: 1501px) {
  .container {
    width: 100%;
    max-width: 1530px;
  }
}
/* Nagłówki */
h1,
h2,
.title-large {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 30px 0px;
  padding: 0px;
}
@media (max-width: 1200px) {
  h1,
  h2,
  .title-large {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  h1,
  h2,
  .title-large {
    font-size: 26px;
  }
}
h3,
.title-medium {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin: 20px 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  h3,
  .title-medium {
    font-size: 21px;
  }
}
h4,
.title-small {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 20px 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  h4,
  .title-small {
    font-size: 18px;
  }
}
.font-tinos {
  font-family: 'Tinos', serif;
  font-style: italic;
}
ul.page-numbers {
  display: block;
  text-align: center;
  list-style: none;
  padding: 0px;
  margin: 30px 0px;
}
ul.page-numbers > li {
  display: inline-block;
  vertical-align: middle;
}
ul.page-numbers > li a,
ul.page-numbers > li span {
  border: 1px solid var(--border-color-dark);
  display: block;
  padding: 0px 10px;
  height: 30px;
  font-size: 13px;
  color: var(--color) text;
  line-height: 27px;
  vertical-align: top;
  text-decoration: none !important;
}
ul.page-numbers > li a.current,
ul.page-numbers > li span.current {
  background: var(--border-color-dark);
  color: #FFF;
}
ul.page-numbers > li .i-prev {
  width: 30px;
  height: 30px;
  display: block;
}
.pagination-wrapper .infinite-pagination + .page-numbers {
  display: none;
}
.el-button,
.button {
  display: inline-block;
  cursor: pointer !important;
  background: var(--button-background-color);
  color: #FFF !important;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 3px;
  min-width: 260px;
  padding: 16px 30px 12px 30px;
  margin: 10px 5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid var(--button-background-color);
  outline: none !important;
  box-shadow: none;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 480px) {
  .el-button,
  .button {
    min-width: 220px;
  }
}
.el-button:hover,
.button:hover {
  background: var(--button-background-color-hover);
}
.el-button.is-navy,
.button.is-navy {
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.el-button.is-table,
.button.is-table {
  display: table;
  margin: 20px 0px 0px 0px;
}
.el-button.is-block,
.button.is-block {
  width: 100%;
  display: block;
}
.el-button.wc-forward,
.button.wc-forward {
  display: block;
  font-weight: bold;
  padding: 20px;
}
.el-button[disabled],
.button[disabled] {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #FFF;
}
blockquote {
  font-size: 32px;
  font-family: 'Tinos', serif;
  font-style: italic;
  text-align: center;
  border: 0px;
  margin: 0px 0px 50px 0px;
  padding: 0px;
}
@media (max-width: 1200px) {
  blockquote {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  blockquote {
    font-size: 24px;
  }
}
blockquote span {
  color: var(--color);
}
.breadcrumb {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0px;
  padding: 30px 0px;
  background: none;
  position: relative;
  z-index: 30;
}
.breadcrumb span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-title);
}
.breadcrumb span a {
  color: var(--color-title);
  text-decoration: none;
}
.breadcrumb span .breadcrumb_last {
  font-weight: bold;
}
.info-bar {
  height: 50px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: var(--info-bar-background);
  color: #FFF;
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .info-bar {
    position: fixed;
    height: 60px;
    -webkit-box-lines: multiple;
    -moz-box-lines: mulitple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 380px) {
  .info-bar {
    font-size: 12px;
  }
}
.info-bar .info-contact {
  float: left;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .info-bar .info-contact {
    float: none;
    margin: 0px;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: mulitple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.info-bar .info-contact a[href^="tel:"] {
  font-weight: bold;
  display: inline-block;
  color: #FFF;
}
.info-bar .info-contact a[href^="mailto:"] {
  color: #FFF;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #FFF;
}
.info-bar .info-socials {
  float: right;
  line-height: 36px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .info-bar .info-socials {
    float: none;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-top: 5px;
    line-height: 26px;
  }
}
.info-bar .info-socials span {
  margin-right: 10px;
}
.info-bar .info-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #FFF;
  margin-left: 4px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .info-bar .info-socials a {
    width: 26px;
    height: 26px;
  }
}
.info-bar .info-socials a.facebook {
  background: var(--icon-header-facebook) no-repeat center center;
  background-size: 8px 14px !important;
}
.info-bar .info-socials a.instagram {
  background: var(--icon-header-instagram) no-repeat center center;
  background-size: 13px 11px !important;
}
.info-bar:after {
  clear: both;
  display: block;
  content: " ";
}
@media (min-width: 1201px) {
  .info-bar.in {
    top: -60px;
  }
}
@media (min-width: 1201px) {
  .slider-spacer {
    height: 235px;
  }
}
header.page-heading {
  background: var(--header-background-fade);
  z-index: 999;
  position: fixed;
  top: 50px;
  left: 0px;
  right: 0px;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 1200px) {
  header.page-heading {
    background: var(--header-background);
  }
}
@media (max-width: 767px) {
  header.page-heading {
    top: 60px;
  }
}
header.page-heading .header-inside {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
@media (max-width: 767px) {
  header.page-heading .header-inside {
    padding: 20px 0px;
  }
}
header.page-heading .header-inside .logo {
  margin-top: 30px;
  background: var(--logo) no-repeat;
  background-size: 100% auto !important;
  width: 200px;
  height: 75px;
  position: relative;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 767px) {
  header.page-heading .header-inside .logo {
    margin: 0px;
  }
}
@media (max-width: 520px) {
  header.page-heading .header-inside .logo {
    width: 147px;
    height: 55px;
  }
}
header.page-heading .header-inside .logo a {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
header.page-heading .header-inside .nav-user,
header.page-heading .header-inside .nav-user-mobile {
  position: absolute;
  right: 0px;
  bottom: 0px;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 1200px) {
  header.page-heading .header-inside .nav-user,
  header.page-heading .header-inside .nav-user-mobile {
    bottom: auto;
    top: 0px;
  }
}
@media (max-width: 767px) {
  header.page-heading .header-inside .nav-user,
  header.page-heading .header-inside .nav-user-mobile {
    right: 50px;
    top: 45px;
  }
}
@media (max-width: 520px) {
  header.page-heading .header-inside .nav-user,
  header.page-heading .header-inside .nav-user-mobile {
    right: 40px;
    top: 32px;
  }
}
header.page-heading .header-inside .nav-user .search,
header.page-heading .header-inside .nav-user-mobile .search {
  display: table;
  width: 100%;
  margin: 0px 0px 0px auto;
}
@media (max-width: 1200px) {
  header.page-heading .header-inside .nav-user .search,
  header.page-heading .header-inside .nav-user-mobile .search {
    float: right;
    width: 250px;
  }
}
@media (max-width: 767px) {
  header.page-heading .header-inside .nav-user .search,
  header.page-heading .header-inside .nav-user-mobile .search {
    display: none;
  }
}
header.page-heading .header-inside .nav-user .search form,
header.page-heading .header-inside .nav-user-mobile .search form {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  /* WebKit, Blink, Edge */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10-11 */
  /* Microsoft Edge */
}
header.page-heading .header-inside .nav-user .search form input,
header.page-heading .header-inside .nav-user-mobile .search form input {
  width: 100%;
  background: none !important;
  color: #FFF;
  text-transform: uppercase;
  border: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 40px;
  line-height: 40px;
  padding: 0px 40px 0px 0px;
  outline: 0px !important;
  text-align: right;
  font-size: 13px;
}
header.page-heading .header-inside .nav-user .search form button,
header.page-heading .header-inside .nav-user-mobile .search form button {
  position: absolute;
  right: 0px;
  top: -1px;
  height: 40px;
  width: 30px;
  background: url('../img/i_search.svg') no-repeat center center;
  background-size: 17px 15px !important;
  border: 0px;
  padding: 0px;
  outline: 0px;
}
header.page-heading .header-inside .nav-user .search form ::-webkit-input-placeholder,
header.page-heading .header-inside .nav-user-mobile .search form ::-webkit-input-placeholder {
  color: #FFF;
}
header.page-heading .header-inside .nav-user .search form :-moz-placeholder,
header.page-heading .header-inside .nav-user-mobile .search form :-moz-placeholder {
  color: #FFF;
}
header.page-heading .header-inside .nav-user .search form ::-moz-placeholder,
header.page-heading .header-inside .nav-user-mobile .search form ::-moz-placeholder {
  color: #FFF;
}
header.page-heading .header-inside .nav-user .search form :-ms-input-placeholder,
header.page-heading .header-inside .nav-user-mobile .search form :-ms-input-placeholder {
  color: #FFF;
}
header.page-heading .header-inside .nav-user .search form ::-ms-input-placeholder,
header.page-heading .header-inside .nav-user-mobile .search form ::-ms-input-placeholder {
  color: #FFF;
}
header.page-heading .header-inside .nav-user .user,
header.page-heading .header-inside .nav-user-mobile .user {
  padding: 24px 0px;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 1200px) {
  header.page-heading .header-inside .nav-user .user,
  header.page-heading .header-inside .nav-user-mobile .user {
    padding: 5px 0px;
    float: left;
    margin-right: 30px;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
}
@media (max-width: 767px) {
  header.page-heading .header-inside .nav-user .user,
  header.page-heading .header-inside .nav-user-mobile .user {
    padding: 0px;
    float: none;
    margin: 0px;
  }
}
header.page-heading .header-inside .nav-user .user a,
header.page-heading .header-inside .nav-user-mobile .user a {
  display: inline-block;
  line-height: 30px;
  margin-left: 20px;
  padding-left: 40px;
  color: var(--color-user-links);
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
@media (max-width: 1200px) {
  header.page-heading .header-inside .nav-user .user a,
  header.page-heading .header-inside .nav-user-mobile .user a {
    font-size: 14px;
    margin-left: 20px;
  }
}
@media (max-width: 1200px) {
  header.page-heading .header-inside .nav-user .user a,
  header.page-heading .header-inside .nav-user-mobile .user a {
    width: 30px;
    height: 30px;
    padding: 0px;
  }
  header.page-heading .header-inside .nav-user .user a > span,
  header.page-heading .header-inside .nav-user-mobile .user a > span {
    display: none;
  }
}
@media (max-width: 520px) {
  header.page-heading .header-inside .nav-user .user a,
  header.page-heading .header-inside .nav-user-mobile .user a {
    margin: 0px 0px 0px 10px;
  }
}
header.page-heading .header-inside .nav-user .user a.login,
header.page-heading .header-inside .nav-user-mobile .user a.login {
  background: var(--icon-header-login) no-repeat left center;
  background-size: 30px 30px !important;
}
header.page-heading .header-inside .nav-user .user a.logout,
header.page-heading .header-inside .nav-user-mobile .user a.logout {
  background: var(--icon-header-logout) no-repeat left center;
  background-size: 30px 30px !important;
}
header.page-heading .header-inside .nav-user .user a.account,
header.page-heading .header-inside .nav-user-mobile .user a.account {
  background: var(--icon-header-account) no-repeat left center;
  background-size: 30px 30px !important;
}
header.page-heading .header-inside .nav-user .user a.doctors,
header.page-heading .header-inside .nav-user-mobile .user a.doctors {
  background: var(--icon-header-doctors) no-repeat left center;
  background-size: 30px 30px !important;
}
header.page-heading .header-inside .nav-user .user a.basket,
header.page-heading .header-inside .nav-user-mobile .user a.basket {
  background: var(--icon-header-basket) no-repeat left center;
  background-size: 30px 30px !important;
}
header.page-heading .header-inside .nav-user .user a #cart-count,
header.page-heading .header-inside .nav-user-mobile .user a #cart-count {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 11px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  right: -10px;
  top: -10px;
  background: var(--color) !important;
  color: #FFF !important;
}
@media (min-width: 1201px) {
  header.page-heading .header-inside .nav-user .user a #cart-count,
  header.page-heading .header-inside .nav-user-mobile .user a #cart-count {
    right: auto;
    left: 18px;
  }
}
@media (max-width: 767px) {
  header.page-heading .header-inside .nav-user.nav-user-mobile,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  header.page-heading .header-inside .nav-user.nav-user-mobile .search,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile .search {
    display: block !important;
    width: 100%;
    float: none;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  header.page-heading .header-inside .nav-user.nav-user-mobile .search,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile .search {
    text-align: center;
  }
  header.page-heading .header-inside .nav-user.nav-user-mobile .search input,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile .search input {
    text-align: center;
    padding: 0px;
  }
}
@media (max-width: 400px) {
  header.page-heading .header-inside .nav-user.nav-user-mobile .user,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile .user {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    padding: 10px 0px;
  }
  header.page-heading .header-inside .nav-user.nav-user-mobile .user a,
  header.page-heading .header-inside .nav-user-mobile.nav-user-mobile .user a {
    margin: 0px 10px;
  }
}
header.page-heading.in {
  top: 0px !important;
  background: var(--header-background);
}
@media (max-width: 767px) {
  header.page-heading.in {
    top: 28px !important;
  }
}
@media (max-width: 380px) {
  header.page-heading.in {
    top: 26px !important;
  }
}
header.page-heading.in .header-inside .logo {
  width: 147px;
  height: 55px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  header.page-heading.in .header-inside .logo {
    margin: 0px;
  }
}
header.page-heading.in .header-inside .nav-dropdown > li > a {
  padding: 15px 0px;
}
@media (max-width: 1200px) {
  header.page-heading.in .header-inside .nav-user {
    top: 10px;
  }
}
@media (max-width: 767px) {
  header.page-heading.in .header-inside .nav-user {
    top: 32px;
  }
}
header.page-heading.in .header-inside .nav-user .user {
  padding: 10px 0px;
}
@media (max-width: 767px) {
  header.page-heading.in .header-inside .nav-user .user {
    padding: 0px;
  }
}
header.page-heading.in .header-inside .navbar-toggle {
  top: 30px;
}
.admin-bar .info-bar {
  top: 0px;
}
.admin-bar header {
  top: 82px;
}
.admin-bar header.in {
  top: 32px !important;
}
@media (max-width: 767px) {
  .admin-bar header {
    top: 106px;
  }
  .admin-bar header.in {
    top: 46px !important;
  }
}
@media (max-width: 600px) {
  .admin-bar header.in {
    top: 0px !important;
  }
}
@media (min-width: 768px) {
  .header-spacer {
    height: 235px;
  }
}
@media (max-width: 767px) {
  .header-spacer {
    height: 175px;
  }
}
@media (max-width: 520px) {
  .header-spacer {
    height: 155px;
  }
}
@media (min-width: 1201px) {
  .header-spacer.has-slider {
    height: 0px !important;
  }
}
.nav-dropdown {
  float: none !important;
  margin: 0px !important;
}
@media (max-width: 767px) {
  .nav-dropdown {
    margin-top: 15px !important;
  }
}
.nav-dropdown > li {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .nav-dropdown > li {
    margin: 0px;
  }
}
.nav-dropdown > li > a {
  display: block;
  padding: 30px 0px;
  font-size: 15px;
  text-transform: uppercase;
  color: #FFF;
  background: none !important;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 767px) {
  .nav-dropdown > li > a {
    padding: 15px 0px;
    text-align: center;
  }
}
.nav-dropdown > li:hover > a,
.nav-dropdown > li:focus > a,
.nav-dropdown > li:active > a,
.nav-dropdown > li.active > a {
  color: var(--color-navbar-active);
}
.nav-dropdown > li .dropdown-menu {
  padding: 10px 20px !important;
  border: 0px;
  margin: 0px;
  left: 0px;
  right: auto;
  background: var(--header-background);
  box-shadow: none !important;
  border: 0px !important;
}
@media (max-width: 767px) {
  .nav-dropdown > li .dropdown-menu {
    padding: 5px 0px !important;
    background: var(--color);
  }
}
.nav-dropdown > li .dropdown-menu > li a {
  display: block;
  background: none !important;
  padding: 10px 0px;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 767px) {
  .nav-dropdown > li .dropdown-menu > li a {
    background: var(--color) !important;
    text-align: center;
    padding: 10px 0px !important;
  }
}
.nav-dropdown > li .dropdown-menu > li:hover a,
.nav-dropdown > li .dropdown-menu > li.active a {
  color: var(--color-navbar-active);
}
@media (max-width: 767px) {
  .nav-dropdown > li .dropdown-menu > li:hover a,
  .nav-dropdown > li .dropdown-menu > li.active a {
    background: #FFF !important;
    color: var(--color) !important;
  }
}
.navbar-collapse {
  padding: 0px;
  margin: 0px;
  border: 0px;
  box-shadow: none;
}
.navbar-toggle {
  position: absolute;
  right: -10px;
  top: 44px;
  margin: 0px;
  z-index: 55;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media (max-width: 520px) {
  .navbar-toggle {
    top: 31px;
  }
}
.navbar-toggle .icon-bar {
  background: var(--color);
}
footer .newsletter {
  padding: 80px 0px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
@media (max-width: 991px) {
  footer .newsletter {
    padding: 50px 0px;
  }
}
footer .newsletter .newsletter-inside:after {
  clear: both;
  display: block;
  content: " ";
}
footer .newsletter .newsletter-inside > div {
  width: 50%;
  float: left;
}
@media (max-width: 1200px) {
  footer .newsletter .newsletter-inside > div {
    width: 100%;
    float: none;
  }
  footer .newsletter .newsletter-inside > div:first-child {
    display: table;
    margin: 0px auto 80px auto;
    width: auto;
  }
}
@media (max-width: 1200px) and (max-width: 991px) {
  footer .newsletter .newsletter-inside > div:first-child {
    margin: 0px auto 30px auto;
  }
}
footer .newsletter .newsletter-inside .newsletter-info {
  padding-left: 250px;
  font-size: 25px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  color: var(--color-title);
}
@media (max-width: 991px) {
  footer .newsletter .newsletter-inside .newsletter-info {
    padding-left: 150px;
  }
}
@media (max-width: 580px) {
  footer .newsletter .newsletter-inside .newsletter-info {
    padding: 0px;
    text-align: center;
  }
  footer .newsletter .newsletter-inside .newsletter-info br {
    display: none !important;
  }
}
footer .newsletter .newsletter-inside .newsletter-info span {
  font-size: 115px;
  line-height: 1;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 250px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  text-align: center;
  color: var(--color);
}
@media (max-width: 991px) {
  footer .newsletter .newsletter-inside .newsletter-info span {
    font-size: 70px;
    width: 150px;
  }
}
@media (max-width: 580px) {
  footer .newsletter .newsletter-inside .newsletter-info span {
    font-size: 50px;
    width: 100%;
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 30px;
  }
}
footer .newsletter .newsletter-inside .newsletter-info strong {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 40px;
}
@media (max-width: 580px) {
  footer .newsletter .newsletter-inside .newsletter-info strong {
    margin-top: 30px;
  }
}
footer .newsletter .newsletter-inside form {
  color: var(--color-title);
  font-size: 16px;
}
footer .newsletter .newsletter-inside form input {
  border: 1px solid var(--input-border);
  height: 46px;
  line-height: 46px;
  padding: 0px 25px;
  font-size: 12px;
  color: var(--color-text);
  width: 100%;
}
footer .newsletter .newsletter-inside form .form-group {
  margin-bottom: 20px;
}
footer .newsletter .newsletter-inside form .form-group.checkbox-center {
  padding: 20px 0px;
  text-align: center;
}
footer .newsletter .newsletter-inside form .form-checkbox label {
  font-size: 15px;
  text-transform: uppercase;
  padding-left: 40px;
  min-height: 26px;
  padding-top: 5px;
}
footer .newsletter .newsletter-inside form .el-button {
  margin: 0px !important;
}
footer .footer {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  min-height: 400px;
  background: var(--footer-background);
}
@media (max-width: 991px) {
  footer .footer {
    min-height: auto;
  }
}
@media (min-width: 992px) {
  footer .footer:before {
    content: " ";
    background: var(--footer-image) no-repeat center center;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 50%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
  }
}
footer .footer:after {
  clear: both;
  display: block;
  content: " ";
}
footer .footer .footer-info-description {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 60px 0px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 5;
}
@media (max-width: 991px) {
  footer .footer .footer-info-description {
    padding: 60px 0px 40px 0px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
  }
}
footer .footer .footer-info-description .description {
  width: 50%;
  float: left;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
@media (max-width: 991px) {
  footer .footer .footer-info-description .description {
    float: none;
    width: 100%;
  }
}
footer .footer .footer-info-description .description .title-rotate {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 5px;
  color: #FFF;
}
@media (min-width: 992px) {
  footer .footer .footer-info-description .description .title-rotate {
    transform-origin: top left;
    transform: translateY(100%) rotate(-90deg);
  }
}
@media (max-width: 991px) {
  footer .footer .footer-info-description .description .title-rotate {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 30px;
  }
}
footer .footer .footer-info-description .description .description-body {
  width: 250px;
  margin: 0px auto;
}
@media (max-width: 991px) {
  footer .footer .footer-info-description .description .description-body {
    width: 100%;
    text-align: center;
  }
}
footer .footer .footer-info-description .description .description-body .title-info {
  font-size: 36px;
  color: #FFF;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  footer .footer .footer-info-description .description .description-body .title-info {
    font-size: 30px;
  }
}
footer .footer .footer-info-description .description .description-body > a {
  display: block;
  margin-top: 10px;
  color: #FFF !important;
}
footer .footer .footer-info-description .description .description-body .socials {
  padding-top: 20px;
}
footer .footer .footer-info-description .description .description-body .socials a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid #FFF;
  margin-right: 4px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  footer .footer .footer-info-description .description .description-body .socials a {
    margin: 0px 5px;
  }
}
footer .footer .footer-info-description .description .description-body .socials a.facebook {
  background: var(--icon-header-facebook) no-repeat center center;
  background-size: 8px 14px !important;
}
footer .footer .footer-info-description .description .description-body .socials a.instagram {
  background: var(--icon-header-instagram) no-repeat center center;
  background-size: 13px 11px !important;
}
footer .footer .footer-info-description .footer-menu {
  width: 50%;
  float: right;
  padding: 10px 0px 0px 100px;
}
@media (max-width: 1200px) {
  footer .footer .footer-info-description .footer-menu {
    padding: 10px 0px 0px 50px;
  }
}
@media (max-width: 991px) {
  footer .footer .footer-info-description .footer-menu {
    float: none;
    width: 100%;
    padding: 40px 0px 0px 0px;
  }
}
footer .footer .footer-info-description .footer-menu .nav-footer {
  list-style: none;
  margin: 0px -10px;
  padding: 0px;
}
footer .footer .footer-info-description .footer-menu .nav-footer:after {
  clear: both;
  display: block;
  content: " ";
}
footer .footer .footer-info-description .footer-menu .nav-footer > li {
  width: 33.33333333333333%;
  float: left;
  padding: 0px 10px;
}
@media (max-width: 480px) {
  footer .footer .footer-info-description .footer-menu .nav-footer > li {
    width: 100%;
    float: none;
    text-align: center;
  }
}
footer .footer .footer-info-description .footer-menu .nav-footer > li > a {
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
footer .footer .footer-info-description .footer-menu .nav-footer > li .sub-menu {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 480px) {
  footer .footer .footer-info-description .footer-menu .nav-footer > li .sub-menu {
    margin-bottom: 20px;
  }
}
footer .footer .footer-info-description .footer-menu .nav-footer > li .sub-menu > li a {
  font-size: 12px;
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  display: block;
  padding: 5px 0px;
}
.layout_56226_0 {
  position: relative;
  z-index: 2;
}
