/*
Theme Name: ITBrolis
Theme URI: URL
Version: 1.0
Author: Linas Pagirys
Author URI: http://www.itbrolis.lt/
*/

/* RESET */
/* ----------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {

}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

.clearfix { zoom: 1; }
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }


/* MAIN LAYOUT */
/* ----------------------------------------- */

@font-face {
  font-family: 'DM Serif Text';
  src: url('fonts/DMSerifText-Italic.woff2') format('woff2'),
  url('fonts/DMSerifText-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Text';
  src: url('fonts/DMSerifText-Regular.woff2') format('woff2'),
  url('fonts/DMSerifText-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url('fonts/Circe-Light.woff2') format('woff2'),
  url('fonts/Circe-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe Extra';
  src: url('fonts/Circe-ExtraLight.woff2') format('woff2'),
  url('fonts/Circe-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url('fonts/Circe-Bold.woff2') format('woff2'),
  url('fonts/Circe-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url('fonts/Circe-Regular.woff2') format('woff2'),
  url('fonts/Circe-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .inputbox {
  color: #999999;
  font-size: 16px;
  line-height: 16px;
  border-color: #ccc;
  height: 39px;
  width: 100%;
}


:root {
  --font:  'Circe', sans-serif;
  --sub-font: 'DM Serif Text', sans-serif;
  --font-size: 16px;
  --line-height: 1;
}

body {
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  color: var(--text-color);
  background-color: white;
  flex-direction: column;
  font-size: var(--font-size);
  line-height: var(--line-height);
}

.container {
  max-width: 1235px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------------------------------------
	Begin of Header
--------------------------------------- */
.top-header {
  text-align: center;
  border-bottom: 1px solid #E7DEED;
  z-index: 100;
  background: white;
}

.top-header a {
  width: auto;
  height: auto;
  display: inline-block;
  padding: 13px 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.top-header a:hover {
  color: var(--main-color);
  opacity: 1;
}


@media screen and (max-width: 992px) {
  .top-header a {
    font-size: 12px;
    padding: 15px 0;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 100;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.scrolled-down {
  transform: translateY(-150%);
}

.scrolled-up {

}

.header__logo h1 {
  font-size: 0;
  line-height: 1;
  margin-bottom: 0
}

.header__logo h1 img {
  width: 131px;
  object-fit: contain;
}

.header__search {

}

.header__search form {
  position: relative;
  border: 1px solid #E7DEED;
  height: 48px;
  border-radius: 4px;
  overflow: auto;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 507px;
}

.header__search form input {
  width: 100%;
  height: 100%;
  border: none;
  padding-left: 46px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 18px;
}

.header__search form:hover {
  border-color: var(--main-color);
}

.header__search form input::placeholder {
  color: #666666;
  font-family: var(--font);
  font-size: 14px;
  line-height: 18px;
}

.header__search form label {
  display: none;
}

.header__search form .search-form__submit {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(88%, -43%);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
}



.header-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

#clickWrapper {
  display: none;
}

.header__row {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.5fr;
  padding-top: 20px;
  padding-bottom: 35px;
  gap: 10px;
}

.header__menu {

}

.header-menus {
  max-width: 98%;

}

.header-menu {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 5px;
  padding: 0;
  margin-bottom: 0;
}

.header-menu .menu-item-has-children {
  position: relative;
}

.header-menu .menu-item-has-children > a:after {
  content: url("images/arrow_down.svg");
  width: auto;
  position: relative;
  top: 0;
  right: 0%;
  transform: translate(0, 0%);
  padding-left: 5px;
}

.header-menu > li > a {
  color: var(--sub-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding-right: 50px;
  display: flex;
  align-items: center;
  padding-bottom: 13px;
}

.header-menu > li:last-child > a {
  padding-right: 0;
}

.header-menu > li > a:hover {
  opacity: 1;
  color: var(--main-color);
}

.header-menu > li > a:focus {
  opacity: 1;
}

.header-menu > li:not(:last-child) {

}

.header-menu .sub-menu {

}

.search-button {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .header-menu .sub-menu {
    background: white;
    position: absolute;
    right: auto;
    left: 0;
    min-width: 229px;
    padding: 15px 15px 15px 15px;
    display: none;
    z-index: 11;
    list-style: none;
    margin: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .header-menu > li:nth-last-child(-n+3) .sub-menu {
    /* Your styles here */
    min-width: auto;
  }



  .header-menu .sub-menu > li:not(:last-child) {
    padding-bottom: 18px;
  }

  .header-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
  }

  .header-menu .sub-menu .menu-item-has-children {

  }

  .header-menu .sub-menu .sub-menu {
    position: absolute;
    min-width: auto;
    display: none;
    top: 10%;
    transform: translate(119%, 0%);
    right: 0%;
    left: auto;
  }
  .header-menu .sub-menu .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  .header-menu .sub-menu li a {
    color: var(--sub-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
  }
  .header-menu .sub-menu li a:hover {
    opacity: 1;
    color: var(--main-color);
  }

  .header-menu .sub-menu li a:focus {
    opacity: 1;
  }
  .header-menu .sub-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1240px) {
  .header__row {
    grid-template-columns: 0.4fr 1fr 0.7fr;
  }
}

.mega-header {
  display: none;
}

@media screen and (max-width: 992px) {
  .header-menus {
    display: none;
  }
  .header-menu > li > a {
    padding-bottom: 0;
    width: 100% !important;
  }
  .header-menu-nav {
    overflow: scroll;
    height: calc(100vh - 61px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 100px;
  }

  .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    background-color: transparent;
    width: 45px;
  }
  .header-link a {
    gap: 5px;
    font-size: 14px;
  }
  .header__search {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 62%;
    padding-left: 10px;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .header__search-active {
    z-index: 15 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .header__search form {
    max-width: 100%;
    width: 100%;
  }
  /* menu start */
  .menu {
    position: absolute;
    background-color: black;
    width: 22px;
    height: 1px;
    margin-top:20px;
    margin-left: 5px;
  }

  .animate.menu{
    animation-name: menu-menu;
    animation-duration: 0.3s;
  }

  @keyframes menu-menu {
    0% {
      width:0;
      height:0;
    }
    50% {
      width:0;
      height:0;
    }
    51%{
      position: absolute;
      background-color: black;
      width: 22px;
      height: 1px;
    }
  }

  .menu:after {
    content: "";
    position: absolute;
    background-color: black;
    width: 22px;
    height: 1px;
    margin-top: -6px;
  }

  .animate.menu:after {
    animation-name: menu-after;
    animation-duration: 0.3s;
  }

  @keyframes menu-after {
    0% {
      transform: rotate(-45deg);
      margin-top:0;
    }
    50% {
      transform: rotate(0deg);
      margin-top:0;
    }
    100%{
      transform: rotate(0deg);
      margin-top:-8px;
    }
  }

  .menu:before {
    content: "";
    position: absolute;
    background-color: black;
    width: 22px;
    height: 1px;
    margin-top: 6px;
  }

  .animate.menu:before{
    animation-name: menu-before;
    animation-duration: 0.3s;
  }
  @keyframes menu-before {
    0% {
      transform: rotate(45deg);
      margin-top:0;
    }
    50% {
      transform: rotate(0deg);
      margin-top:0;
    }
    100%{
      transform: rotate(0deg);
      margin-top:8px;
    }
  }
  /* menu end */

  /* close start */
  .close {
    position: absolute;
    margin-top: 8px;
    margin-left: 0;
    opacity: 1 !important;
    text-shadow: none;
  }

  .close.animate{
    animation-name: close-close;
    animation-duration: 0.3s;
  }

  @keyframes close-close {
    0% {
      position: absolute;
      background-color: black;
      width: 22px;
      height: 1px;
      margin-top:8px;
    }
    50% {
      display:none;
      width: 22px;
      height:1px;
    }
    100%{
      width:0;
      height:0;
    }
  }

  .close:after {
    content: "";
    position: absolute;
    background-color: black;
    width: 22px;
    height: 1px;
    transform: rotate(45deg);
  }

  .animate.close:after {
    animation-name: close-after;
    animation-duration: 0.3s;
  }

  @keyframes close-after {
    0% {
      transform: rotate(0deg);
      margin-top: 10px;
    }
    50% {
      transform: rotate(0deg);
      margin-top: 0;
    }
    100%{
      transform: rotate(45deg);
    }
  }

  .close:before {
    content: "";
    position: absolute;
    background-color: black;
    width: 22px;
    height: 1px;
    transform: rotate(-45deg);
  }

  .animate.close:before {
    animation-name: close-before;
    animation-duration: 0.3s;
  }

  @keyframes close-before {
    0% {
      transform: rotate(0deg);
      margin-top:-8px;
    }
    50% {
      transform: rotate(0deg);
      margin-top:0;
    }
    100%{
      transform: rotate(-45deg);
    }
  }
  /* close end */

  #menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    /*transform: translateX(100%);*/
    width: 100%;
    height: 100vh;


    visibility: hidden;
  }
  #clickWrapper {
    cursor:pointer;
    height: 38px;
    width: 38px;
    margin-top: 0;
    display: block;
  }
  .header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header .container {
    padding: 0 10px;
  }
  .header__links {
    gap: 0px;
  }

  .mega-header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
    /*transform: translateX(100%);*/
    width: 100%;
    height: 100vh;
    opacity: 1;
    z-index: 300;
    visibility: hidden;
    display: block;
  }
  .bg {
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .mega-header-active {
    opacity: 1 !important;

    visibility: visible !important;
    transform: translateY(0%) !important;
  }
  .header-menu {
    flex-direction: column;
    gap: 0px;
    padding-top: 5px;
  }
  .header-menu li a {
    color: white;
    font-size: 16px;
    line-height: 1;
    position: relative;
    font-weight: 700;
    padding-bottom: 22px;
    padding-top: 22px;
    width: 100%;
  }
  .header-menu .sub-menu li a {



  }
  .header__button-cross {
    z-index: 20;
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    color: #F8D1C8;
    font-size: 27px;
    font-family: var(--sub-font);
    line-height: 1;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mega-header__container {
    padding-top: 46px;

  }
  .mega-header__block {
    padding: 0 10px;
  }
  .header-menu li > .sub-menu {
    display: none;
  }
  .header-menu > li > a {
    width: auto;
    display: inline-block;
  }
  .header-menu > li > a:before {
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    content: url("images/menu-arrow.svg");
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7476%) hue-rotate(87deg) brightness(104%) contrast(100%);
  }
  .header-menu > li > a:after {
    display: none;
  }
  .header-menu > li {

    border-bottom: 1px solid #E7DEED;
  }
  .header-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
  }
  .header-menu .sub-menu li:first-child a {
    padding-top: 5px;
  }
  .header-menu .sub-menu li a{
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
    width: 100% !important;
  }
  .header-menu .sub-menu li {

    display: block;
  }

  .header-menu .sub-menu li:last-child {
    padding-bottom: 0;
  }
  .header-menu .sub-menu li a {
    color: white;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
  }
  .mega-header .menu-item-has-children > a {

  }
  .header-menu .menu-item-has-children > a:after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    display: none;
  }
  .header-menu > li > a:hover {
    color: white;
  }
  .header-menu > li > a:focus {
    color: white;
  }
  .header-menu .current-menu-item > a {
    color: #E7DEED !important;
  }
  .active-item {

  }
  .active-item .toggle-sub-menu {
    transform: translate(-100%, 0%) rotate(90deg) !important;
  }
}


@media screen and (max-width: 768px) {
  .header-link a {
    gap: 0;
    font-size: 0;
  }
  .header__logo h1 img {
    width: 72px;
  }
}

/* ---------------------------------------
	End of Header
--------------------------------------- */

.admin-bar header {
  /*top: 32px;*/
}

/* ---------------------------------------
	Begin of Footer
--------------------------------------- */

.footer {
  padding: 48px 0;
  background-color: var(--accent-color);
  margin-top: auto;
}


.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.footer-menus-block {
  display: flex;
  gap: 10px;
  flex: 1 1 11%;
  justify-content: space-between;
}

.footer__column {
  flex: 1 1 11%;
}

.footer__column-block {
  max-width: 384px;
  margin-left: auto;
}

.footer__menus {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-menu {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  margin-bottom: 20px;
  pointer-events: none;
}

.toggle-menu img {
  display: none;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.footer-menu li a {
  color: white;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.footer-menu li a:hover {

}

.contact-form-title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.35;
  color: white;
  margin-bottom: 23px !important;
  font-weight: 700;
}

.contact-form-bottom-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: white;
  margin-bottom: 23px;
  display: block;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-field br {
  display: none;
}

.contact-form-field label {
  display: none;
}

.contact-form-field input {
  border-radius: 4px;
  border: 1px solid #E7DEED;
  height: 51px;
  background-color: white;
  color: var(--text-color);
  padding-left: 15px;
}

.contact-form-bottom {
  position: relative;
}

.contact-form-bottom .wpcf7-spinner {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-form-bottom .wpcf7-submit {
  background-color: white;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid #E7DEED;
  height: 51px;
}

.contact-form-bottom .wpcf7-submit:hover {
  background-color: var(--main-color);
  color: white;
}

.footer__column .wpcf7-response-output {
  color: white;
}

.contact-form-field input::placeholder {
  color: #7F7F7F;
  font-size: 14px;
  line-height: 1;
}

.contact-us-form {
  margin-bottom: 20px;
}

.socials {
  display: flex;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.socials li img {
  max-width: 33px;
  object-fit: contain;
}

.footer-socials {
  display: none;
}

@media screen and (max-width: 992px) {
  .footer-menus-block {
    display: flex;
    gap: 10px;
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .footer__column {
    flex: 1 1 100%;
  }

  .footer__column-block {
    max-width: 100%;
    margin-left: 0;
  }
  .footer__row {
    flex-direction: column-reverse;
    gap: 30px;
  }
}


@media screen and (max-width: 768px) {
  .footer__row {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-menus-block {
    flex-direction: column;
  }
  .footer__column .socials {
    display: none;
  }
  .toggle-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 13px;
    pointer-events: auto;

  }
  .toggle-menu img {
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .footer-socials {
    display: flex;
    padding-top: 15px;
  }
  .footer {
    padding: 43px 0;
  }
  .footer .container {
    padding: 0 10px;
  }
  .contact-form-bottom-text {
    margin-bottom: 7px;
  }
  .footer-menu li a {
    font-size: 14px;
  }
  .footer__menus {
    gap: 5px;
  }
  .footer-menu {
    display: none;
  }
  .footer-menu li {
    margin-bottom: 25px;
  }
  .footer-menu li:last-child {
    margin-bottom: 19px;
  }
  .footer-menu li:first-child {
    margin-top: 8px;
  }
  .toggle-active img {
    transform: rotate(180deg);
  }
}

  /* ---------------------------------------
	  End of Footer
  --------------------------------------- */

#main-content {
  flex: 1 0 auto;
}

a {
  color: #000000;
  transition: all 0.3s;
}

a:hover,
a:active,
a:focus {
  color: var(--main-color);
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
}

*:focus,
*:active,
*:hover {
  outline: none;
}

p {

}

p:not(:last-child) {
  margin-bottom: 1rem;
}

ul {
  margin-bottom: 1rem;
  list-style: disc;
  padding-left: 20px;
}

ol {
  margin-bottom: 1rem;
  list-style: decimal;
  padding-left: 20px;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
}

h4,
h5,
h6 {
  margin-bottom: 1rem;
}

/* ---------------------------------------
	H1
--------------------------------------- */

h1 {
  font-size: 55px;
  line-height: 1.35;
  font-family: var(--sub-font);
}

@media (max-width: 992px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 38px;

  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 35px;
  }
}

/* ---------------------------------------
	H2
--------------------------------------- */

h2 {
  font-size: 32px;
  line-height: 1.35;
  font-family: var(--sub-font);
}

@media (max-width: 992px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 28px;
  }
}

/* ---------------------------------------
	H3
--------------------------------------- */

h3 {
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 992px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 22px;
  }
}

/* ---------------------------------------
	H4
--------------------------------------- */

h4 {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}


/* ---------------------------------------
	H5
--------------------------------------- */

h5 {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 768px) {
  h5 {
    font-size: 14px;
  }
}

/* ---------------------------------------
	H6
--------------------------------------- */


h6 {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 768px) {
  h6 {
    font-size: 12px;
  }
}

/* ---------------------------------------
	Button
--------------------------------------- */

.button {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px;
}

.button:after {
  content: url("images/arrow_white.svg");
  position: relative;
  top: 0;
  transform: translate(0, 1px);
}

.button:hover {
  background-color: white;
  border-color: var(--main-color);
  opacity: 1;
}

.button:hover:after {
  filter: brightness(0) saturate(100%) invert(45%) sepia(66%) saturate(7494%) hue-rotate(259deg) brightness(98%) contrast(98%);
}

.button:focus {
  opacity: 1;
}

/* ---------------------------------------
	White Button
--------------------------------------- */

.white-button {

}

.white-button {
  background-color: white;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 20px;
}

.white-button:after {

}

.white-button:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  opacity: 1;
  color: white;
}



.white-button:focus {
  opacity: 1;
}

.rte a {
  color: #f14f1d;
}

.rte a:hover {
  color: #27c9ea;
}

iframe {
  border: none;
  max-width: 100%!important;
}

.rte p {
  margin-bottom: 25px;
  color: #666666;
}

.rte div {
  font-size: 16px;
}

.rte a:hover, .rte a:focus, .rte a:visited {
  opacity: 0.8;
  text-decoration: none;
}

.rte h1 {
  font-size: 60px;
  line-height: 60px;
  margin-top: 36px;
  margin-bottom: 24px;
}

.rte h2 {
  font-size: 48px;
  line-height: 48px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.rte h3 {
  font-size: 36px;
  line-height: 36px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.rte h4 {
  font-size: 30px;
  line-height: 30px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.rte h5 {
  font-size: 24px;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.rte img {
  max-width: 100%;
}

.rte ul {
  list-style-type:circle;
  padding-left: 30px;
  margin-bottom: 30px;
}

.rte ul {
  list-style-type:circle;
  padding-left: 30px;
  margin-bottom: 30px;
}

.rte ol {
  list-style-type:decimal;
  padding-left: 30px;
  margin-bottom: 30px;
}

.rte ul li,
.rte ol li {
  font-size: 16px;
  line-height: 31px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0em 1em 0.5em 0;
}

.alignright {
  float: right;
  margin: 0em 0 0.5em 1em;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

.rte table tr td,
.rte table tr th {
  border: 1px solid #cecece;
  padding: 5px;
}

.rte table {
  margin-bottom: 20px;
}

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

.rte pre {
  padding: 25px;
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 26px;
  word-break: normal;
  word-wrap: normal;
  background-color: #ccf1ff;
  border: 1px solid #9ce4ff;
  border-radius: 4px;
  color: #1794c4;
  white-space: pre-wrap;       /* css-3 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;
}


.show-desctop {
  display: block !important;
}

.show-mobile {
  display: none !important;
}

blockquote {
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  width: 100%;
  margin: 20px 0;
  padding: 20px 40px;
  line-height: 1.45;
  position: relative;
  color: #383838;
}

blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -10px;
  top: -10px;
  color: #7a7a7a;
}

blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

#gallery-1 img {
  border: 0px solid #cfcfcf !important;
  display: block;
}

.gallery-caption{
  display: none;
}

input {
  width: 100%;
  padding: 5px 5px;
  font-size: 14px;
}
input[type="checkbox"] {
  width: auto;

}
input[type="radio"] {
  width: auto;
}
textarea {
  width: 100%;
  padding: 5px 5px;
  font-size: 14px;
  height: 150px;
}

select {
  width: 100%;
  padding: 5px 5px;
  font-size: 14px;
}

label {
  font-size: 14px;
}

p.wp-caption-text {
  font-size: 12px;
  line-height: 14px;
}

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


.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* GLOBAL PAGE STYLES */
/* ----------------------------------------- */

.not-found {
  text-align: center;
  padding: 100px 0;
}

.not-found h1 {
  margin-bottom: 30px;
}

nav {
  width: 100%;
}



.main-desc-nav > li:hover .sub-menu {
  display: block;
}

@media screen and (max-width: 768px) {

  #cssmenu,
  #cssmenu ul,
  #cssmenu ul li,
  #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #cssmenu {
    color: #ffffff;
    margin-top: 30px;
  }

  #cssmenu ul ul {
    display: none;
  }
  .align-right {
    float: right;
  }
  #cssmenu > ul > li > a {
    padding: 15px 20px;
    border-left: 1px solid #1682ba;
    border-right: 1px solid #1682ba;
    border-top: 1px solid #1682ba;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
    background: #36aae7;
  }
  #cssmenu > ul > li > a:hover,
  #cssmenu > ul > li.active > a,
  #cssmenu > ul > li.open > a {
    color: #eeeeee;
    background: #1fa0e4;
  }
  #cssmenu > ul > li.open > a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #1682ba;
  }
  #cssmenu > ul > li:last-child > a,
  #cssmenu > ul > li.last > a {
    border-bottom: 1px solid #1682ba;
  }
  .holder {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0px;
  }
  .holder::after,
  .holder::before {
    display: block;
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    right: 20px;
    z-index: 10;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .holder::after {
    top: 17px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
  }
  #cssmenu > ul > li > a:hover > span::after,
  #cssmenu > ul > li.active > a > span::after,
  #cssmenu > ul > li.open > a > span::after {
    border-color: #eeeeee;
  }
  .holder::before {
    top: 18px;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-color: inherit;
    border-left-color: inherit;
  }
  #cssmenu ul ul li a {
    cursor: pointer;
    border-bottom: 1px solid #32373e;
    border-left: 1px solid #32373e;
    border-right: 1px solid #32373e;
    padding: 10px 20px;
    z-index: 1;
    text-decoration: none;
    font-size: 13px;
    color: #eeeeee;
    background: #49505a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.open > a,
  #cssmenu ul ul li.active > a {
    background: #424852;
    color: #ffffff;
  }
  #cssmenu ul ul li:first-child > a {
    box-shadow: none;
  }
  #cssmenu ul ul ul li:first-child > a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  #cssmenu ul ul ul li a {
    padding-left: 30px;
  }
  #cssmenu > ul > li > ul > li:last-child > a,
  #cssmenu > ul > li > ul > li.last > a {
    border-bottom: 0;
  }
  #cssmenu > ul > li > ul > li.open:last-child > a,
  #cssmenu > ul > li > ul > li.last.open > a {
    border-bottom: 1px solid #32373e;
  }
  #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
    border-bottom: 0;
  }
  #cssmenu ul ul li.menu-item-has-children > a::after {
    display: block;
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    right: 20px;
    z-index: 10;
    top: 11.5px;
    border-top: 2px solid #eeeeee;
    border-left: 2px solid #eeeeee;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #cssmenu ul ul li.active > a::after,
  #cssmenu ul ul li.open > a::after,
  #cssmenu ul ul li > a:hover::after {
    border-color: #ffffff;
  }

}


.menu-wrapper {
  display: flex;
}
.logo-holder {
  padding: 12px;
  margin-right: 48px;
}
.main-desc-nav {
  display: flex;
  justify-content: flex-end;
}
.subheader {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0 12px 0;
  margin-bottom: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.web-section {
  padding: 96px 0;
}



.mobile-menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 12px;
  background: #fff;
  z-index: 20;
  border-bottom: 1px solid #dcdcdc;
}
.admin-bar .mobile-menu {
  top: 46px;
}
.mobbutton {
  display: inline-block;
  width: 24px;
}
.mobbutton span {
  width: 100%;
  height: 2px;
  background: #424242;
  margin-bottom: 5px;
  display: block;
}
.mobbutton span:last-child {
  margin-bottom: 0px;
}
.mob-logo-holder {
  position: relative;
}
.mobile-menu .mob-logo-holder img {
  max-width: 100px;
  position: absolute;
  left: 0px;
  top: 2px;
}
.items-mobile {
  text-align: right;
}
.items-mobile .call-britta,
.items-mobile .mobbutton {
  display: inline-block;
}
.items-mobile .mobbutton {
  margin-left: 24px;
}
.mobilefooter-wrapper {
  position: fixed;
  left: calc(0px - 100%);
  top: 0px;
  width: 100%;
  background: #f3fdef;
  z-index: 9999999999;
  transition: all 0.3s;
  height: 100vh;
}
.closemobmenu {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 11px 15px;
  border-bottom: 1px solid #e6f7df;
  border-left: 1px solid #e6f7df;
}



.cookie-law-wrapper-in {
  display: flex;
}
.cookie-law-text-wrapper {
    display: flex;
}
.cookie-law-wrapper {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background: #002d47;
  color: #fff;
  padding: 10px 0px;
  z-index: 50000;
  font-size: 14px;
}
.cookie-law-text-wrapper a {
  text-decoration: underline;
  color: #fff;
}
.cookie-law-text-wrapper a:hover {
  color: #fff;

}
.cookie-law-wrapper p {
  margin-bottom: 0px;
}
.cookie-law-button-wrapper button {
  background: #e9e9e9;
  border: 2px solid #e9e9e9;
  color: #002d47;
  padding: 15px 15px;
  vertical-align: top;
  margin: 0px 0 0 24px;
  font-size: 14px;
  text-transform: uppercase;
  width: 195px;
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  cursor: pointer;
}
.cookie-law-button-wrapper button:hover{
  opacity: 0.7;
  transition: all 0.3s;
}

.woocommerce-cart .nbg-checkout-shipping-methods {
  display: none;
}
.nbg-checkout-right .nbg-checkout-shipping-methods{
  display: none;
}

.woocommerce-checkout .top-header,
.woocommerce-checkout .header,
.woocommerce-checkout .footer



{
  display: none;
}

.woocommerce-checkout .wp-block-group.container {
  max-width: 1800px;
}
.woocommerce-checkout form .form-row {
  padding: 3px;
  margin: 0 0 6px;
  width: 50%;
}
.woocommerce-checkout .form-row.place-order {
  width: 100% !important;
}
.nbg-payment-confirm-buttons-block button#place_order {
  border-radius: 30px !important;
}


.payment_box.payment_method_klix_card > div > label {
  display: flex;
  align-items: center;
}
.payment_box > div > label {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: center;
  border: 1px solid #E7DEED;
  min-height: 100px;
}

.payment_box {
  padding-left: 0 !important;
}

.payment_box > div {
  gap: 10px;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
}

.payment_box > div label {
  width: 100% !important;
}

.ul.payment_methods li img {
  margin: 0;
}



body li.payment_method_bank_transfer .spell-pm-image img {
  margin-left: 0px !important;
  margin-top: 0px !important;
  max-height: none !important;
  height: 28px !important;
  width: auto !important;
  float: left !important;
}

.my-product-content__block p {
  line-height: 26px;

}
.my-product-content__block ul li,
.my-product-content__block ol li {
  line-height: 26px;
}

body div#mp-map-preview {
  display: none !important;
}

.my-product-content__title h2 {
  font-size: 34px;
  font-weight: 400;
  font-family: var(--sub-font);
  margin-bottom: 38px !important;
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  pointer-events: none;
}


section.page-logo.web-section {
  padding: 20px 0 0 0;
  margin-bottom: -87px;
}

.soldouttext {
  border-bottom: 1px solid #E7DEED;

}

.soldouttext h3 {
  font-size: 28px;
  line-height: 32px;
  color: #512973;
  font-weight: 700;
}

.page-template-template-checkout h2.wp-block-heading {
  display: none;
}
.page-template-template-checkout .custom-login-register .woocommerce-form-register p.form-row.form-row-wide {
  width: 50% !important;

}

.page-template-template-checkout .woocommerce-form-register .woocommerce-privacy-policy-text{
  clear: both;
  display: block;
}

.page-template-template-checkout  form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  display: flex;
  flex-wrap: wrap;
}

.page-template-template-checkout .custom-login-register .woocommerce-form-register input {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: normal;
  padding: .5em;
  display: block;
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width) solid var(--wc-form-border-color);
  border-radius: var(--wc-form-border-radius);
  color: var(--wc-form-color-text, #000);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
}

.showincashout {
  display: block !important;
  width: 100%;
}





li.brand-item {
  height: 125px;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
li.brand-item img {
  max-height: 120px;
}



#breadcrumbs span > span:nth-child(3) {
  display: none !important;
}
#breadcrumbs span > picture:nth-child(4) {
  display: none !important;
}
#breadcrumbs > span > picture:last-of-type {
  display: none !important;
}
#breadcrumbs > span > span:last-child {
  display: none !important;
}

.woocommerce-form-register .woocommerce-privacy-policy-text > p {
  display: none;
}


@media screen and (max-width: 1500px) {

}

@media screen and (max-width: 1650px) {

}

@media screen and (min-width: 1200px) {

}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 992px) {

  .header-link-cart {

    position: relative;
    padding-right: 7px;
    width: 38px;
  }

  .header-link {
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__button-cross img {
    position: relative;
    right: 4px;
    top: -40px;
  }
}

@media screen and (max-width: 768px) {
  .page-template-template-checkout .custom-login-register .woocommerce-form-register p.form-row.form-row-wide {
    width: 100% !important;

  }
}

@media screen and (max-width: 767px) {

  section.page-logo.web-section {
    padding: 20px 0 0 0;
    margin-bottom: -10px;
  }
  
  .my-product-content__title h2 {
    margin-bottom: 0 !important;
    width: 100%;
    text-align: left;
    position: relative;
    pointer-events: auto;
    font-size: 20px;
  }

  .show-desctop {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

   .cookie-law-wrapper-in {
    display: block;
  }

  .cookie-law-text-wrapper {
    display: inline-block;
    width: 100%;
  }

  .cookie-law-wrapper p {
    padding: 15px;
  }

  .cookie-law-button-wrapper {
    display: inline-block;
    width: 100%;
    text-align: center;
    vertical-align: top;
    padding: 15px;
  }

  .web-section {
    padding: 36px 0;
  }

  body {
    /*padding-top: 46px;*/
  }
  
  .map-responsive{
    padding-bottom:110%;
  }
  .video-wrapper {
    padding-bottom: 110%; /* 16:9 */
  }
}

@media screen and (max-width: 480px) {

}



.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}


/* ---------------------------------------
	Banner
--------------------------------------- */

.banner {
  position: relative;
  padding: 40px 15px 25px 15px;
}

.banner .container {
  position: relative;
  max-width: 1205px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner .bg-image {

}

.banner__content-text {
  color: #F8D1C8;
  margin-bottom: 34px;
}
.banner__content-text span {
  font-size: 55px;
  line-height: 1.35;
  font-family: var(--sub-font);
}



.banner__content {
  z-index: 5;
  position: relative;
}

.banner__button .button {
  text-transform: uppercase;
}

.banner__button .button:hover,
.banner-item .button:hover{
  background-color: #A13DF6;
  border-color: #A13DF6;
  opacity: 1;
}
.banner__button .button:hover:after,
.banner-item .button:hover:after{
  filter: inherit !important;
}


.banner__content {
  padding-left: 54px;
}

.banner__button {
  padding-left: 54px;
}

@media screen and (max-width: 992px) {
  .banner {
    padding: 5px 10px;
  }
  .banner__content {
    padding-left: 0;
    padding-top: 34px;
  }
  .banner__content-text {
    margin-bottom: 10px;
  }
  .banner__button {
    padding-left: 0;
  }
  .banner .container {
    justify-content: flex-start;
  }

}

@media screen and (max-width: 768px) {
  .banner__content {

  }

  .banner__content-text span {
    font-size: 35px;
  }

  .banner .container {
    min-height: 277px;
  }
  .banner__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding-left: 0;
    z-index: 12;
  }
  .banner__button .button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .banner {
    overflow: hidden;
  }
}


/* ---------------------------------------
	Banners
--------------------------------------- */

.banners {
  position: relative;
  padding: 0;
}

.banner-item {
  position: relative;
}

.banner-item .bg-image {

}

.banner-item__content-text {
  color: #F8D1C8;
  margin-bottom: 34px;
}

.banner-item__content {
  z-index: 5;
  position: relative;
}

.banner-item__button .button {
  text-transform: uppercase;
}


.banner-item:nth-child(odd) .banner-item__content {
  padding-left: 67px;
}

.banner-item:nth-child(odd) .banner-item__button {
  padding-left: 67px;
}

.banner-item:nth-child(even) {
  text-align: right;
}

.banner-item:nth-child(even) .banner-item__content {
  padding-right: 67px;
}

.banner-item:nth-child(even) .banner-item__button {
  padding-right: 67px;
}


.banners__list {
  display: flex;
  gap: 25px;
}

.banner-item {
  min-height: 250px;
  flex: 1 1 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-item__content-text h2 {
  color: #722F85;
  font-family: var(--sub-font);
  font-size: 40px;
  line-height: 1.35;
}
.banner-item__content-text span {
  color: #722F85;
  font-family: var(--sub-font);
  font-size: 40px;
  line-height: 1.35;
}
@media screen and (max-width: 992px) {
  .banner-item {
    padding: 5px;
  }
  .banner-item__content {
    padding-left: 0;
    padding-top: 34px;
  }
  .banner-item__content-text {
    margin-bottom: 10px;
  }
  .banner-item__button {
    padding-left: 0;
  }
  .banner-item .container {
    justify-content: flex-start;
  }
  .banner-item__content-text h2,
  .banner-item__content-text span {
    font-size: 32px;
    line-height: 1.35;
  }
  .banner-item:nth-child(odd) .banner-item__content {
    padding-left: 15px;
  }

  .banner-item:nth-child(odd) .banner-item__button {
    padding-left: 15px;
  }

  .banner-item:nth-child(even) .banner-item__content {
    padding-right: 15px;
  }

  .banner-item:nth-child(even) .banner-item__button {
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .banner-item .container {
    min-height: 277px;
  }
  .banner-item__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding-left: 0;
    z-index: 12;
  }
  .banner-item__button .button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .banner-item__content-text h2,
  .banner-item__content-text span{
    font-size: 24px;
    line-height: 1.35;
  }
  .banners .container {
    padding: 5px 10px 5px 10px;
  }

  .banners__list {
    gap: 10px;
  }
  .banner-item {
    min-height: 183px;
    justify-content: flex-start;
  }
  .banner-item:nth-child(odd) .banner-item__content {
    padding-left: 8px;
  }

  .banner-item:nth-child(odd) .banner-item__button {
    padding-left: 8px;
  }

  .banner-item:nth-child(even) .banner-item__content {
    padding-right: 8px;
  }

  .banner-item:nth-child(even) .banner-item__button {
    padding-right: 8px;
  }
  .banner-item__content {
    padding-top: 12px;
  }
  .banners {
    overflow: hidden;
  }
}

/* ---------------------------------------
	Popular Categories
--------------------------------------- */

.popular-categories {
  padding: 38px 0;
}

.popular-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.popular-categories__title {
  margin-bottom: 37px;
}

.popular-category {
  border-radius: 4px;
  border: 1px solid #E7DEED;
  flex: 1 1 28%;
  position: relative;
  min-height: 69px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popular-category img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 87px;
  height: 100%;
  object-fit: contain;
}

.popular-category a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.popular-category p {
  margin: 0;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  width: 100%;
  padding: 0 90px;
}

.popular-category a:hover p {
  color: var(--main-color);
}

@media screen and (max-width: 992px) {
  .popular-category img {
    max-width: 70px;
    height: 100%;
    object-fit: cover;
  }
  .popular-category p {
    padding: 0 70px;
  }
}

@media screen and (max-width: 768px) {
  .popular-categories .container {
    padding: 0 10px;
  }
  .popular-categories__title {
    margin-bottom: 17px;
  }
  .popular-categories__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .popular-category p {
    padding: 0 5px 0 50px;
  }
  .popular-category {
    min-height: 67px;
  }
  .popular-categories {
    overflow: hidden;
  }
}

@media screen and (max-width: 350px) {
  .popular-category img {
    max-width: 55px;
  }
}

/* ---------------------------------------
	Product
--------------------------------------- */

.nebegeda-product {
  border: 1px solid #E7DEED;
  border-radius: 4px;
  /*max-width: 280px;*/
  list-style: none;
  position: relative;
}

.nebegeda-product__image {
  background-color: white;
  height: 214px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.nebegeda-product__image img {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 0%);
  object-fit: contain;
  padding: 5px;
}

.nebegeda-product__image-hover img {
  width: 100% !important;
  height: 100% !important;
}

.nebegeda-product__no-featured-image img {
  width: auto !important;
}

.nebegeda-product__featured-image {
  opacity: 1;
}

.nebegeda-product__gallery-item {
  opacity: 0;
}

.nebegeda-product__image img {
  object-fit: contain;
  transition: all 0.5s ease;
  width: 100%;
}

.nebegeda-product__image-hover:hover .nebegeda-product__featured-image {
  opacity: 0;
}

.nebegeda-product__image-hover:hover .nebegeda-product__gallery-item {
  opacity: 1;
}

.nebegeda-product__image-no-hover:hover {
  opacity: 0.7;
}

.nebegeda-product__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  margin-top: 8px;
}

.stars {
  padding: 3px 0 0 0;
}

.nebegeda-product__image {

}

.nebegeda-product__title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 11px;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 5px;
}

.nebegeda-product__price {
  margin-bottom: 7px !important;
}

 .woocommerce-price-suffix {
  display: none;
}

.nebegeda-product__price .woocommerce-price-suffix {
  display: none;
}

.nebegeda-product__price span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.nebegeda-product__price ins {
  text-decoration: none;
  color: #B12704;
}

.nebegeda-product__price del span {
  font-weight: 400;
}

.nebegeda-product__buttons {
  margin-top: auto;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.nebegeda-product .added_to_cart {
  display: flex;
  background-color: #13ab13 !important;
  text-align: center;
  padding: 10px;
  margin-top: 5px;
  justify-content: center;
  color: white;
  border-radius: 4px;
}



.nebegeda-product__buttons a {
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.nebegeda-product__buttons a:after {
  display: none;
}

/* ---------------------------------------
	Products Slider
--------------------------------------- */

.products-slider-arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 5px;
}

.slick-arrow {
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 1;
  position: relative;
}

.products-slider .star-rating {
  float: none;
  font-size: 13px;
}

.slick-prev {

}

.slick-prev:after {
  content: url("images/slick-prev.svg");
}

.slick-next {

}

.slick-next:after {
  content: url("images/slick-next.svg");
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 5px;
  padding: 35px 0;
  list-style: none;
}



.slick-dots li button {
  border: none;
  font-size: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #E7DEED;
  transition: all 0.3s ease-in-out;
}

.slick-active button {
  background-color: #A13DF6 !important;
}

.products-slider {
  padding: 2px 0;
}

.products-slider .slick-list {
  margin: 0 -15px;
}

.products-slider .slick-track {
  display: flex;
  height: auto;
}

.products-slider .slick-slide {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.products-slider .slick-slide > div {
  height: 100%;
}

.products-slider .nebegeda-product {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.products-slider__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 44px;
}

.products-slider__titles {
  display: flex;
  align-items: center;
  gap: 38px;
}

.products-slider__title {
  margin-bottom: 0;
}

.products-slider__titles a {
  display: flex;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-color);
  height: auto;
  align-items: baseline;
  gap: 5px;
}

.products-slider__titles a:hover {
  color: var(--main-color);
}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
  .products-slider__top .products-slider-arrows {
    display: none;
  }
  .products-slider__titles {
    justify-content: space-between;
    width: 100%;
  }
  .products-slider__top {
    padding-bottom: 18px;
  }
  .products-slider__titles a {
    font-size: 12px;
  }
  .products-slider {
    padding: 14px 0 35px 0;
  }
  .products-slider .container {
    padding: 0 10px;
  }
  .products-slider .slick-list {
    margin: 0 -5px;
  }
  .products-slider .slick-slide {
    margin: 0 5px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .slick-dots {
    padding: 12px 0;
  }
  .products-slider {
    overflow: hidden;
  }

  .products-slider__top a {
    flex-wrap: wrap;
  }
}

/* ---------------------------------------
	Brands
--------------------------------------- */

.brands {
  padding-bottom: 20px;
}

.brands__gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.brands__title {
  margin-bottom: 42px !important;
}

@media screen and (max-width: 768px) {
  .brands__title {
    margin-bottom: 16px !important;
  }
  .brands .container {
    padding: 0 10px;
  }
  .brands__gallery {
    justify-content: space-between;
  }
  .brands__gallery li {
    display: flex;
    align-items: center;
  }
}

/* ---------------------------------------
	Blocks Links
--------------------------------------- */

.blocks-links {
  padding-top: 5px;
  padding-bottom: 5px;
}

.blocks-links__slider {

}

.blocks-links__title {
  margin-bottom: 0 !important;
}

.blocks-link {
  background-color: #E6DFEC;
  padding: 12px 0;
}

.blocks-links__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px !important;
}

.blocks-links-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.blocks-link a {
  display: flex;
}

.block-link__column {

}

.block-link__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 15px;
}

.block-link__content-subtitle {
  margin-bottom: 10px;
}

.block-link__content-title {
  font-family: var(--sub-font);
  margin-bottom: 30px !important;
}

.block-link__arrow {
  display: flex;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid var(--text-color);
  justify-content: center;
  align-items: center;
}

.circle-violet {
  background-color: #f1EBf0;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  border-radius: 50%;
  width: 125px;
  height: 125px;
  z-index: 0;
}

.block-link__image {
  position: relative;
}

.block-link__image img {
  max-width: 190px;
  z-index: 2;
  position: relative;
}

.blocks-link a:hover {
  outline: none;
  box-shadow: none;
  opacity: 1;
}

.blocks-link a:hover .block-link__arrow {
  border-color: var(--main-color);
}

.blocks-link a:hover .block-link__arrow img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(79%) saturate(5075%) hue-rotate(259deg) brightness(98%) contrast(98%);
}

.blocks-link a:focus {
  outline: none;
  box-shadow: none;
}

.blocks-links .slick-list {
  margin: 0 -15px;
}

.blocks-links .slick-track {
  display: flex;
  height: auto;
}

.blocks-links .slick-slide {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  height: auto;
}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
  .blocks-links__top {
    margin-bottom: 18px !important;
  }
  .blocks-links-arrows {
    display: none;
  }
  .blocks-links .container {
    padding: 0 10px;
  }
  .blocks-links {
    padding-bottom: 33px;
    overflow: hidden;
  }
}

/* ---------------------------------------
	Testimonials
--------------------------------------- */

.testimonials {
  padding: 25px 0;
}

.testimonials__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testimonial-item {
  background-color: #E6DFEC;
  position: relative;
  padding: 22px 10px 10px 19px;;
  overflow: hidden;
  min-height: 304px;
}

.testimonials__arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 5px;
}

.testimonials__title {
  margin-bottom: 0 !important;
}

.testimonial-item:after {
  position: absolute;
  background-color: #F1EDF4;
  width: 239px;
  height: 239px;
  bottom: 0;
  right: 0;
  transform: translate(13%, 50%);
  content: '';
  border-radius: 50%;
}

.testimonials-item__title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 13px;
  display: block;
}

.testimonial-item__date {
  color: #8F8F8F;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 15px;
}

.testimonial-item__content {
  padding-right: 20px;
  z-index: 2;
  position: relative;
}

.testimonial-item__content p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial-item__content  {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial-item__content p:first-child br {
  display: none;
}


.testimonial-item__content p  img {
  margin-bottom: 8px;
}

.testimonials .slick-list {
  margin: 0 -15px;
}

.testimonials .slick-track {
  display: flex;
  height: auto;
}

.testimonials .slick-slide {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  height: auto;
}


.testimonials .slick-slide > div {
  height: 100%;
}

.testimonial-item {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}


@media screen and (max-width: 768px) {
  .testimonials__arrows {
    display: none;
  }
  .testimonials__top {
    margin-bottom: 20px;
  }
  .testimonials .container {
    padding: 0 10px;
  }
  .testimonials {
    overflow: hidden;
  }
}

/* ---------------------------------------
	Blog Slider
--------------------------------------- */

.blog-slider {
  background-color: #E6DFEC;
  padding: 43px 0;
}


.nebegeda-post {

  background-color: white;
}

.blog-slider__title {
  margin-bottom: 0 !important;
}

.blog-slider__top {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.nebegeda-post__image {
  height: 325px;
  position: relative;
}

.nebegeda-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nebegeda-post__cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.nebegeda-post__cat a {
  font-size: 14px;
  line-height: 1.67;
  color: #8f8f8f;
}

.nebegeda-post__information {
  text-align: center;
  padding: 23px 10px 15px 10px;
}

.nebegeda-post__cat a:after {
  content: ',';
}

.nebegeda-post__cat a:last-child:after {
  display: none;
}

.nebegeda-post__cat a:hover {
  opacity: 1;
  color: var(--main-color);
}

.nebegeda-post__title {
  margin-bottom: 0;
  padding: 0 10px;
}

.nebegeda-post__title a {
  color: var(--text-color);
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}

.nebegeda-post__title a:hover {
  opacity: 1;
  color: var(--main-color);
}

.blog-slider-arrows {
  display: flex;
  align-items: center;
  gap: 1px;
  padding-right: 5px;
}

.blog-slider .slick-list {
  margin: 0 -15px;
}

.blog-slider .slick-track {
  display: flex;
  height: auto;
}

.blog-slider .slick-slide {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  height: auto;
}


.blog-slider .slick-slide > div {
  height: 100%;
}

.blog-slider .nebegeda-post {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.blog-slider__slider .slick-dots li button {
  background-color: white;
}

.blog-slider__slider {
  padding-top: 17px;
  padding-bottom: 0;
}
.nebegeda-post:focus a {
  outline: none;
}

.nebegeda-post:hover a {
  outline: none;
}

@media screen and (max-width: 768px) {
  .blog-slider-arrows {
    display: none;
  }
  .blog-slider .container {
    padding: 0 10px;
  }
  .blog-slider__top {
    padding-bottom: 0;
  }
  .blog-slider {
    padding: 43px 0 30px 0;
    overflow: hidden;
  }
}

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


.text-block__block h2 {
  color: var(--text-color);
  font-size: 38px;
}

.text-block__block p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.35;
}

@media screen and (max-width: 768px) {
  .text-block__block h2 {
    font-size: 34px;
  }
  .text-block {
    padding: 50px 0;
  }
}


/* ---------------------------------------
	Page Title
--------------------------------------- */

.page-title {
  padding: 10px 0;
}

#breadcrumbs {
  display: flex;
  align-items: center;
}

#breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#breadcrumbs > span span {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #717171;
}

#breadcrumbs > span a {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #717171;
  display: flex;
  align-items: center;
}

/* ---------------------------------------
	Woo
--------------------------------------- */

.product-cat-title {
  padding: 45px 0 25px 0;
}


.product-cat-title__heading {
  color: var(--text-color);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--sub-font);
  margin-bottom: 0 !important;
  /*margin-bottom: 28px !important;*/
}


.product-cat-title__subtitle {
  padding-top: 20px;
}

.product-cat-title__subtitle p {
  font-weight: 300;
  font-size: 16px;
}


.woo-product-categories__list {
  list-style: none;
  padding: 0;
}

.category-item {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.category-item p {
  width: 100px;
  height: 100px;
  background: #EAEAEA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  border: 1px solid #EAEAEA;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.category-item p img {
  max-width: 97px;
  object-fit: contain;
}

.category-item a span {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}

.category-item a {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.category-item a:hover {
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.category-item a:focus {
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.category-item:hover p {
  border-color: #A13DF6;
  background-color: #E7DEED;
}

.woo-product-categories__list .active p {
  border-color: #A13DF6;
  background-color: #E7DEED;
}

.woo-product-categories__list__arrows {
  display: flex;
  justify-content: flex-end;
  padding-top: 23px;
  padding-right: 10px;
  padding-bottom: 25px;
  gap: 13px;
}

.woo-product-categories__list {
  margin-left: -15px;
  margin-bottom: 7px;
}

.woo-product-categories__list .slick-list {
  /*padding-right: 60px;*/
}
.woocommerce-ordering select {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  /*border-radius: 8px;*/
  border: 1px solid #E7DEED;
  border-radius: 4px;
}

.nbgd-product-categories__sidebar {
  padding-left: 13px;
}

.nbgd-products {

}

.nbgd-product-categories__row {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 15px;
}

.nbgd-product-categories__block .page-title {
  display: none;
}

.nbgd-product-categories__block  .term-description {
  display: none;
}

.nbgd-product-categories__block .woocommerce-result-count {
  display: none !important;
}

.nbgd-product-categories__block .products  {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.nbgd-product-categories__block .products:before {
  display: none !important;
}

.nbgd-product-categories__block .products:after {
  display: none !important;
}

.nbgd-product-categories__block .nebegeda-product {
  float: none !important;
  margin: 0 !important;
  clear: both;
  width: 100% !important;
}

.toggle-sidebar {
  background-color: transparent;
  border: none;
  color: var(--text-color);
  outline: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  margin-bottom: 23px;
}

.toggle-sidebar img {
  display: none;
}

.bapf_head h3 {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 25px;
}

.nbgd-sidebar .bapf_body li {
  display: flex;
}

.nbgd-sidebar .bapf_body li input {
  margin-top: 0;
  margin-right: 10px !important;
}

.nbgd-sidebar .bapf_body li input:focus {
  outline: none;
}

.nbgd-sidebar .bapf_body ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.nbgd-sidebar .bapf_body li label {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.ui-slider-horizontal .ui-slider-range {
  background-color: #A13DF6 !important;
}

.bapf_slidr_main {
  height: 7px !important;
  background-color: #E7DEED !important;
  margin-top: 35px !important;
}

.ui-slider-handle {
  width: 11px !important;
  height: 25px !important;
  border-radius: 4px !important;
  background-color: white !important;
  border: 1px solid #A13DF6 !important;
  top: -150% !important;
}

.berocket_single_filter_widget {
  max-width: 172px;
}


.woocommerce .button {
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 4px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px !important;
}

.woocommerce .button:after {
  content: url("images/arrow_white.svg");
  position: relative;
  top: 0;
  transform: translate(0, 1px);
}

.woocommerce .button:hover {
  background-color: white !important;
  border-color: var(--main-color) !important;
  opacity: 1 !important;
  color: var(--main-color) !important;
}

.nebegeda-product {
  display: flex;
  flex-direction: column;
}

.button:hover:after {
  filter: brightness(0) saturate(100%) invert(45%) sepia(66%) saturate(7494%) hue-rotate(259deg) brightness(98%) contrast(98%) !important;
}

.button:focus {
  opacity: 1 !important;
}


.woocommerce-pagination {
  padding: 36px 0;
}

.woocommerce-pagination .page-numbers {
  border: none !important;

}


.woocommerce-pagination .page-numbers li  {
  border: none !important;
}

.woocommerce-pagination .page-numbers li span {
  border: none !important;
  font-size: 14px;
  line-height: 1;
  background: transparent !important;
  text-decoration: underline !important;
  color: #717171 !important;
}

.woocommerce-pagination .page-numbers li a {
  border: none !important;
  font-size: 14px;
  line-height: 1;
  color: #717171 !important;
}

.woocommerce-pagination .page-numbers li a:hover {
  background: transparent !important;
  text-decoration: underline !important;
}

.woocommerce-pagination ul li .next {
  padding: 0;
  font-size: 0 !important;
  margin: 0;
  width: 15px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  outline: none;
  z-index: 20;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.woocommerce-pagination ul li .next:before {
  content: url(./images/pagination-next.svg);
  position: absolute;
  top: 50%;
  right: 50%;
  line-height: 1;
  transform: translate(50%, -50%);
}

.woocommerce-pagination ul li .prev {
  padding: 0;
  margin: 0;
  font-size: 0 !important;
  width: 15px;
  height: 30px;
  background-color: white;

  border-radius: 50%;
  outline: none;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.woocommerce-pagination ul li .prev:before {
  content: url(./images/pagination-next.svg);
  position: absolute;
  top: 50%;
  right: 50%;
  line-height: 1;

  transform: translate(50%, -50%) rotate(180deg);
}

.tax-product_cat .text-block {
  padding: 12px 0 60px 0;
}

.btn-load-more {
  background-color: transparent !important;
}

.lmp_load_more_button {
  padding: 25px 0 0 0;
  display: block;
}

.woocommerce-ordering select {
  appearance: none;
  -webkit-appearance: none; /* Safari and older Chrome */
  -moz-appearance: none;    /* Firefox */
  text-align: center;
}

.woocommerce-ordering {
  position: relative;
}

.woocommerce-ordering:after {
  content: url("images/chevron-order.svg");
  filter: brightness(0) saturate(100%);
  position: absolute;
  top: 50%;
  transform: translate(-60%, -50%);
  right: 0;
}

.nbg-wrapper .toggle-sidebar {
  display: none;
}

.my-dots-container {
  display: none;
}

@media screen and (max-width: 992px) {
  .product-cat-title__heading {
    font-size: 30px;
  }
  .nbgd-product-categories__row {
    grid-template-columns: 1fr;
  }
  .nbgd-product-categories__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: white;
    width: 100%;
    height: 100%;
    padding-top: 115px;
  }
  .nbgd-product-categories__sidebar {
    display: block;
  }

  .nbgd-product-categories__sidebar .toggle-sidebar {
    padding: 65px 0 0 0;
  }
  .nbgd-sidebar {
    /*overflow: scroll;*/
  }
  .nbgd-product-categories__sidebar img {
    display: block;
    filter: brightness(0) saturate(100%)
  }
  .nbgd-product-categories__sidebar {
    padding: 115px 15px 0 15px !important;
  }
  .berocket_single_filter_widget {
    max-width: 100%;
  }
  .bapf_sfilter {
    border-bottom: 1px solid #E7DEED;
  }
  .nbgd-sidebar .berocket_single_filter_widget .bapf_sfilter:last-child {
    border-bottom: none;
  }
  .nbgd-product-categories__sidebar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nbgd-product-categories__sidebar-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .woo-product-categories__list {
    margin-left: 0;
  }
  .nbg-wrapper .toggle-sidebar {
    display: flex;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    align-items: center;
    gap: 5px;
    border: 1px solid #E7DEED;
    text-align: center;
    justify-content: center;
    border-radius: 4px;
  }
  .nbg-wrapper .toggle-sidebar img {
    display: block;
  }
  .nbg-wrapper .woocommerce-ordering {
    margin: 0;
    float: none;
    clear: both;
  }
  .nbg-wrapper {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
  }
  .nbgd-products .container {
    padding: 0 10px;
  }
  .nbgd-product-categories__block .products {
    gap: 10px 5px;
  }
  .woo-product-categories__list .slick-list {
    margin: 0 -15px;
  }
  .woo-product-categories__list .slick-slide {
    margin: 0 15px;
  }
  .category-item a span {
    font-size: 12px;
  }
  .category-item p {
    width: 80px;
    height: 80px;
  }
  .woo-product-categories__list .slick-list {
    /*padding-right: 30px;*/
  }
  .category-item p img {
    max-width: 75px;
  }
  .nbgd-product-categories__sidebar .toggle-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

}

@media screen and (max-width: 768px) {
  .product-cat-title__heading {
    font-size: 28px;
  }
  .nbgd-product-categories__block .products {
    grid-template-columns: 1fr 1fr;
  }
  .page-title .container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
  }
  .product-cat-title {
    padding: 22px 0 20px 0;
  }
  .product-cat-title .container {
    padding: 0 10px;
  }
  .product-cat-title__subtitle p {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
  .product-cat-title__subtitle {
    padding-right: 10px;
  }
  .woo-product-categories__list__arrows {
    display: none;
  }
  .woo-product-categories__list .slick-list {
    padding-right: 0;
  }
  .category-item p {
    margin-bottom: 12px;
  }
  .my-dots-container {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .my-dots-container li button {
    width: 100%;
    height: 7px;
    border-radius: 0;
    min-width: 30px;
  }
  .my-dots-container .slick-dots {
    gap: 0;
    width: 100%;
  }
  .nbgd-sidebar .bapf_body ul {
    height: 500px;
    overflow: scroll;
  }
  .bapf_fhide .bapf_body ul {
    height: auto !important;
    overflow: auto !important;
  }
  .woocommerce .button {
    padding: 10px !important;
  }

}


@media screen and (max-width: 380px) {
  .category-item p {
    width: 65px;
    height: 65px;
  }
  .category-item p img {
    max-width: 55px;
  }
}


.my-product-single .product {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 20px;
  border-bottom: 1px solid #E7DEED;
  padding-bottom: 50px;
}

.my-product-single .summary {
  width: 100% !important;
  float: none !important;
}

.nbgd-product-gallery {
  overflow: hidden;
  position: relative;
}

.nbgd-product-gallery {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 15px;
}

.slider-nav {
  overflow: hidden;
}

.slider-for {
  overflow: hidden;
}

.slider-nav {

}
.slider-nav .slick-slide {

}

.product_title {
  color: var(--text-color);
  font-size: 24px;
  font-family: var(--sub-font);
  line-height: 1;
}

.my-product-single {
  padding: 48px 0 32px 0;
}

.woocommerce-product-details__short-description {
  margin-bottom: 1rem;
}

.woocommerce-product-details__short-description p {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-color);
}

.summary .stock {
  display: none;
}

.nbgd-wrapper-price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E7DEED;
}

.nbgd-wrapper-price span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-color);
}

.woocommerce div.product form.cart {
  margin-bottom: 0;
}

.qib-button-wrapper  {
  background: transparent !important;
  border: none !important;
  color: var(--text-color);
}

.qib-button-wrapper .minus {
  background: transparent !important;
  border: none !important;
  color: var(--text-color);
  position: relative;
  font-size: 0 !important;
}

.qib-button-wrapper .minus:after {
  width: 14px;
  height: 1.5px;
  background: black;
  position: absolute;
  top: 50%;
  right: 50%;
  content: '';
  transform: translate(50%, -50%);
}

.qib-button-wrapper .plus {
  background: transparent !important;
  border: none !important;
  color: var(--text-color);
  font-size: 30px !important;
  line-height: 44px !important;
}

.qib-button-wrapper .quantity {
  border: none !important;
}

.qib-button-wrapper .qib-button {
  padding: 0 !important;
}

.qib-button-wrapper input {
  border: none !important;
  color: black !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  width: 32px !important;
}

.single-product .entry-summary .button {
  font-size: 16px !important;
  text-transform: uppercase !important;
  padding: 20px 50px !important;
  border-radius: 4px !important;
}

.sticky-cart-button form button {
  padding: 20px 50px !important;
}



.single-product .button:after {
  display: none !important;
}

.nbgd-wrapper-price-wrapper form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-properties ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-properties ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
}

.product-properties__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-color);
  margin-bottom: 28px !important;
  position: relative;
  pointer-events: none;
}

.product-properties__title img {
  display: none;
}

.product-properties {
  padding-top: 25px;
}

.my-product-content {
  padding: 5px 0;
}

.my-product-content__title {
  font-size: 34px;
  font-weight: 400;
  font-family: var(--sub-font);
  margin-bottom: 38px !important;
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  pointer-events: none;
}

.my-product-content__title img {
  display: none;
}

.my-product-content .container {
  border-bottom: 1px solid #E7DEED;
  padding-bottom: 40px;
}

.recommend-products {
  padding: 37px 0;

}

.recommend-products .container {
  border-bottom: 1px solid #E7DEED;
  padding-bottom: 37px;
}

.recommend-products .products-slider__title {
  font-size: 34px;
}

.product-link {
  text-align: center;
  padding: 25px 0;
}

.nbgd-comments {
  padding: 40px 0 40px 0;
}

.nbgd-comments .container {
  border-bottom: 1px solid #E7DEED;
  padding-bottom: 37px;
}

.nbgd-comments__title {
  font-size: 34px;
  margin-bottom: 35px;
}

.nbgd-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.product-rating {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-color);
}

.product-rating span {
  font-weight: 400;
  font-size: 16px;
}

#openFormComments {
  text-transform: uppercase;
}

.my-form-comments .commentlist {
  display: none !important;
}

.my-form-comments .woocommerce-Reviews-title {
  display: none !important;
}


#review_form_wrapper {

  background: white;
}

.single-product .mfp-content {

}

.my-product-content {
  overflow: hidden;
}
#review_form_wrapper {
  max-width: 900px;
  position: relative;
  margin: 0 auto;
}

#review_form {
  padding: 90px 58px 15px 58px;
}

.my-form-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.my-form-review__title {
  font-weight: 700;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  font-family: var(--font);
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.my-form-review p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.my-form-review p span {
  font-weight: 400;
}

.review-fields-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.review-fields-right {
  text-align: center;
}

.comment-form-rating label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1;
  display: block;
  padding-bottom: 20px;
}

.comment-form-rating label span {
  display: none;
}

.stars > span {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}


.review-count {
  color: #512973;
  font-size: 10px;
  font-weight: 300;
}

.stars > span a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.stars > span a:before {
  font-size: 3em;
}

.woocommerce p.stars.selected a:not(.active)::before {
  color: #EFD087;
}

.woocommerce p.stars.selected a.active::before {
  color: #EFD087;
}

.woocommerce p.stars a::before {
  color: #EFD087;
}

.review-fields-left input {
  border: 1px solid #E7DEED;
  height: 51px;
  padding-left: 8px;
  border-radius: 4px;
}

.review-fields-bottom input::placeholder {
  color: #7F7F7F;
  font-size: 14px;
  line-height: 1;
}


.review-fields-bottom textarea {
  border: 1px solid #E7DEED;
  height: 112px;
  padding-left: 8px;
  border-radius: 4px;
  padding-top: 14px;
}

.review-fields-bottom textarea::placeholder {
  color: #7F7F7F;
  font-size: 14px;
  line-height: 1;
}

.review-fields-left label {
  display: none;
}

.woocommerce #review_form #respond p {
  margin-bottom: 20px;
}

.review-fields-bottom {
  grid-column: 2 span;
}

.review-fields-bottom label {
  display: none;
}

.email-note {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  margin-top: -13px;
}

.comment-form-cookies-consent {
  display: none;
}

.form-submit input {
  border: 1px solid #A13DF6 !important;
  border-radius: 4px !important;
  color: #A13DF6 !important;
  background-color: transparent !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 13px 10px !important;
}

.form-submit input:hover {
  background-color: #A13DF6 !important;
  color: white !important;
}

.nbgd-top {
  padding-bottom: 36px;
}

.comment_container .avatar {
  display: none;
}

.comment_container .description p {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-color);
}

.comment-text {
  border: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
}

.star-rating::before {
  color: #EFD087;
}

.star-rating span::before {
  color: #EFD087;
}

.meta {
  font-size: 16px !important;
  line-height: 1;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-top: 15px !important;
  display: block;
}


.woocommerce-review__published-date {
  color: #8F8F8F !important;
}

.comment-text {

}

.commentlist {
  padding-left: 0;
}

.star-rating {

}

.woocommerce-review-link {
  color: #512973;
  font-size: 0;
  font-weight: 300;
  padding-top: 2px;
}

.woocommerce-review-link span {
  color: #512973;
  font-size: 14px;
  font-weight: 300;
}

.woocommerce-product-rating {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.woocommerce-product-rating .star-rating {
  margin: 0 !important;
  float: none !important;
}

.woocommerce-product-rating:before {
  display: none;
}

.woocommerce-product-rating:after {
  display: none;
}

.badges {
  padding-top: 20px;
  padding-bottom: 55px;
}

.badges__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.badges__list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100px;
}

.badges__list li p {
  margin-bottom: 0;
  color: var(--text-color);
}

#reply-title {
  margin-bottom: 15px;
  display: block;
}

.my-product-single .woocommerce-notices-wrapper {

}

.woocommerce-notices-wrapper-active {
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background: white;
  width: 100%;
  max-width: 900px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1000;
}

.product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.sticky-cart {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  border: 1px solid #E7DEED;
  transition: all 0.3s ease-in-out;
}

.sticky-cart-inner {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.sticky-cart-title {
  color: var(--text-color);
  font-size: 20px;
  line-height: 1;
}

.sticky-cart-button form .single_add_to_cart_button {
  font-size: 14px !important;
  padding: 15px 100px !important;
}

.sticky-cart .nbgd-wrapper-price-wrapper {
  gap: 50px;
}

.hide-sticky-cart {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -10 !important;
  pointer-events: none !important;
}

.sticky-cart-button .stock {
  display: none;
}

.nbgd-message__top {
  text-align: center;
}

.woocommerce-notices-wrapper:after {

}

.nbgd-message__top-title {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}

.nbgd-message__top-subtitle {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}

.nbgd-message__upsells .upsell-products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.nbgd-message__upsells .nebegeda-product {
  gap: 10px;
  flex-direction: column;
  border: none;
  display: flex;
  max-width: 146px;
  padding-bottom: 0 !important;
}

.nbgd-message__upsells .nebegeda-product__info .stars {
  display: none;
}

.nbgd-message__upsells .nebegeda-product__image {
  height: 100px;
}

.nbgd-message__upsells .nebegeda-product__buttons a {
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 8px 5px 7px 5px !important;
  background-color: transparent !important;
  color: #A13DF6 !important;

}

.nbgd-message {
  padding: 70px 30px;
}

.nbgd-message__buttons {
  display: flex;
  gap: 15px;
  padding-top: 15px;
  max-width: 85%;
  margin: 0 auto;
}

.nbgd-message__buttons a {
  flex: 1 1 10%;
  text-transform: uppercase;
}

.nbgd-message__buttons button {
  flex: 1 1 10%;
  text-transform: uppercase;
}

.nbgd-message__upsells-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.nbgd-message__upsells {
  position: relative;
  margin: 20px 0 0 0;
  padding: 25px 0 0 0;
}

.nbgd-message__upsells:before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, 0%);
  height: 1px;
  background-color: #E7DEED;
  width: 100%;
  max-width: 366px;
}

.nbgd-message__upsells:after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translate(50%, 0%);
  height: 1px;
  background-color: #E7DEED;
  width: 100%;
  max-width: 366px;
}

.upsell-products .nebegeda-product__title {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 0;
}

.nbgd-message__upsells .nebegeda-product .nebegeda-product__buttons {
  margin-top: -10px;
}

.upsell-products .nebegeda-product__price {
  text-align: center;
  margin-bottom: 10px !important;
}

.upsell-products .nebegeda-product__price span {
  font-size: 12px;
}

.nbgd-message__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}

.nbgd-message__cart-total {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px !important;
}

.nbgd-message__info .button {
  width: 100%;
  max-width: 350px;
}

.closeNoticesWrapper {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  transform: translate(-27%, 94%);
}

.woocommerce-notices-wrapper-close {
  display: none;
}

.closeNoticesWrapper img {
  filter: brightness(0) saturate(100%)
}

@media screen and (max-width: 992px) {
  .review-fields-main {
    grid-template-columns: 1fr;
  }
  .review-fields-bottom {
    grid-column: 1 span;
  }
  .stars > span {
    gap: 25px;
  }
  .stars > span a:before {
    font-size: 2em;
  }
  #review_form {
    padding: 30px 15px;
  }
  .sticky-cart-button form .single_add_to_cart_button {
    padding: 8px 20px !important;
    font-size: 11px !important;
  }
  .nbgd-message__buttons {
    max-width: 100%;
  }
  .nbgd-message {
    padding: 60px 15px;
  }



}


@media screen and (max-width: 768px) {
  .nbgd-product-gallery {
    grid-template-columns: 1fr;
  }
  .my-product-single .product {
    grid-template-columns: 1fr;
  }
  .my-product-single .woocommerce-notices-wrapper {

  }
  .closeNoticesWrapper {
    z-index: 11000;
    position: absolute;
    top: 23px;
    right: 0;
    background: transparent;
    border: none;
    transform: translate(-22%, 100%);
  }
  .nbgd-message {
    height: 730px;
    overflow: scroll;
  }
  .nbgd-product-gallery-nav {
    display: none !important;
  }
  .my-product-single {
    padding-top: 15px;
    padding-bottom: 0;
  }
  .my-product-single .container {
    padding: 25px 10px;
  }
  .nbgd-comments .container {
    padding: 0 10px 15px 10px;
  }
  .nbgd-top {
    flex-direction: column;
  }
  .sticky-cart .sticky-cart-title {
    display: none;
  }
  .sticky-cart-button form .single_add_to_cart_button {
    padding: 15px !important;
    min-width: 105px;
  }
  .nbgd-wrapper-price-wrapper {
    padding: 10px 0;
    gap: 15px;
  }
  .nbgd-message__top-title {
    font-size: 14px;
  }
  .nbgd-message__top-subtitle {
    font-size: 14px;
  }
  .nbgd-message__buttons {
    flex-wrap: wrap;
  }
  .nbgd-message {
    padding: 60px 15px;
  }

  .sticky-cart .nbgd-wrapper-price-wrapper {
    gap: 0;
    flex-wrap: nowrap;
  }
  .nbgd-message__buttons {
    flex-direction: column;
  }
  .sticky-cart-button form button {
    line-height: 1.3 !important;
  }
  .sticky-cart-button .nbgd-wrapper-price span {
    font-size: 18px;
  }
  .nbgd-message__buttons a {
    padding: 18px 40px !important;
  }
  .nbgd-message__buttons button {
    padding: 18px 40px !important;
  }
  .my-product-content__title img {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .my-product-content__title {
    margin-bottom: 0 !important;
    width: 100%;
    text-align: left;
    position: relative;
    pointer-events: auto;
    font-size: 20px;
  }
  .my-product-content__block {
/*    display: none;*/
    padding-top: 15px;
  }

  .my-product-content .container {
    padding: 25px 10px;
  }

  .woocommerce div.product div.summary {
    margin-bottom: 0;
  }
  .my-product-content {
    padding:  0;
  }
  .my-product-single .product {
    padding-bottom: 25px;
  }

  .product-properties__title {
    font-size: 20px;
  }

  .product-properties__title img {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .product-properties__title {
    margin-bottom: 0 !important;
    width: 100%;
    text-align: left;
    position: relative;
    pointer-events: auto;
  }
  .product-properties ul {
   /* display: none;*/
    padding-top: 15px;
  }
}

.nbgd-thank-you {
  max-width: 530px;
  margin: 0 auto;
}

.nbgd-thank-you__title {
  text-align: center;
  font-weight: 700;
  font-family: var(--font);
  font-size: 34px;
  margin-bottom: 43px;
}

.nbgd-thank-you__text {
  margin-bottom: 48px;
}

.nbgd-thank-you__image {
  text-align: center;
  margin-bottom: 40px;
}

.nbgd-thank-you__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-bottom: 22px;
}

.nbgd-thank-you__list li {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 5px;
  width: 100%;
}

.nbgd-thank-you__list li span {
  color: black;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
}

.nbgd-thank-you__list li p {
  margin-bottom: 0;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 400;
}

.nbgd-thank-you__list li p span {
  font-weight: 400;
}

.nbgd-thank-you__bottom-text {
  margin-bottom: 44px !important;
}

.nbgd-thank-you__button {
  text-align: center;
}

.nbgd-thank-you__button a {
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .nbgd-thank-you__title {
    font-size: 28px;
    margin-bottom: 19px;
  }
  .nbgd-thank-you__image img {
    max-width: 102px;
  }
  .nbgd-thank-you__image {
    margin-bottom: 21px;
  }
  .nbgd-thank-you__text {
    margin-bottom: 27px;
  }
  .nbgd-thank-you__text p {
    line-height: 1.35;
  }
  .nbgd-thank-you__list li {
    grid-template-columns: 1fr 0.73fr;
  }
  .nbgd-thank-you__bottom-text {
    margin-bottom: 30px !important;
  }
}

.wp-element-button {

}

.wp-element-button {
  background-color: white;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 20px;
}

.wp-element-button:after {

}

.wp-element-button:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  opacity: 1;
  color: white;
}



.wp-element-button:focus {
  opacity: 1;
}

.news-list__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.blog {
  background-color: #E6DFEC;
}

.category {
  background-color: #E6DFEC;
}

.news-list__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 36px 0 0 0;
}

.page-prev {
  padding: 0;
  margin: 0;
  font-size: 0;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 1px solid var(--sub-color);
  border-radius: 50%;
  outline: none;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-prev:before {
  content: url(./images/pagination-next.svg);
  position: absolute;
  top: 50%;
  right: 50%;
  line-height: 1;
  transform: translate(50%, -50%) rotate(180deg);
}

.page-next {
  padding: 0;
  margin: 0;
  font-size: 0;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 1px solid var(--sub-color);
  border-radius: 50%;
  outline: none;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-next:before {
  content: url(./images/pagination-next.svg);
  position: absolute;
  top: 50%;
  right: 50%;
  line-height: 1;
  transform: translate(50%, -50%) rotate(0deg);
}

ul.pagination {
  display: flex;
  align-items: center;
  list-style: none;

  gap: 10px;
}

.pagination li a {
  color: var(--text-color);
}

.pagination li span {
  color: var(--sub-color);
}


.blog-text {
  background-color: white;

}

.news-list__title {
    margin-bottom: 36px;
}

.entry__thumb {
  text-align: center;
  padding: 36px 0;
}

.single-post-content {
  padding-bottom: 36px;
}



.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 36px;
}

.post-categories .active {
  background-color: var(--main-color);
  color: white;
}


.post-categories-mobile {
  display: none;
}

.acf-password-protected {
  padding: 96px 15px;
  max-width: 1235px;
  width: 100%;
  margin: 0 auto;
}

.acf-password-protected p a {
  color: var(--main-color);
}

.acf-password-protected p {
  line-height: 1.35;
}

.acf-password-form {
  margin: 0 auto;
  max-width: 400px;
  padding: 25px 0;
}

.acf-password-form input[type="password"] {
  border: 1px solid #E7DEED;
  height: 41px;
  border-radius: 4px;
  margin-bottom: 15px;
  color: black;
  padding-left: 10px;
}

.acf-password-form input[type="password"]:hover {
  border-color: var(--main-color);
}

.acf-password-form label {
  margin-bottom: 10px;
  color: black;
  font-size: 14px;
  font-weight: 400;
}

.acf-password-form input[type="submit"] {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px;
}

.acf-password-form input[type="submit"]:after {
  content: url("images/arrow_white.svg");
  position: relative;
  top: 0;
  transform: translate(0, 1px);
}

.acf-password-form input[type="submit"]:hover {
  background-color: white;
  border-color: var(--main-color);
  opacity: 1;
  color: var(--main-color);
}

.acf-password-form input[type="submit"]:hover:after {
  filter: brightness(0) saturate(100%) invert(45%) sepia(66%) saturate(7494%) hue-rotate(259deg) brightness(98%) contrast(98%);
}

.acf-password-form input[type="submit"]:focus {
  opacity: 1;
}

.entry-content {
  overflow: hidden;
}


@media screen and (min-width: 768px) {
  .entry-content p {
    line-height: 1.35;
  }
  .entry-content li {
    line-height: 1.35;
  }
}

@media screen and (max-width: 992px) {
  .news-list__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .news-list__row {
    grid-template-columns: 1fr;
  }
  .news-list__pagination {
    justify-content: center;
  }
  .post-categories-mobile {
    display: flex;
    padding: 36px 0 0 0;
  }
  .post-categories-lg {
    display: none;
  }
  .post-categories {

  }
  .acf-password-protected {
    padding: 36px 15px;
  }
}

.image-text__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.text-image__column {
  flex: 1 1 15%;
}

.images-links__title {
  text-align: center;
  margin-bottom: 25px;
}

.images-links {
  padding: 0 0 66px 0;
}

.images-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.images-links ul img {
  width: 100%;
  object-fit: cover;
}

.images-links h3 {
  font-weight: 700;
}

.nebegeda-post__password {
  padding: 15px 0;
}

.nebegeda-post__password strong {
  color: var(--main-color);
}

.posts-links .slick-dots {
  padding-bottom: 0;
}

.text-page-section p a {
  color: var(--main-color);
}


@media screen and (min-width: 768px) {
  .text-image__column p {
    font-size: 23px;
    line-height: 1.35;
  }
  .text-page-section p {
    line-height: 1.35;
  }


  .text-page-section li {
    line-height: 1.35;
  }
}

@media screen and (max-width: 992px) {
  .images-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}


@media screen and (max-width: 768px) {
  .image-text__row {
    flex-direction: column;
    gap: 15px;
  }
  .images-links ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .images-links {
    padding-bottom: 36px;
  }
}

.contact-us {
  padding-bottom: 0;
}

.contact-us .container {

}

.contact-us__sidebar p {
  line-height: 1.35;
}

.contact-us__sidebar li {
  line-height: 1.35;
}

.contact-us__sidebar-text {
  margin-bottom: 23px;
}

.contact-us__row {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  padding-bottom: 78px;
}

.contact-us__sidebar {
  flex: 1 1 9%;
  background-color: #E6DFEC;
  padding: 45px 15px 60px 48px;
}

.contact-us__sidebar h4 {
  font-weight: 700;
}


.contact-us__sidebar a {
  color: var(--main-color);
}

.contact-us__block {
  flex: 1 1 25%;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-field-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: flex-end;
}

.form-field-block label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.form-field-block input {
  height: 44px;
  border: 1px solid #CDCDCD;
  color: var(--text-color);
  padding: 15px;
}

.form-field-block input:hover {
  outline: none;
}

.form-field-block input:focus {
  outline: none;
  border-color: var(--sub-color);
}

.form-field-block textarea {
  height: 86px;
  border: 1px solid #CDCDCD;
  color: var(--text-color);
  padding: 15px;
}

.form-field-block textarea:hover {
  outline: none;
}

.form-field-block textarea:focus {
  outline: none;
  border-color: var(--sub-color);
}


.wpcf7-acceptance .wpcf7-list-item-label {
  display: none;
}

.wpcf7-acceptance br {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item input {
  height: auto;
  padding: 0;
}

.form-field-block-consent p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-us__sidebar {
  color: var(--text-color);
}

.contact-us .contact-link {
  color: var(--text-color);
}

.contact-us .address__text a {
  color: var(--text-color);
}

.contact-us__sidebar img {
  filter: brightness(0) saturate(100%)
}

.contact-us__sidebar-title {
  margin-bottom: 23px;
}

.contact-us .footer__column-contacts-block {
  align-items: center;
  margin-bottom: 19px;
}

.contact-us .address {
  align-items: center;
  margin-bottom: 37px;
}

.contact-us__sidebar-rekvizitai p:not(:last-child) {
  margin-bottom: 8px;
}

.contact-us__sidebar-rekvizitai {
  margin-bottom: 23px;
}

.contact-us__block-wrapper {
  max-width: 665px;
  margin-left: auto;
  margin-top: -5px;
}

.contact-us__block-wrapper a {
  color: #080F05;
  text-decoration: underline;
}

.contact-us__block-text {
  margin-bottom: 40px;
}

.contact-us__block-text h2 {
  margin-bottom: 12px;
}

.form-field-block-consent {
  margin-top: -13px;
}

.form-field-block-consent label {
  color: var(--text-color);
}


.required-icon {
  color: red;
  content: '*';

  font-family: var(--sub-font);
}



.form-bottom {
  position: relative;
  text-align: right;
  padding: 33px 0 0 0;
}

.form-bottom .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}


.contact-us__iframe iframe {
  width: 100%;
}


.form-bottom .wpcf7-submit {
  background-color: white;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 20px;
  text-transform: uppercase;
}

.form-bottom .wpcf7-submit:after {

}

.form-bottom .wpcf7-submit:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  opacity: 1;
  color: white;
}



.wp-element-button:focus {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .contact-us__row {
    gap: 15px;
  }
  .contact-us__block-wrapper {
    max-width: 100%;
    margin: 0;
  }
  .contact-us__sidebar {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  .contact-us__row {
    padding-bottom: 36px;
    flex-direction: column;
  }
  .form-field-two-columns {
    grid-template-columns: 1fr;
  }
  .contact-us__block-text {
    margin-bottom: 36px;
  }
  .contact-us__sidebar li {
    word-break: break-all;
  }
}

.woocommerce-MyAccount-navigation {
  border-right: 1px solid #E7DEED;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  color: var(--sub-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.woocommerce-MyAccount-navigation .is-active a {
  text-decoration: underline;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: red !important;
}

.woocommerce-account .addresses .title .edit {
  float: none;
}

.select2-container .select2-selection--single {
  height: 40px;
}

.woocommerce-MyAccount-navigation ul li .is-active a {
  text-decoration: underline;
}

.woocommerce-info {
  border-top-color: var(--main-color);
}

.woocommerce-MyAccount-content a {
  color: var(--main-color);
}

.woocommerce-info::before {
  color: var(--main-color);
}

.required {
  font-family: var(--sub-font);
}

.woocommerce-privacy-policy-text {
  padding: 10px 0;
}

.woocommerce-privacy-policy-text a {
 color: var(--main-color);
}

.woocommerce-form-login__rememberme {
  display: flex !important;
  text-align: left;
  /* flex-direction: column; */
  align-items: center;
  gap: 7px;
}

.woocommerce-form-login__rememberme input {
  text-align: left;
  margin: 0;
  width: auto;
}

.postid-108494 .sticky-cart {
  display: none;
}

@media screen and (min-width: 768px) {
  .woocommerce-MyAccount-content p {
    line-height: 1.35;
  }
  .woocommerce-MyAccount-content li {
    line-height: 1.35;
  }
  .woocommerce-privacy-policy-text p {
    line-height: 1.35;
  }
}

.search-results__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.search-results .pagination {
  justify-content: flex-end;
  padding: 20px 0;
}


.categories-links__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.nbgd-products {
  padding-top: 66px;
}

@media (max-width: 768px) {
  .nbgd-products {
    padding-top: 20px;
  }
  .woocommerce-MyAccount-navigation ul {
    margin-bottom: 36px;
  }
  .woocommerce-Address address {
    line-height: 27px;
  }
  #account_display_name_description {
    margin-top: 15px;
    display: block;
  }
  .woocommerce-customer-details address {
    line-height: 27px;
  }
  .woocommerce-customer-details address p {
    display: flex;
    align-items: center;
  }
  .woocommerce-customer-details--phone:before {
    margin-top: -2px;
  }
}


.nbdg-cart {
  display: grid;
  grid-template-columns: 1fr 0.63fr;
  gap: 30px;
}

.nbdg-cart-title {
  font-weight: 700;
  font-size: 34px;
  font-family: var(--font);
  margin-bottom: 40px;
}

.cart_totals {
  float: none !important;
  width: 100% !important;
}

.nbdg-cart .woocommerce-cart-form thead tr {
  display: none;
}

.woocommerce-cart table.cart img {
  width: 80px;
}

.woocommerce-cart .product-name a {
  color: black;
  font-size: 16px;
  font-weight: 400;
}

.woocommerce-cart .product-remove a {

}

.woocommerce-cart .product-price span {
  color: black;
  font-size: 20px;
  font-weight: 700;
}

.woocommerce a.remove:hover {
  background: transparent !important;
}

.woocommerce-cart .product-remove a img {
  max-width: 15px;
}

.woocommerce-cart .cart-collaterals .shop_table {
  border: none;
}

.woocommerce-cart .button:after {
  display: none;
}

.woocommerce-cart .wc-proceed-to-checkout {

}

.woocommerce-cart .wc-proceed-to-checkout a {
  width: 100%;
  text-transform: uppercase;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1;
  padding: 20px 15px !important;
  font-family: var(--font);
}

.woocommerce-cart .cart-collaterals tbody td {
  text-align: right;
}

.woocommerce-cart .cart-collaterals tbody tr th {
  font-weight: 700;
  font-size: 16px;
  color: black;
}

.woocommerce-cart .cart-collaterals tbody .order-total th {
  font-weight: 400;
}

.nbdg-cart .coupon {
  float: none !important;
  padding: 15px 0;
  width: 100%;
  position: relative;
  height: 70px;
}

.nbdg-cart #coupon_code {
  width: 100%;
  border: 1px solid #E7DEED;
  border-radius: 4px;
  height: 39px;
}

.nbdg-cart .coupon .button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-size: 0 !important;
  height: 39px !important;
}

.nbdg-cart .coupon .button:before {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  content: url("images/coupon-arrow.png");
}


.nbdg-cart .coupon .button:hover:before {
  filter: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(2400%) hue-rotate(225deg) brightness(97%) contrast(87%);
}


.openCoupon {
  display: flex;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  color: black;
  align-items: center;
  line-height: 1;
  background: transparent;
  position: relative;
  border: none;
  padding-right: 20px;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #E7DEED;
  border-bottom: 1px solid #E7DEED;
}

.openCoupon img {
  max-width: 24px;
}

.plus-minus {
  position: relative;
  width: 14px;
  height: 14px;
}

.plus-minus:after {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(90deg);
  background: black;
  height: 1px;
  content: '';
  width: 100%;
}

.plus-minus:before {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background: black;
  height: 1px;
  content: '';
  width: 100%;
}

.openCoupon-active .plus-minus:after {
  opacity: 0;
}

.coupon {

}

.woocommerce-cart .coupon {
  display: none;
}

.nbdg-cart-link {
  padding: 50px 0 15px 0;
}

.nbdg-cart-link a {
  text-transform: uppercase;
}

.wp-block-column p a {
  color: var(--main-color);
}

.wp-block-group__inner-container p a {
  color: var(--main-color);
}

.gift-cards-list {
  padding-top: 36px;
}

.gift-cards-list h3 {

}

.gift-cards-list button {
  color: #A13DF6 !important;
  border: 1px solid #A13DF6 !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700 !important;
  line-height: 1;
  min-height: 57px;
}

.gift-cards-list button:not(:last-child) {
  margin-right: 5px;
}

.gift-cards-list .selected_button {
  background-color: #A13DF6 !important;
  color: white !important;
}

.gift-cards_form label {
  display: block !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: black;
  text-align: left !important;
}

.gift-cards_form h3 {
  font-size: 20px !important;
  font-weight: bold !important;
}

.gift-cards_form textarea {
  border: 1px solid #E7DEED;
  border-radius: 4px;
  height: 94px !important;
  float: none !important;
}

.gift-cards_form input {
  border: 1px solid #E7DEED;
  border-radius: 4px;

  float: none !important;
}


@media screen and (min-width: 1240px) {
  .woocommerce-cart  .cart-collaterals {
    padding-left: 70px;
  }
}

@media screen and (max-width: 992px) {
  .search-results__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .categories-links__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .woocommerce-cart .coupon {
    display: block;
  }
  .openCoupon {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .search-results__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-links__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nbdg-cart {
    grid-template-columns: 1fr;
  }
  .woocommerce-cart .product-quantity {
    height: 100px;
  }
  .woocommerce-cart .product-quantity .qib-button-wrapper {
    width: 100%;
  }
  .nbdg-cart-link {
    display: none;
    padding: 15px 0;
  }
}





.nbg-checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-height: 100vh;
  box-sizing: border-box;
}

.nbg-checkout-left {
  flex: 1;
  min-width: 300px;
}

.nbg-checkout-right {
  flex: 1;
  min-width: 300px;
  /*background-color: #f2ebf3;*/
  padding: 20px;
  box-sizing: border-box;
  border-radius: 30px;
}

.nbg-checkout-block {
  background-color: white;
  /*padding: 20px;*/
  /*margin-bottom: 20px;*/
  /*box-shadow: 0 0 4px rgba(0,0,0,0.05);*/
  border-radius: 30px;
}

.nbg-checkout-block h2 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.nbg-checkout-header {
  margin-bottom: 15px;
  display: flex;
  align-content: center;
}

.nbg-checkout-header-main-content {
  display: flex;
  align-content: center;
}

.nbg-checkout-header object {
  width: 36px;
  height: 36px;
  padding-right: 10px;
}

.nbg-checkout-header-main-content-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
}

.nbg-checkout-logo img {
  width: 120px;
  height: 45px;
  object-fit: contain;
}

.nbg-checkout-desktop-only {
  display: block;
}

.nbg-checkout-mobile-only {
  display: none;
}


.nbg-checkout-right {

}

.new-checkout-header-main-content-svg object {
  display: none;
}

.nbg-checkout-right .shop_table th {
  padding-left: 0 !important;
}

.nbg-checkout-right .shop_table td {
  padding-left: 0 !important;
}

.product-name-custom {
  display: flex;
  align-items: center;
}

.nbg-billing-fields input {
  border: 1px solid #E7DEED !important;
  border-radius: 4px !important;
}


.woocommerce-checkout-payment {
  background-color: transparent !important;
}

.payment_box {
  background-color: transparent !important;
}

div.payment_box::before {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .nbg-checkout-container {
    flex-direction: column-reverse;
  }

  .nbg-checkout-left,
  .nbg-checkout-right {
    flex: 1 1 100%;
    background-color: transparent;
    padding: 0;
    order: unset;
  }

  .nbg-checkout-desktop-only {
    display: none !important;
  }

  .nbg-checkout-mobile-only {
    display: block !important;
  }
}

/* Billing fields */
.nbg-billing-fields {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: flex-start;
}

.nbg-billing-fields .form-input {
  margin-bottom: 5px;
  width: 48%;
}

.nbg-billing-fields label {
  font-family: Circe;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #000000;
}
.nbg-billing-fields input {
  box-sizing: border-box;
  width: 97%;
  padding: 13px 30px;
  border: 1px solid #d8d8d8;
  outline: none;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .nbg-billing-fields .form-input {
    width: 100%;
  }
}

/* Shipping methods */
.nbg-checkout-shipping-methods {
  /*margin-bottom: 20px;*/
}

.nbg-checkout-shipping-methods .shipping-options-grid {
  width: 100%;
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.nbg-checkout-shipping-methods .shipping-option {
  padding: 0;
  text-align: center;
  height: auto;
  width: 100%;
  margin-bottom: 16px;
}

.nbg-checkout-shipping-methods .shipping-option input[type=radio] {
  display: none !important;
}

.nbg-checkout-shipping-methods .shipping-option input[type=radio]:checked + label {
  border-color: #A13DF6;
  /*background-color: rgba(113, 47, 134, 0.05);*/
}

.nbg-checkout-shipping-methods .shipping-option label {
  padding: 60px 5px 25px;
  height: 100%;
  margin-bottom: 0;
  border: 1px solid #E7DEED;
  border-radius: 4px;
  display: flex;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nbg-checkout-shipping-methods .radio-label > div:not(.local_pickup) {
  width: 100%;
  height: 75%;
  flex-direction: column-reverse;
  align-items: center;
}

.nbg-checkout-shipping-methods .radio-label .multiparcels-grid-display-text{
  margin-bottom: -4px;
}

.nbg-checkout-shipping-methods .radio-label .multiparcels-grid-display-text {
  text-align: center!important;
  margin-top: 10px!important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2857;
  color: black;
  margin-bottom: -10px;
}

.nbg-checkout-shipping-methods .radio-label .multiparcels-grid-display-text .woocommerce-Price-amount.amount {
  font-family: var(--sub-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3125;
  color: black;
}

.nbg-checkout-shipping-methods .radio-label .multiparcels-carrier-icon-image-holder {
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Payment */

.nbg-payment-options-list .payment_method_opay ul li {
  border-bottom: 0 !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

.nbg-payment-options-list .payment_method_opay ul li label {
  border-radius: 20px;
}

.nbg-payment-options-list .woocommerce-terms-and-conditions-link {
  margin-left: 3px;
}

.nbg-payment-options-list .nbg-payment-confirm-buttons-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.nbg-payment-confirm-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ngd-back-to-cart-button-flex {
  display: flex;
  justify-content: center;
  margin-right: 0px;
  width: 48%;
  text-shadow: none;
  padding: 10px;
  color: inherit;
  background-color: transparent;
}

.ngd-back-to-cart-button {
  border: 1px solid #d8d8d8;
  border-radius: 50px;
  align-items: center;
}

.ngd-back-to-cart-button:hover {
  background-color: #d8d8d8;
}

.ngd-back-to-cart-button svg {
  margin-right: 10px;
}

.ngd-back-to-cart-button p {
  margin: 0 15px 0 0;
}

.nbg-payment-confirm-buttons-block button#place_order {
  width: 48%;
  font-family: var(--font);
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #d8d8d8 !important;
  border-radius: 50px;
}

.nbg-payment-confirm-buttons-block button#place_order:hover {
  background-color: white !important;
  color: #111111;
}

@media (max-width: 768px) {
  .nbg-payment-confirm-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nbg-payment-confirm-buttons button {
    order: 1;
    width: 100% !important;
  }

  .nbg-payment-confirm-buttons a {
    order: 2;
    width: 100%;
    text-align: center;
  }
}

.nbg-payment-options-list .woocommerce-checkout-payment ul li {
  padding: 12px 0px !important;
}

/* Cart */
#nbg-checkout-cart-content-block {
  /*border: 1px solid rgb(216, 215, 215);*/
  border-radius: 25px;
}
.nbg-cart-products {
  width: 100%;
  text-align: center;
  border-bottom: solid 1px #898989;
}

.nbg-cart-products-table-header {
  display: grid;
  grid-template-columns: 70% 15% 15%;
}

.nbg-cart-products-table-header div {
  font-family: var(--sub-font);
  font-size: 16px;
  font-weight: bold;
  line-height: 2.44;
  color: #000000;
}

.nbg-cart-products-table-header-name {
  text-align: start;
}

.nbg-cart-products-table-header-price {
  margin-right: 10px;
  text-align: end;
}

.nbg-cart-products-grid {
  position: relative;
}

.nbg-cart-product {
  display: grid;
  grid-template-columns: 70% 15% 15%;
  border-bottom: solid 1px #898989;
}

/*.nbg-cart-product:last-of-type {*/
/*    border: none;*/
/*}*/

.nbg-product-description {
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-family: var(--sub-font);
  font-size: 14px;
  color: #000000;
}

.nbg-product-description h4 {
  letter-spacing: 0px;
  text-transform: none;
  margin: 0;
  font-family: var(--sub-font);
  line-height: 1.2;
  font-size: 14px;
  text-align: left;
  color: #000000;
}

.nbg-product-qty {
  padding: 7px 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  margin: 0;
  opacity: 1;
  text-align: center;
}

.nbg-product-total {
  letter-spacing: 0px;
  font-family: var(--sub-font);
  font-size: 16px;
  text-align: end;
  color: #000000;
}

.nbg-cart-total {
  width: 100%;
  text-align: center;
}

.nbg-cart-products-table-footer {
  display: grid;
  grid-template-columns: 70% 30%;
}

.nbg-cart-products-table-footer div {
  font-family: var(--sub-font);
  font-size: 16px;
  font-weight: bold;
  line-height: 2.44;
  color: #000000;
}

.nbg-cart-total-description {
  text-align: start;
}

.nbg-cart-total-price {
  text-align: end;
}

/* checkout error handling */
.woocommerce-page .nbg-checkout-container .woocommerce-invalid .woocommerce-input-wrapper input {
  border-color: red;
}

.edgtf-woocommerce-page.woocommerce-checkout .checkout-field-invalid .select2-container--default .select2-selection--single {
  border: red 1px solid;
}

.edgtf-woocommerce-page .nbg-checkout-form .woocommerce-error {
  margin: 20px !important;
  border: 1px solid red;
}

.edgtf-woocommerce-page .nbg-checkout-form  .woocommerce-error a {
  float: none !important;
}

.gift-cards-list {

}

.ywgc-predefined-amount-button {
  border: 1px solid #A13DF6 !important;
  width: 57px !important;
  height: 41px !important;
  border-radius: 4px !important;
  color: #A13DF6;
  padding: 0 !important;
  font-size: 14px !important;
}

.ywgc-manual-amount-container {
  border: 1px solid #A13DF6 !important;
  width: 140px !important;
  height: 41px !important;
  border-radius: 4px !important;
  color: #A13DF6;
  padding: 0 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
}

.ywgc_select_amount_title {
  font-size: 20px;
  font-weight: 700;
}

.ywgc_select_amount_title:after {


}

.ywgc-manual-amount-error {
  font-size: 0 !important;
}

.ywgc-manual-amount-error:after {
  content: 'Naudokite tik skaitmenis ir dešimtainių skaičių skirtuką „,“. Galiojantys pavyzdžiai yra „123“, „123,9“ ir „123,99“.';
  font-size: 14px !important;
}


label[for="ywgc-sender-name"] {
 font-size: 0;
}

label[for="ywgc-sender-name"]:after {
  font-size: 14px;
  font-weight: 400;
  content: 'Vardas';
}



label[for="ywgc-recipient-name"] {
  font-size: 0;
}

label[for="ywgc-recipient-name"]:after {
  font-size: 14px;
  font-weight: 400;
  content: 'Vardas';
}

label[for="ywgc-recipient-email"] {
  font-size: 0;
}

label[for="ywgc-recipient-email"]:after {
  font-size: 14px;
  font-weight: 400;
  content: 'el.paštas';
}

label[for="ywgc-edit-message"] {
  font-size: 0;
}

label[for="ywgc-edit-message"]:after {
  font-size: 14px;
  font-weight: 400;
  content: 'Žinutė/palinkėjimas';
}

.ywgc-show-giftcard {
  font-size: 0;
}

.ywgc-show-giftcard:after {
  content: 'Naudokite jį čia!';
  font-size: 16px;
}

.ywgc_have_code {
  border-color: var(--main-color);
}

.woocommerce-cart .header-menus {
  display: none;
}


.not-found__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.not-found__button a {
  text-transform: uppercase;
}

.slider-nav .slick-slide img {
  height: 155px;
  object-fit: cover;
}

.slider-for .slick-slide img {
  height: 478px;
  object-fit: cover;
}


.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none;
}


.nbg-checkout-right table.shop_table {
  border: none;
}

.nbg-checkout-right .nbg-checkout-block {
  box-shadow: none;
}


.wc_payment_methods {
  padding-left: 0 !important;
}

.nbg-checkout-block {
  padding-left: 0 !important;
}

.woocommerce-checkout .nbg-payment-options-list label {

}


/* Hide the default radio button */
.woocommerce-checkout .nbg-payment-options-list  input[type="radio"] {
  display: none;
}

.woocommerce-checkout .nbg-payment-options-list label {
  position: relative;
  padding-left: 26px;
}

/* Create a custom radio button */
.woocommerce-checkout .nbg-payment-options-list  input[type="radio"] + label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #E7DEED;
  border-radius: 50%; /* Makes it circular */
  background-color: white;
  margin-right: 8px;
  vertical-align: middle;
  transition: background-color 0.3s, border-color 0.3s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.woocommerce-checkout .nbg-payment-options-list  input[type="radio"] + label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%; /* Makes it circular */
  background-color: white;
  margin-right: 0;
  vertical-align: middle;
  transition: background-color 0.3s, border-color 0.3s;
  top: 50%;
  left: 0;
  transform: translate(3px, -50%);
  position: absolute;
}

/* Change the custom radio button when checked */
.woocommerce-checkout .nbg-payment-options-list  input[type="radio"]:checked + label::after {
  background-color: #A13DF6;
}

.woocommerce-checkout .nbg-payment-options-list  input[type="radio"]:checked + label::before {
  border-color: #A13DF6;
}

.woocommerce-checkout-payment li label {
  height: 100%;
}

.payment_method_klix_card .spell-pm-image img {
 position: absolute;
  bottom: -35px;
  width: 100%;
  float: none !important;
  left: 0;
}

.payment_method_klix_card .spell-pm-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .slider-for .slick-slide img {
    height: 400px;
    object-fit: cover;
  }
  .woocommerce-checkout .nbg-payment-options-list .payment_box input[type="radio"] + label::before {
    opacity: 0;
    border-radius: 3px;
  }
  .woocommerce-checkout .nbg-payment-options-list label {
    border-radius: 3px;
  }
  .woocommerce-checkout .nbg-payment-options-list .payment_box input[type="radio"]:checked + label::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0px, 0px) !important;
    border-radius: 3px;
    opacity: 1;
  }

  .payment_box .spell--pm-wrapper label {
    position: static;
  }

  .woocommerce-checkout .nbg-payment-options-list .payment_box input[type="radio"] + label::after {
    display: none !important;
  }
  .payment_box .spell-pm-image {
    margin-top: 0 !important;
  }
}

.days-info {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: black;
  padding: 5px 0;
}

.shipping-place .form-row {
  width: 100% !important;
}

.mp-please-select-location {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  color: #000000;
  margin-bottom: 5px;
  display: block;
}

.nbg-billing-fields label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  color: #000000;
  margin-bottom: 0;
  display: block;
}

.woocommerce-checkout .select2-selection__arrow {
  display: none;
}

.woocommerce-checkout .select2-selection__rendered:after {
  content: '';
  background-image: url("images/chevron.svg");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 25px;
  height: 7px;
  display: block;
  z-index: 5;
  background-repeat: no-repeat;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
  width: 100% !important;
}


.woocommerce-terms-and-conditions-wrapper .form-row .woocommerce-form__label {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
  padding-left: 20px;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__input {
  position: absolute;
  left: 0;
  margin: 0 !important;
  outline: none !important;
}

.woocommerce-invalid #terms {
  outline: none !important;
}

#nbg-checkout-payment-options-block {
  margin-top: 25px;
}
.wc_payment_methods {
  padding: 0 !important;
}

.shipping-options-grid {

}

.shipping-options-grid .shipping-option .radio-label {
  flex-direction: column;
}

/*.shipping-options-grid .shipping-option:first-child .radio-label:before {*/
/*  content: '';*/
/*  background-image: url("images/pastomatai.png");*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 31px;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*}*/

/*.shipping-options-grid .shipping-option:nth-child(2) .radio-label:before {*/
/*  content: '';*/
/*  background-image: url("images/kurjeriai.png");*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 31px;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*}*/

/*.shipping-options-grid .shipping-option:nth-child(3) .radio-label:before {*/
/*  content: '';*/
/*  background-image: url("images/pastas.png");*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 31px;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*}*/

.shipping-options-grid .shipping-option .radio-label:after {
  content: '';
  background-image: url("images/dot.svg");
  width: 100%;
  height: 22px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 11px;
}

.nbg-checkout-shipping-methods .shipping-option input[type=radio]:checked + label:after {
  background-image: url("images/active-dot.svg") !important;
}

.wc_payment_method > label {
  border: 1px solid #E7DEED;
  border-radius: 4px;
  width: 100%;
  max-width: 350px;
  padding: 15px;
  font-weight: 700;
  font-size: 14px;
}

.wc_payment_method > label:before {
  left: 5px !important;
}

.wc_payment_method > label:after {
  left: 5px !important;
}

.payment_method_klix_card label img {
  position: absolute !important;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  margin: 0 !important;
}

.payment_box .spell--pm-wrapper label {
  font-size: 0 !important;
}

.payment_box .spell--pm-wrapper label:before {
  transform: translate(0, 50%) !important;
  margin: 0 !important;
}

.payment_box .spell--pm-wrapper label:after {
  transform: translate(3px, 110%) !important;
  margin: 0 !important;
}

.payment_box .spell-pm-image {
  margin-top: -15px;
}

.sticky-cart .variations label {
  font-weight: 700;
}

.sticky-cart .variations {
  width: 100%;
}

.sticky-cart .variations tbody {
  width: 100%;
}

.sticky-cart .variations tbody tr {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 0.44fr 1fr;
  padding: 10px 0;
}

.sticky-cart .variations tbody tr td {
  width: 100%;
}

.sticky-cart-button .variations_form {
  position: relative;
}

.sticky-cart .variations .reset_variations {
  position: absolute;
  top: 0;
  left: 0;
}

.sticky-cart .variations tbody select {
  width: 100%;
}

.custom-woocommerce-form__label-for-checkbox {
  padding-left: 20px !important;
}

.custom-woocommerce-form__label-for-checkbox input {
  margin: 0 !important;
  top: 2px;
  left: 0 !important;

}


#ywgc-add-new-gift-card {
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 4px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px !important;
}

#ywgc-add-new-gift-card:hover {
  background-color: white !important;
  border-color: var(--main-color) !important;
  opacity: 1 !important;
  color: var(--main-color) !important;
}

.woocommerce-MyAccount-navigation-link--gift-cards a {
  font-size: 0 !important;
}

.woocommerce-MyAccount-navigation-link--gift-cards :after {
  content: 'Dovanų kortelės';
  font-size: 16px !important;
}



.woocommerce-error {
  margin: 0 !important;
}


.onsale {
  display: none !important;
}

.nbgd-product-categories__row-one {
  grid-template-columns: 1fr;
}

.postid-113196 .sticky-cart {
  display: none !important;
}

.ywgc-add-new-gift-card-label {
  font-size: 0;
}

.ywgc-add-new-gift-card-label:after {
  content: 'Dovanų kortelės kodas';
  font-size: 15px;
}

.ywgc-add-new-gift-card-modal-title {
  font-size: 0;
}

.ywgc-add-new-gift-card-modal-title:after {
  content: 'Susieti dovanų kortelę su savo paskyra';
  font-size: 26px;
}

.ywgc-link-gift-card-submit-button {
  font-size: 0;
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 4px !important;
  color: white !important;

  font-weight: 700 !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px !important;
}

.ywgc-link-gift-card-submit-button:after {
  content: 'Pridėti';
  font-size: 15px;
}

.yith-ywgc-add-new-gift-card-modal-wrapper-region {
  padding: 3em 0 !important;
}

.ywgc-add-new-gift-card-form .not_valid {
  font-size: 0;
}

.ywgc-add-new-gift-card-form .not_valid:after {
  font-size: 16px;
  content: 'Pridėtas kodas nėra susietas su jokia esama dovanų kortele.';
}

.ywgc-add-new-gift-card-form .valid {
  font-size: 0;
}

.ywgc-add-new-gift-card-form .valid:after {
  font-size: 16px;
  content: 'Dovanų kortelės kodas dabar susietas su jūsų paskyra.';
}

.woocommerce .woocommerce-ordering select {
  -webkit-appearance: none; /* Safari, iOS */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* Modern browsers */

  background: none;         /* remove default bg */

}

.bapf_show_hide {
  color: #000000;
  margin-top: 25px;
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  border-bottom: 1px solid #E7DEED;
  padding-bottom: 40px;
}

.bapf_show_hide:after {
  left: 75%;
  top: 50%;
  transform: translate(-50%, -65%);
  position: absolute;
  content: url("./images/expand.png");
  transition: all 0.3s ease-in-out;
}



.bapf_show_hide:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: 'Daugiau';
  color: #000000;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.bapf_fhide .bapf_show_hide:after {

}

.bapf_fhide .bapf_show_hide:after {

}


.no-scroll {
  overflow: hidden;
}

.mobile-info {
  display: none;
}

.woocommerce-cart .top-header,
.woocommerce-cart .header,
.woocommerce-cart .footer



{
  display: none;
}

.show-for-mobile {
  display: none !important;
}

.nbdg-cart .woocommerce-cart-form table tbody tr:last-child td {
  padding: 0 !important;
}




@media screen and (max-width: 768px) {
  .mobile-info {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
  }
  .mobile-cart-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    align-items: center;

  }
  .mobile-info td:before {
    display: none !important;
  }
  .mobile-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: black;
    text-align: left;
  }
  .mobile-price span {
    color: black;
    font-size: 20px;
    font-weight: 700;
  }
  .mobile-thumb {
    text-align: left;
  }
  .nbdg-cart-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .nbdg-cart .product-name {
    display: none !important;
  }
  .nbdg-cart .product-quantity {
    min-height: auto;
    height: auto;
    border-top: none !important;

  }
  .nbdg-cart .qib-button-wrapper {
    justify-content: flex-end;
    border-bottom: 1px solid #E7DEED !important;
  }
  .nbdg-cart .product-quantity:before {
    display: none !important;
  }
  .nbdg-cart .product-price:before {
    display: none !important;
  }
  .nbdg-cart .product-price {
    display: none !important;
  }
  .nbdg-cart .product-quantity {
    padding: 0 !important;
  }
  .nbdg-cart .product-remove a {
    position: relative;
  }
  .nbdg-cart .product-remove a img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }
  .nbdg-cart tr {
    background-color: white !important;
  }
  .nbdg-cart td {
    background-color: white !important;
  }
  .mobile-info td {
    border-bottom: none !important;
    border-top: none !important;
  }
  .nbdg-cart .product-remove {
    border-top: none !important;
  }
  .nbdg-cart .actions {
    border-top: none !important;
  }
  .woocommerce-cart .coupon  {
    display: none;
  }
  .show-for-mobile {
    display: flex !important;
    width: 100%;
    border: none;
  }
  .cart-collaterals .cart_totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
  }
  .cart-collaterals .order-total {
    display: none !important;
  }
  .nbdg-cart .cart-collaterals .cart-subtotal td:before {
    display: none !important;
  }
  .nbdg-cart .cart-collaterals .cart-subtotal td {
    text-align: left !important;
  }
  .nbdg-cart .cart-collaterals .cart-subtotal td span {
    color: black !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }
  .nbg-checkout-shipping-methods .shipping-options-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
  .payment_box > div img {
    object-fit: contain;
  }
  .payment_box {
    padding-right: 0 !important;
  }
  .nbg-billing-fields {
    flex-direction: column;
  }
  .nbg-billing-fields > p {
    width: 100% !important;
  }
  li.payment_method_bank_transfer .spell-pm-image img {
    /*margin-right: 15px !important;*/
  }
  .payment_box input[type="radio"]:checked + label {

  }
  .nbg-checkout-shipping-methods .radio-label .multiparcels-grid-display-text {

  }
  .nbg-checkout-shipping-methods .shipping-option label {
    padding: 54px 5px 10px;
  }
  .woocommerce-checkout form .form-row {
    width: 100%;
  }
  .nbg-payment-confirm-buttons {
    gap: 0;
  }
}


.postid-113196 .nbgd-message__top-subtitle {
  display: none;
}

.page-logo {
  text-align: center;
  padding-bottom: 0;
}

.header__logo {
  transition: all 0.3s ease-in-out;
}

.header__row-active .header__logo {
  opacity: 0;
}

.header-link-cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 0;
  display: inline-flex;
  right: auto;
  background-color: #E6DFEC;
  transform: translate(8px, -8px);
  font-size: 12px;
  line-height: 1;
  border-radius: 50%;
  color: black;
  padding: 0;
  min-width: 16px;
  min-height: 16px;
  /*display: inline-flex;*/
  justify-content: center;
  align-items: center;
  left: 6px;

}

@media screen and (max-width: 992px) {
  .cart-count {
    right: 8px;
    left: auto;
  }
}

.custom-login-register {

}

.woocommerce-info .showlogin {
  display: none;
}

.custom-login-register .woocommerce-form-login {
  display: block !important;
}

.OpenCustomLoginRegister {
  color: var(--main-color);
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
  padding: 0;
  border: none;
  background: transparent;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.custom-login-register .woocommerce-form-register .form-row input {
  width: 100%;
  border-radius: 4px;
}

.custom-login-register .woocommerce-form-register .form-row  {
  width: 100% !important;
}

.custom-login-register .woocommerce-form-register .form-row button {

}

.custom-login-register .woocommerce-form-register .form-row button {
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 4px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 30px !important;
}

.custom-login-register .woocommerce-form-register .form-row button:after {
  content: url("images/arrow_white.svg");
  position: relative;
  top: 0;
  transform: translate(0, 1px);
}

.custom-login-register .woocommerce-form-register .form-row button:hover {
  background-color: white !important;
  border-color: var(--main-color) !important;
  opacity: 1 !important;
  color: var(--main-color) !important;
}

.manufacturer-products__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.brands-products__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.brands-products__row li {
  text-align: center;
}

.brands-products__row li h4 {
  text-align: center;
}

.brands-products__row li a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.manufacturer-products__row li {
  text-align: center;
}

.manufacturer-product__title {
  line-height: 1.3;
}

@media screen and (max-width: 992px) {
  .manufacturer-products__row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .brands-products__row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px !important;
  }
  .custom-login-register form {
      margin: 0 !important;
  }
  .manufacturer-products__row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .brands-products__row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.woocommerce-order-received .wp-block-heading {
  display: none;
}

.woo-product-categories__grid {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-around;
  align-items: center;
  gap: 15px;
}

.select2-selection__placeholder {
  font-size: 0;
}

.select2-selection__placeholder:after {
  content: 'Ieškoti pagal paėmimo taško pavadinimą, adresą..';
  font-size: 16px;
}

.toggle-sub-menu {
  display: none;
}

@media screen and (max-width: 992px) {
  .toggle-sub-menu {
    display: block;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 35px;
    height: 60px;
    right: -30px;
    top: 0px;
    padding-bottom: 0;
    transform: translate(-100%, 0%);
    background: url(images/menu-arrow.svg) no-repeat center center;
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7476%) hue-rotate(87deg) brightness(104%) contrast(100%);
  }

  .header-menu > li > a:before {
    display: none !important;
  }



  body .qib-button-wrapper button.qib-button {

  }



}

.search-results .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: WooCommerce
}

.search-results .star-rating::before {
  content: "sssss";
  color: #cfc8d8;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}

.search-results .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em
}

.search-results .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0
}

.search-results .woocommerce-product-rating {
  line-height: 2;
  display: block
}

.search-results .woocommerce-product-rating::after,.search-results .woocommerce-product-rating::before {
  content: " ";
  display: table
}

.search-results .woocommerce-product-rating::after {
  clear: both
}

.search-results .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left
}

.search-results .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none
}

.search-results .hreview-aggregate .star-rating {
  margin: 10px 0 0
}



@media screen and (max-width: 992px) {
  .woocommerce-checkout-review-order-table .product-name img {
    min-width: 60px;
    padding-right: 5px;
  }
  .multiparcels-carrier-icon-image-holder img {
    max-width: 60px !important;
  }
}

@media screen and (max-width: 768px) {
  .shipping-options-grid .shipping-option {
    max-width: 105px;
  }
  .nbg-checkout-block {

  }
  .single-product .entry-summary .button {
    padding: 18px 10px !important;
    min-width: 145px;
  }
}

@media screen and (max-width: 420px) {
  .nbg-checkout-block {
    /*max-width: 300px;*/
  }
}

@media (max-width: 768px) {


}

label[for="billing_last_name"] span {
  display: none;
}


@media screen and (max-width: 767px) {
  .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {

    padding: 15px 0 !important;
    font-size: 20px !important;
  }
}
