@font-face {
  font-family: FontRegular;
  src: url("../../fonts/Inter-Regular.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontItalic;
  src: url("../../fonts/Inter-Italic.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMedium;
  src: url("../../fonts/Inter-Medium.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url("../../fonts/Inter-SemiBold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMediumItalic;
  src: url("../../fonts/Inter-MediumItalic.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url("../../fonts/Inter-Bold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBoldItalic;
  src: url("../../fonts/Inter-BoldItalic.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontRegularAdditional;
  src: url("../../fonts/Barlow-Regular.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMediumAdditional;
  src: url("../../fonts/Barlow-Medium.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBoldAdditional;
  src: url("../../fonts/Barlow-SemiBold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontRegularExtra;
  src: url("../../fonts/Bilbo-Regular.ttf") format("truetype");
  font-display: block;
}
.font-regular {
  font-family: FontRegular;
}

.font-italic {
  font-family: FontItalic;
}

.font-medium {
  font-family: FontMedium;
}

.font-semi-bold {
  font-family: FontSemiBold;
}

.font-italic {
  font-family: FontItalic;
}

.font-bold {
  font-family: FontBold;
}

.font-bold-italic {
  font-family: FontBoldItalic;
}

.font-regular-additional {
  font-family: FontRegularAdditional;
}

.font-medium-additional {
  font-family: FontMediumAdditional;
}

.font-semi-bold-additional {
  font-family: FontSemiBoldAdditional;
}

.font-regular-extra {
  font-family: FontRegularExtra;
}

strong, b {
  font-family: FontBold;
}

i, em {
  font-family: FontMediumItalic;
}

strong i, strong em, b i, b em, i strong, i b, em strong, em b {
  font-family: FontBoldItalic;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.default-text-color {
  color: #151716;
}

.default-color {
  color: #009035;
}

.background-white {
  background-color: #fff;
}

.background-black {
  background-color: #000;
}

.background-default {
  background-color: #009035;
}

.default-hover {
  color: #151716;
}
.default-hover:hover {
  color: #009035;
}

.default-link {
  position: relative;
  color: #009035;
}
.default-link:hover:before, .default-link:hover:after {
  width: 100%;
  opacity: 1;
}
.default-link:after {
  left: 0;
  background-color: #009035;
}
.default-link:before, .default-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.default-link:hover {
  color: #009035;
}

a {
  text-decoration: none;
  transition: all 0.2s linear;
}
a:hover {
  transition: all 0.2s linear;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:before, a:after {
  transition: all 0.2s linear;
}

input, textarea, button {
  -webkit-appearance: none;
  border-radius: 0;
  transition: all 0.2s linear;
}
input:hover, textarea:hover, button:hover {
  transition: all 0.2s linear;
}
input:focus, textarea:focus, button:focus {
  transition: all 0.2s linear;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, button::-webkit-input-placeholder {
  transition: all 0.2s linear;
}
input::-moz-placeholder, textarea::-moz-placeholder, button::-moz-placeholder {
  transition: all 0.2s linear;
}
input:-moz-placeholder, textarea:-moz-placeholder, button:-moz-placeholder {
  transition: all 0.2s linear;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, button:-ms-input-placeholder {
  transition: all 0.2s linear;
}

input[type=submit], button {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.transition-default {
  transition: all 0.2s linear;
}
.transition-default:hover {
  transition: all 0.2s linear;
}

.transition-default-longer {
  transition: all 0.4s linear;
}
.transition-default-longer:hover {
  transition: all 0.4s linear;
}

.transition-default-long {
  transition: all 0.6s linear;
}
.transition-default-long:hover {
  transition: all 0.6s linear;
}

.absolute-cover-img, .darkness-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.darkness-effect {
  background-color: rgba(0, 144, 53, 0.5);
}

.default-border-radius {
  border-radius: 15px;
}

.radius-50-px {
  border-radius: 50px;
}

.radius-50-percents {
  border-radius: 50%;
}

.m-auto-horizontal {
  margin: 0 auto;
}

.m-auto-vertical {
  margin: auto 0;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.background-image-default {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.backface-hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.non-default-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fz-0 {
  font-size: 0;
}

.last-child-without-margin > *:last-child {
  margin-bottom: 0 !important;
}

.default-menu-styles > ul > li:nth-last-of-type(1) {
  margin: 0 !important;
}

.white-color-wrapper * {
  color: #fff;
}

.white-color-wrapper.wysiwyg-styles .wp-caption-text {
  color: #fff;
}
.white-color-wrapper.wysiwyg-styles > h2 {
  color: #fff;
}

.thumb-placeholder {
  object-fit: contain;
  padding: 16px;
}

.mix-blend-mode {
  mix-blend-mode: multiply;
}

.no-select {
  user-select: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.clear-both {
  clear: both !important;
}

.no-wrap-text {
  white-space: nowrap !important;
}

@media screen and (max-width: 1024px) {
  .default-border-radius {
    border-radius: 10px;
  }
}
.body-with-admin-bar .navbar-scrolled {
  top: 32px;
}

.body-with-admin-bar .mobile-menu {
  height: calc(100vh - 83px - 37px - 1px - 32px);
  top: calc(83px + 37px + 1px + 32px);
}

.body-with-admin-bar .navbar-scrolled .mobile-menu {
  height: calc(100vh - 83px - 1px - 32px);
  top: calc(83px + 1px + 32px);
}

.prevent-shaking-animation {
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.prevent-shaking-animation:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
}

.prevent-shaking-animation-small:hover {
  transform: translateY(-3px) perspective(1000px);
  -webkit-transform: translateY(-3px) perspective(1000px);
}

@media screen and (min-width: 1181px) {
  .modal-open body, .modal-open .navbar-scrolled {
    padding-right: 8px !important;
  }
}
@media screen and (max-width: 782px) {
  .body-with-admin-bar .navbar-scrolled {
    top: 46px;
  }
  .body-with-admin-bar .mobile-menu {
    height: calc(100vh - 83px - 37px - 1px - 46px);
    top: calc(83px + 37px + 1px + 46px);
  }
  .body-with-admin-bar .navbar-scrolled .mobile-menu {
    height: calc(100vh - 83px - 1px - 46px);
    top: calc(83px + 1px + 46px);
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
body {
  font-family: FontMedium;
  color: #151716;
  font-size: 17px;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #009035;
}

.default-page-height {
  min-height: 100vh;
}

.default-text {
  font-size: 17px;
  line-height: 28px;
}

.simple-text-12 {
  font-size: 12px;
  line-height: 15px;
}

.simple-text-14 {
  font-size: 14px;
  line-height: 17px;
}

.simple-text-16 {
  font-size: 16px;
  line-height: 19px;
}

.simple-text-18 {
  font-size: 18px;
  line-height: 22px;
}

.simple-text-20 {
  font-size: 20px;
  line-height: 24px;
}

.main-container {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1512px;
}

.main-title {
  font-size: 30px;
  line-height: 36px;
  font-family: FontBold;
  margin: 0;
}

.default-wrapper-padding {
  padding: 96px 0;
}

.default-wrapper-margin {
  margin: 96px 0;
}

.default-button {
  display: inline-block;
  text-align: center;
  font-size: 17px;
  line-height: 21px;
  padding: 14px 27px;
  white-space: nowrap;
  position: relative;
  border-radius: 50px !important;
  font-family: FontSemiBold;
}

.default-button-bigger {
  font-size: 19px;
  line-height: 23px;
  padding: 18.5px 38px;
  text-transform: uppercase;
}

.default-button-simple {
  color: #fff !important;
  background-color: #009035 !important;
  border: 2px solid #009035 !important;
}
.default-button-simple:hover {
  color: #151716 !important;
  background-color: #FFD020 !important;
  border: 2px solid #FFD020 !important;
}

.default-button-reversed {
  color: #151716 !important;
  background-color: #FFD020 !important;
  border: 2px solid #FFD020 !important;
}
.default-button-reversed:hover {
  color: #fff !important;
  background-color: #009035 !important;
  border: 2px solid #009035 !important;
}

.default-button-reversed-white {
  color: #151716 !important;
  background-color: #FFD020 !important;
  border: 2px solid #FFD020 !important;
}
.default-button-reversed-white:hover {
  color: #151716 !important;
  background-color: #fff !important;
  border: 2px solid #fff !important;
}

.default-button-grey {
  color: #fff !important;
  background-color: #A4ACA7 !important;
  border: 2px solid #A4ACA7 !important;
}
.default-button-grey:hover {
  color: #151716 !important;
  background-color: #FFD020 !important;
  border: 2px solid #FFD020 !important;
}

@media screen and (max-width: 1680px) {
  .default-wrapper-padding {
    padding: 64px 0;
  }
  .default-wrapper-margin {
    margin: 64px 0;
  }
}
@media screen and (max-width: 1280px) {
  .default-wrapper-padding {
    padding: 48px 0;
  }
  .default-wrapper-margin {
    margin: 48px 0;
  }
}
@media screen and (max-width: 500px) {
  .main-container {
    padding: 0 16px;
  }
}
@keyframes scaling {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scalingBigger {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}
@keyframes sideMovingAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes verticalSideMovingAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes verticalSideMovingAnimationSmall {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce-link-with-image-on-hover:hover img, .bounce-link-with-image-on-hover:hover svg {
  animation: bounce 0.5s linear infinite;
  -webkit-animation: bounce 0.5s linear infinite;
}

@keyframes movement-rotation-effect-first {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  34% {
    transform: translate(4px, 0);
    -webkit-transform: translate(4px, 0);
  }
  51% {
    transform: translate(0, 4px);
    -webkit-transform: translate(0, 4px);
  }
  68% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  85% {
    transform: translate(-4px, 0);
    -webkit-transform: translate(-4px, 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-second {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(-4px, 4px);
    -webkit-transform: translate(-4px, 4px);
  }
  40% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  60% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  80% {
    transform: translate(0, 4px);
    -webkit-transform: translate(0, 4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-third {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(4px, 4px);
    -webkit-transform: translate(4px, 4px);
  }
  34% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  51% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  68% {
    transform: translate(-4px, 4px);
    -webkit-transform: translate(-4px, 4px);
  }
  85% {
    transform: translate(0, -4px);
    -webkit-transform: translate(0, -4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-fourth {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(4px, -4px);
    -webkit-transform: translate(4px, -4px);
  }
  40% {
    transform: translate(0px, 4px);
    -webkit-transform: translate(0px, 4px);
  }
  60% {
    transform: translate(4px, 0);
    -webkit-transform: translate(4px, 0);
  }
  80% {
    transform: translate(-4px, -4px);
    -webkit-transform: translate(-4px, -4px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
.first-animation-move {
  animation: movement-rotation-effect-first 10s linear infinite;
  -webkit-animation: movement-rotation-effect-first 10s linear infinite;
}

.second-animation-move {
  animation: movement-rotation-effect-second 10s linear infinite;
  -webkit-animation: movement-rotation-effect-second 10s linear infinite;
}

.third-animation-move {
  animation: movement-rotation-effect-third 10s linear infinite;
  -webkit-animation: movement-rotation-effect-third 10s linear infinite;
}

.fourth-animation-move {
  animation: movement-rotation-effect-fourth 10s linear infinite;
  -webkit-animation: movement-rotation-effect-fourth 10s linear infinite;
}

.before-animation-visibility-backface {
  opacity: 0;
  visibility: hidden;
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.before-animation-visibility-gallery {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1) rotate(90deg);
  -webkit-transform: scale(0.1) rotate(90deg);
}

.before-animation-visibility {
  opacity: 0;
  visibility: hidden;
}

.before-animation-left {
  transform: translateX(-100vw);
  -webkit-transform: translateX(-100vw);
}

.before-animation-right {
  transform: translateX(100vw);
  -webkit-transform: translateX(100vw);
}

@keyframes leftSideAnimationSimple {
  0% {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes rightSideAnimationSimple {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.left-side-animation-simple {
  -webkit-animation: leftSideAnimationSimple 1s ease-out forwards;
  animation: leftSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.right-side-animation-simple {
  -webkit-animation: rightSideAnimationSimple 1s ease-out forwards;
  animation: rightSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.animation-fix {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  will-change: transform;
}

.before-fade-in {
  opacity: 0;
}

@keyframes bottomSideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(32px);
    -webkit-transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}
@keyframes leftSideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-32px);
    -webkit-transform: translateX(-32px);
  }
  100% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}
@keyframes simpleFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.left-side-fade-in {
  -webkit-animation: leftSideFadeIn 1.25s ease forwards;
  animation: leftSideFadeIn 1.25s ease forwards;
}

.bottom-side-fade-in {
  -webkit-animation: bottomSideFadeIn 1.25s ease forwards;
  animation: bottomSideFadeIn 1.25s ease forwards;
}

.bottom-side-fade-in-small-delay {
  -webkit-animation: bottomSideFadeIn 1.25s ease 0.25s forwards;
  animation: bottomSideFadeIn 1.25s ease 0.25s forwards;
}

.simple-fade-in {
  -webkit-animation: simpleFadeIn 1.25s ease 0.25s forwards;
  animation: simpleFadeIn 1.25s ease 0.25s forwards;
}

.no-lazy-load {
  animation: none !important;
  -webkit-animation: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header-spacer {
  height: calc(83px + 1px);
}

.navbar-header {
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 1020;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #fff;
  border-bottom: 1px solid #D9D9D9;
}

.navbar-scrolled {
  position: fixed;
  top: 0;
}

.header-content {
  min-height: 83px;
  gap: 40px;
}

.header-logo img {
  max-width: 121px;
  max-height: calc(83px - 20px);
}

.header-menu > ul > li {
  font-size: 0;
}
.header-menu > ul > li > a {
  font-family: FontBold;
  text-transform: uppercase;
  color: #151716;
}
.header-menu > ul > li > a:hover {
  color: #009035;
}
.header-menu > ul .current-menu-item > a, .header-menu > ul .current-page-ancestor > a, .header-menu > ul .current-menu-ancestor > a {
  color: #009035;
}

.header-menu-desktop > ul {
  display: flex;
  display: -webkit-flex;
}
.header-menu-desktop > ul > li {
  margin-right: 40px;
}
.header-menu-desktop > ul > li > a {
  font-size: 15px;
  line-height: 18px;
}

.header-panel {
  gap: 20px;
}

.header-panel-link:hover .header-panel-icon {
  background-color: #009035;
}
.header-panel-link:hover svg path {
  fill: #fff;
}

.header-panel-icon {
  background-color: #EFEFE1;
  width: 34px;
  height: 34px;
}
.header-panel-icon svg {
  width: 17px;
  height: 17px;
}
.header-panel-icon svg path {
  transition: all 0.2s linear;
}

.header-profile-link-logged .header-panel-icon {
  transition: all 0.2s linear;
}
.header-profile-link-logged .header-profile-text {
  font-size: 15px;
  line-height: 18px;
}
.header-profile-link-logged:hover .header-panel-icon {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.header-profile-link-logged:hover .header-profile-text {
  color: #009035;
}

.header-cart-link, .header-profile-link-logged {
  gap: 8px;
}

.header-cart-text {
  font-size: 17px;
  line-height: 21px;
}

.header-cart-link:not(.non-empty-basket) {
  opacity: 0.5;
  pointer-events: none;
}
.header-cart-link:not(.non-empty-basket) .header-cart-text {
  display: none !important;
}

.header-profile-link.active .header-panel-icon {
  background-color: #009035;
}
.header-profile-link.active svg path {
  fill: #fff;
}

@media screen and (max-width: 1420px) {
  .header-content {
    gap: 32px;
  }
  .header-menu-desktop > ul > li {
    margin-right: 32px;
  }
}
@media screen and (min-width: 1366px) {
  .header-burger, .mobile-menu {
    display: none !important;
  }
  .header-content > *:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1365px) {
  .header-burger {
    cursor: pointer;
  }
  .header-burger svg {
    width: 34px;
    height: auto;
  }
  .header-burger svg path {
    fill: #009035;
    transition: all 0.2s linear;
  }
  .mobile-menu {
    background-color: #fff;
    border-left: 1px solid #D9D9D9;
    max-width: 320px;
    width: 100%;
    height: calc(100vh - 83px - 37px - 1px);
    top: calc(83px + 37px + 1px);
    right: 0;
    padding: 24px 24px 96px;
    overflow: auto;
  }
  .mobile-menu::-webkit-scrollbar {
    width: 0;
  }
  .mobile-menu::-webkit-scrollbar-track, .mobile-menu::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .mobile-menu-hidden {
    transform: translateX(100vw);
    -webkit-transform: translateX(100vw);
  }
  .mobile-background {
    width: 100%;
    height: calc(100vh - 83px - 37px - 1px);
    top: calc(83px + 37px + 1px);
    left: 0;
    z-index: 1019;
    background-color: rgba(0, 144, 53, 0.5);
  }
  .mobile-background-hidden {
    visibility: hidden;
    opacity: 0;
  }
  .header-menu-desktop {
    display: none !important;
  }
  .header-common-menu-mobile > ul > li {
    margin-bottom: 24px;
  }
  .header-common-menu-mobile > ul > li > a {
    font-size: 16px;
    line-height: 19px;
    color: #151716;
    text-transform: uppercase;
    font-family: FontSemiBoldAdditional !important;
  }
  .header-common-menu-mobile > ul > li > a:hover {
    color: #009035;
  }
  .header-common-menu-mobile > ul .current-menu-item a, .header-common-menu-mobile > ul .current-page-ancestor a, .header-common-menu-mobile > ul .current-menu-ancestor a {
    color: #009035;
  }
  .navbar-scrolled .mobile-menu, .navbar-scrolled ~ .mobile-background {
    height: calc(100vh - 83px - 1px);
    top: calc(83px + 1px);
  }
  .header-search-desktop {
    margin-left: auto;
  }
}
@media screen and (max-width: 819px) {
  .header-menu-mobile {
    margin-bottom: 48px;
  }
  .header-panel {
    margin-left: auto;
  }
  .mobile-menu {
    max-width: 484px;
  }
}
@media screen and (min-width: 501px) {
  .header-profile {
    position: relative;
  }
}
@media screen and (max-width: 500px) {
  .header-cart-title {
    display: none !important;
  }
  .mobile-menu {
    max-width: calc(100% - 16px);
  }
  .header-profile-link-logged .header-profile-text {
    display: none;
  }
}
.header-line-content {
  min-height: 37px;
}

.header-line-menu > ul > li {
  font-size: 0;
}
.header-line-menu > ul > li > a {
  font-family: FontSemiBold;
}

.header-line-menu-desktop > ul {
  display: flex;
  display: -webkit-flex;
}
.header-line-menu-desktop > ul > li {
  margin-right: 24px;
}
.header-line-menu-desktop > ul > li > a {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  position: relative;
}
.header-line-menu-desktop > ul > li > a:hover:before, .header-line-menu-desktop > ul > li > a:hover:after {
  width: 100%;
  opacity: 1;
}
.header-line-menu-desktop > ul > li > a:after {
  left: 0;
  background-color: #fff;
}
.header-line-menu-desktop > ul > li > a:before, .header-line-menu-desktop > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.header-line-menu-desktop > ul > li > a:hover {
  color: #fff;
}
.header-line-menu-desktop > ul .current-menu-item a:before, .header-line-menu-desktop > ul .current-menu-item a:after, .header-line-menu-desktop > ul .current-page-ancestor a:before, .header-line-menu-desktop > ul .current-page-ancestor a:after, .header-line-menu-desktop > ul .current-menu-ancestor a:before, .header-line-menu-desktop > ul .current-menu-ancestor a:after {
  width: 100%;
  opacity: 1;
}

.header-socials {
  gap: 16px;
  margin-left: auto;
}
.header-socials .single-social a svg, .header-socials .single-social a img {
  width: 22px;
  height: 22px;
  transition: all 0.2s linear;
  object-fit: contain;
}
.header-socials .single-social a:hover svg, .header-socials .single-social a:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

@media screen and (min-width: 820px) {
  .header-line-menu-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 819px) {
  .header-line-menu-desktop {
    display: none !important;
  }
  .header-line-menu-mobile > ul > li {
    margin-bottom: 20px;
  }
  .header-line-menu-mobile > ul > li > a {
    font-size: 15px;
    line-height: 18px;
    color: #618163;
    font-family: FontMediumAdditional !important;
    text-transform: none;
  }
  .header-line-menu-mobile > ul > li > a:hover {
    color: #009035;
  }
}
.header-search-toggle {
  gap: 8px;
}
.header-search-toggle svg {
  width: 18px;
  height: 18px;
}
.header-search-toggle svg path {
  fill: #009035;
  transition: all 0.2s linear;
}
.header-search-toggle input {
  border: none;
  padding: 0.5px 0;
  color: #151716;
  width: 96px;
}
.header-search-toggle input::-webkit-input-placeholder {
  color: #A1A4A6;
  font-size: 14px;
}
.header-search-toggle input::-moz-placeholder {
  color: #A1A4A6;
  font-size: 14px;
}
.header-search-toggle input:-moz-placeholder {
  color: #A1A4A6;
  font-size: 14px;
}
.header-search-toggle input:-ms-input-placeholder {
  color: #A1A4A6;
  font-size: 14px;
}

.header-search-panel {
  width: 460px;
  padding: 32px 16px 32px 32px;
  top: calc(100% + 16px);
  left: 0;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}
.header-search-panel .search-panel-preloader img {
  width: 64px;
  height: 64px;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
}
.header-search-panel .search-panel-results {
  max-height: 380px;
  padding-right: 16px;
}
.header-search-panel .search-panel-results::-webkit-scrollbar {
  width: 3px;
}
.header-search-panel .search-panel-results::-webkit-scrollbar-track {
  background-color: #fff;
}
.header-search-panel .search-panel-results::-webkit-scrollbar-thumb {
  background-color: #009035;
}
.header-search-panel .search-panel-product {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #D9D9D9;
}
.header-search-panel .search-panel-product-link {
  gap: 8px;
}
.header-search-panel .search-panel-product-link:hover .search-panel-product-title {
  color: #009035;
}
.header-search-panel .search-panel-product-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.header-search-panel .search-panel-product-title {
  color: #151716;
  font-size: 15px;
  line-height: 18px;
}

.header-search-panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.header-search-panel:not(.header-search-panel-hidden) {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1365px) {
  .header-search-panel {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 820px) {
  .header-search-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 819px) {
  .header-search-desktop {
    display: none !important;
  }
  .header-search-panel {
    left: 0;
    right: auto;
    max-width: 100%;
  }
  .header-search {
    margin-bottom: 48px;
  }
  .header-search-toggle input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .search-panel-results {
    padding-right: 8px;
  }
  .header-search-panel {
    padding: 16px 8px 16px 16px;
  }
}
.footer {
  margin-top: auto;
  background-color: #151716;
}
.footer .footer-common-title {
  margin-bottom: 24px;
}
.footer .footer-main {
  padding: 112px 0 0;
  border-bottom: 1px solid #29322D;
}
.footer .footer-main-information {
  padding: 0 56px 32px 0;
  border-right: 1px solid #29322D;
  max-width: 600px;
}
.footer .footer-main-information-title {
  color: #fff;
  margin-bottom: 16px;
}
.footer .footer-main-information-subtitle-wrapper {
  gap: 12px;
  margin-bottom: 16px;
}
.footer .footer-main-information-subtitle-icon svg {
  position: relative;
  width: 24px;
  height: 24px;
  top: 4px;
}
.footer .footer-main-information-subtitle {
  max-width: calc(100% - 24px - 12px);
  font-size: 30px;
  line-height: 38px;
  color: #FFD020;
}
.footer .footer-main-information-subtext {
  font-size: 15px;
  line-height: 25px;
  color: #E5EED7;
  margin-bottom: 56px;
}
.footer .footer-menu-wrapper, .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
  padding: 0 56px 32px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.footer .footer-menu-wrapper, .footer .footer-socials-wrapper {
  border-right: 1px solid #29322D;
}
.footer .footer-menu-wrapper .footer-menu > ul > li {
  margin-bottom: 16px;
}
.footer .footer-menu-wrapper .footer-menu > ul > li > a {
  font-size: 14px;
  line-height: 17px;
  color: #B8BEAE;
}
.footer .footer-menu-wrapper .footer-menu > ul > li > a:hover {
  color: #009035;
}
.footer .footer-menu-wrapper .footer-menu > ul .current-menu-item a, .footer .footer-menu-wrapper .footer-menu > ul .current-page-ancestor a, .footer .footer-menu-wrapper .footer-menu > ul .current-menu-ancestor a {
  color: #009035;
}
.footer .footer-socials .single-social {
  margin-bottom: 15px;
}
.footer .footer-socials .single-social a {
  gap: 16px;
}
.footer .footer-socials .single-social a svg, .footer .footer-socials .single-social a img {
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  object-fit: contain;
}
.footer .footer-socials .single-social a span {
  transition: all 0.2s linear;
  color: #B8BEAE;
}
.footer .footer-socials .single-social a:hover svg, .footer .footer-socials .single-social a:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.footer .footer-socials .single-social a:hover span {
  color: #009035;
}
.footer .footer-contacts {
  margin-bottom: 28px;
}
.footer .footer-contact {
  margin-bottom: 16px;
}
.footer .footer-contact a {
  color: #B8BEAE;
}
.footer .footer-contact a:hover {
  color: #009035;
}
.footer .footer-contacts-additional-title {
  margin-bottom: 8px;
}
.footer .footer-contacts-additional {
  font-size: 14px;
  line-height: 22px;
}
.footer .footer-additional {
  padding: 24px 0;
}
.footer .footer-additional-inner {
  gap: 32px 80px;
}
.footer .footer-copyright {
  color: #767B6E;
  font-family: FontRegular;
  font-size: 13px;
  line-height: 16px;
}
.footer .footer-menu-additional > ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-menu-additional > ul > li > a {
  font-size: 14px;
  line-height: 17px;
  color: #B8BEAE;
}
.footer .footer-menu-additional > ul > li > a:hover {
  color: #009035;
}
.footer .footer-menu-additional > ul .current-menu-item a, .footer .footer-menu-additional > ul .current-page-ancestor a, .footer .footer-menu-additional > ul .current-menu-ancestor a {
  color: #009035;
}
.footer .footer-developed-by {
  margin-left: auto;
  gap: 10px;
}
.footer .footer-developed-by span {
  font-size: 13px;
  line-height: 16px;
  color: #B8BEAE;
}
.footer .footer-developed-by svg {
  max-width: 122px;
  height: 31px;
}

@media screen and (max-width: 1680px) {
  .footer .footer-main-information {
    padding: 0 48px 32px 0;
  }
  .footer .footer-main {
    padding: 64px 0 0;
  }
  .footer .footer-menu-wrapper, .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
    padding: 0 48px 32px;
  }
  .footer .footer-additional-inner {
    gap: 32px 64px;
  }
  .footer .footer-main-information-subtext {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .footer .footer-main {
    padding: 32px 0 0;
  }
  .footer .footer-main-inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .footer .footer-main-information {
    padding: 0 32px 32px;
    width: calc(100% + 64px);
    margin: 0 -32px;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #29322D;
  }
  .footer .footer-additional-inner {
    gap: 32px 48px;
  }
  .footer .footer-menu-wrapper {
    padding: 32px 32px 32px 0;
  }
  .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
    padding: 32px;
  }
  .footer .footer-main-information-subtext {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-additional-inner {
    gap: 32px;
  }
  .footer .footer-developed-by span {
    display: none !important;
  }
}
@media screen and (max-width: 819px) {
  .footer .footer-additional-inner {
    gap: 24px;
  }
  .footer .footer-menu-wrapper, .footer .footer-socials-wrapper {
    width: 50%;
  }
  .footer .footer-menu-wrapper {
    padding: 32px 32px 32px 0;
  }
  .footer .footer-socials-wrapper {
    border-right: none;
    padding: 32px 0 32px 32px;
  }
  .footer .footer-contacts-wrapper {
    border-top: 1px solid #29322D;
    padding: 32px;
    width: calc(100% + 64px);
    margin: 0 -32px;
  }
  .footer .footer-copyright, .footer .footer-menu-additional, .footer .footer-developed-by {
    width: 100%;
  }
  .footer .footer-menu-additional {
    order: 1;
  }
  .footer .footer-menu-additional > ul {
    gap: 16px;
  }
  .footer .footer-menu-additional > ul > li {
    width: 100%;
  }
  .footer .footer-developed-by {
    order: 2;
  }
  .footer .footer-copyright {
    order: 3;
  }
}
@media screen and (max-width: 500px) {
  .footer .footer-main {
    border-bottom: none;
  }
  .footer .footer-menu-wrapper, .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
    border-bottom: 1px solid #29322D;
  }
  .footer .footer-menu-wrapper, .footer .footer-socials-wrapper {
    width: 100%;
    border-right: none;
  }
  .footer .footer-menu-wrapper {
    border-right: none;
  }
  .footer .footer-main-information, .footer .footer-menu-wrapper, .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
  .footer .footer-menu-wrapper, .footer .footer-socials-wrapper, .footer .footer-contacts-wrapper {
    padding: 32px 16px;
  }
  .footer .footer-contacts-wrapper {
    border-top: none;
  }
  .footer .footer-main-information {
    padding: 0 16px 32px;
  }
  .footer .footer-additional {
    padding: 32px 0;
  }
}
.wysiwyg-styles .wp-caption {
  width: 100% !important;
  margin: 0 0 28px;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0 0;
  color: #151716;
  font-family: FontBold;
}
.wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}
.wysiwyg-styles > p {
  margin-bottom: 28px;
}
.wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
  max-width: 50% !important;
  max-height: 500px !important;
  height: auto !important;
  object-fit: cover !important;
}
.wysiwyg-styles > p .alignleft {
  float: left;
  margin: 0 28px 28px 0;
}
.wysiwyg-styles > p .alignright {
  float: right;
  margin: 0 0 28px 28px;
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.wysiwyg-styles > ul li {
  display: table;
  background-repeat: no-repeat;
  padding: 0 0 0 24px;
  position: relative;
}
.wysiwyg-styles > ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 9.5px;
  left: 9.5px;
  background-color: #151716;
  border-radius: 50%;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li, .wysiwyg-styles > p > strong, .wysiwyg-styles > ul li > strong, .wysiwyg-styles > p > b, .wysiwyg-styles > ul li > b, .wysiwyg-styles > p > i, .wysiwyg-styles > ul li > i, .wysiwyg-styles > p > em, .wysiwyg-styles > ul li > em, .wysiwyg-styles > p > strong > i, .wysiwyg-styles > ul li > strong > i, .wysiwyg-styles > p > strong > em, .wysiwyg-styles > ul li > strong > em, .wysiwyg-styles > p > b > i, .wysiwyg-styles > ul li > b > i, .wysiwyg-styles > p > b > em, .wysiwyg-styles > ul li > b > em, .wysiwyg-styles > p > i > strong, .wysiwyg-styles > ul li > i > strong, .wysiwyg-styles > p > i > b, .wysiwyg-styles > ul li > i > b, .wysiwyg-styles > p > em > strong, .wysiwyg-styles > ul li > em > strong, .wysiwyg-styles > p > em > b, .wysiwyg-styles > ul li > em > b {
  font-size: 17px;
  line-height: 28px;
}
.wysiwyg-styles > p > a:not(.default-button), .wysiwyg-styles > ul li > a:not(.default-button), .wysiwyg-styles > p > strong > a:not(.default-button), .wysiwyg-styles > ul li > strong > a:not(.default-button), .wysiwyg-styles > p > b > a:not(.default-button), .wysiwyg-styles > ul li > b > a:not(.default-button), .wysiwyg-styles > p > i > a:not(.default-button), .wysiwyg-styles > ul li > i > a:not(.default-button), .wysiwyg-styles > p > em > a:not(.default-button), .wysiwyg-styles > ul li > em > a:not(.default-button), .wysiwyg-styles > p > strong > i > a:not(.default-button), .wysiwyg-styles > ul li > strong > i > a:not(.default-button), .wysiwyg-styles > p > strong > em > a:not(.default-button), .wysiwyg-styles > ul li > strong > em > a:not(.default-button), .wysiwyg-styles > p > b > i > a:not(.default-button), .wysiwyg-styles > ul li > b > i > a:not(.default-button), .wysiwyg-styles > p > b > em > a:not(.default-button), .wysiwyg-styles > ul li > b > em > a:not(.default-button), .wysiwyg-styles > p > i > strong > a:not(.default-button), .wysiwyg-styles > ul li > i > strong > a:not(.default-button), .wysiwyg-styles > p > i > b > a:not(.default-button), .wysiwyg-styles > ul li > i > b > a:not(.default-button), .wysiwyg-styles > p > em > strong > a:not(.default-button), .wysiwyg-styles > ul li > em > strong > a:not(.default-button), .wysiwyg-styles > p > em > b > a:not(.default-button), .wysiwyg-styles > ul li > em > b > a:not(.default-button) {
  color: #009035;
  position: relative;
  text-decoration: underline;
}
.wysiwyg-styles > p > a:not(.default-button):hover, .wysiwyg-styles > ul li > a:not(.default-button):hover, .wysiwyg-styles > p > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > a:not(.default-button):hover, .wysiwyg-styles > p > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > a:not(.default-button):hover, .wysiwyg-styles > p > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > a:not(.default-button):hover, .wysiwyg-styles > p > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > a:not(.default-button):hover, .wysiwyg-styles > p > strong > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > i > a:not(.default-button):hover, .wysiwyg-styles > p > strong > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > em > a:not(.default-button):hover, .wysiwyg-styles > p > b > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > i > a:not(.default-button):hover, .wysiwyg-styles > p > b > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > em > a:not(.default-button):hover, .wysiwyg-styles > p > i > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > strong > a:not(.default-button):hover, .wysiwyg-styles > p > i > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > b > a:not(.default-button):hover, .wysiwyg-styles > p > em > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > strong > a:not(.default-button):hover, .wysiwyg-styles > p > em > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > b > a:not(.default-button):hover {
  color: #009035;
  text-decoration: underline;
}
.wysiwyg-styles > p > a:not(.default-button), .wysiwyg-styles > ul li > a:not(.default-button), .wysiwyg-styles > p > i > a:not(.default-button), .wysiwyg-styles > ul li > i > a:not(.default-button), .wysiwyg-styles > p > em > a:not(.default-button), .wysiwyg-styles > ul li > em > a:not(.default-button) {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.wysiwyg-styles > p > a:not(.default-button):hover, .wysiwyg-styles > ul li > a:not(.default-button):hover, .wysiwyg-styles > p > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > a:not(.default-button):hover, .wysiwyg-styles > p > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > a:not(.default-button):hover {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.wysiwyg-styles > p > strong > a:not(.default-button), .wysiwyg-styles > ul li > strong > a:not(.default-button), .wysiwyg-styles > p > b > a:not(.default-button), .wysiwyg-styles > ul li > b > a:not(.default-button), .wysiwyg-styles > p > strong > i > a:not(.default-button), .wysiwyg-styles > ul li > strong > i > a:not(.default-button), .wysiwyg-styles > p > strong > em > a:not(.default-button), .wysiwyg-styles > ul li > strong > em > a:not(.default-button), .wysiwyg-styles > p > b > i > a:not(.default-button), .wysiwyg-styles > ul li > b > i > a:not(.default-button), .wysiwyg-styles > p > b > em > a:not(.default-button), .wysiwyg-styles > ul li > b > em > a:not(.default-button), .wysiwyg-styles > p > i > strong > a:not(.default-button), .wysiwyg-styles > ul li > i > strong > a:not(.default-button), .wysiwyg-styles > p > i > b > a:not(.default-button), .wysiwyg-styles > ul li > i > b > a:not(.default-button), .wysiwyg-styles > p > em > strong > a:not(.default-button), .wysiwyg-styles > ul li > em > strong > a:not(.default-button), .wysiwyg-styles > p > em > b > a:not(.default-button), .wysiwyg-styles > ul li > em > b > a:not(.default-button) {
  text-decoration-thickness: 2px;
  text-underline-offset: 1px;
}
.wysiwyg-styles > p > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > a:not(.default-button):hover, .wysiwyg-styles > p > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > a:not(.default-button):hover, .wysiwyg-styles > p > strong > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > i > a:not(.default-button):hover, .wysiwyg-styles > p > strong > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > strong > em > a:not(.default-button):hover, .wysiwyg-styles > p > b > i > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > i > a:not(.default-button):hover, .wysiwyg-styles > p > b > em > a:not(.default-button):hover, .wysiwyg-styles > ul li > b > em > a:not(.default-button):hover, .wysiwyg-styles > p > i > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > strong > a:not(.default-button):hover, .wysiwyg-styles > p > i > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > i > b > a:not(.default-button):hover, .wysiwyg-styles > p > em > strong > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > strong > a:not(.default-button):hover, .wysiwyg-styles > p > em > b > a:not(.default-button):hover, .wysiwyg-styles > ul li > em > b > a:not(.default-button):hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 1px;
}
.wysiwyg-styles > p + ul {
  margin-top: -28px;
}
.wysiwyg-styles > h2, .wysiwyg-styles > h3, .wysiwyg-styles > h4, .wysiwyg-styles > h5 {
  font-family: FontBold;
  margin-bottom: 16px;
  line-height: 120%;
}
.wysiwyg-styles > h2 {
  font-size: 25px;
}
.wysiwyg-styles > h3 {
  font-size: 20px;
}
.wysiwyg-styles > h4 {
  font-size: 18px;
}
.wysiwyg-styles > h5 {
  font-size: 15px;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 28px;
}
.wysiwyg-styles > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles > *:last-child > img {
  margin-bottom: 0 !important;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}

.video-wysiwyg {
  max-width: 1024px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg-gallery {
  margin: 0 0 28px;
  gap: 20px;
}
.wysiwyg-gallery .single-gallery-element {
  width: calc((100% - 60px) / 4.001);
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 86.3%;
}
.wysiwyg-gallery .slider-image-link {
  border-radius: 15px;
  overflow: hidden;
}
.wysiwyg-gallery .slider-image-link svg {
  width: 32px;
  height: 32px;
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
}
.wysiwyg-gallery .additional-number {
  right: 24px;
  bottom: 16px;
  font-size: 20px;
  line-height: 24px;
  color: white;
}

@media screen and (max-width: 1024px) {
  .wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
    border-radius: 10px;
  }
  .video-wysiwyg {
    border-radius: 10px;
  }
  .wysiwyg-gallery .slider-image-link {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
    float: none !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery {
    gap: 12px;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc(50% - 6px);
  }
}
.preloader {
  position: absolute;
  width: 80px;
  height: 15px;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.preloader div {
  background-color: #009035;
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader div:nth-child(1) {
  left: 8px;
  animation: preloader-animation-1 0.6s infinite;
}
.preloader div:nth-child(2) {
  left: 8px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(3) {
  left: 32px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(4) {
  left: 56px;
  animation: preloader-animation-3 0.6s infinite;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes preloader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes preloader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes preloader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.preloader-circle {
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
}

.common-input-title {
  font-size: 15px;
  line-height: 18px;
  color: #30353D;
  font-family: FontRegular;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s linear;
}
.common-input-title span {
  font-family: FontSemiBold;
  color: #009035;
  font-size: 12px;
}

.common-input-styling {
  font-size: 0;
}
.common-input-styling > input, .common-input-styling > textarea {
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #B8BEAE;
  color: #151716;
  background-color: #fff;
  -webkit-appearance: none;
  padding: 13px 16px;
}
.common-input-styling > input::-webkit-input-placeholder, .common-input-styling > textarea::-webkit-input-placeholder {
  color: #AAB2BE;
  font-size: 15px;
}
.common-input-styling > input::-moz-placeholder, .common-input-styling > textarea::-moz-placeholder {
  color: #AAB2BE;
  font-size: 15px;
}
.common-input-styling > input:-moz-placeholder, .common-input-styling > textarea:-moz-placeholder {
  color: #AAB2BE;
  font-size: 15px;
}
.common-input-styling > input:-ms-input-placeholder, .common-input-styling > textarea:-ms-input-placeholder {
  color: #AAB2BE;
  font-size: 15px;
}
.common-input-styling > input::-webkit-input-placeholder, .common-input-styling > textarea::-webkit-input-placeholder {
  font-family: FontItalic;
}
.common-input-styling > input::-moz-placeholder, .common-input-styling > textarea::-moz-placeholder {
  font-family: FontItalic;
}
.common-input-styling > input:-moz-placeholder, .common-input-styling > textarea:-moz-placeholder {
  font-family: FontItalic;
}
.common-input-styling > input:-ms-input-placeholder, .common-input-styling > textarea:-ms-input-placeholder {
  font-family: FontItalic;
}
.common-input-styling > input:focus::-webkit-input-placeholder, .common-input-styling > textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus::-moz-placeholder, .common-input-styling > textarea:focus::-moz-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus:-moz-placeholder, .common-input-styling > textarea:focus:-moz-placeholder {
  opacity: 0;
}
.common-input-styling > input:focus:-ms-input-placeholder, .common-input-styling > textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.common-input-styling > textarea {
  min-height: 92px;
  resize: none;
}
.common-input-styling > textarea::-webkit-scrollbar {
  width: 4px;
}
.common-input-styling > textarea::-webkit-scrollbar-track {
  background-color: transparent;
  margin: 5px 0;
}
.common-input-styling > textarea::-webkit-scrollbar-thumb {
  background-color: #009035;
}

.phone-number-input-inner {
  border-radius: 5px;
  border: 1px solid #B8BEAE;
}

.phone-number-input-inner-with-code {
  border-radius: 5px 5px 5px 0;
}

.phone-code-input-styling {
  width: 128px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}

.phone-input-styling {
  width: calc(100% - 128px);
}
.phone-input-styling > input {
  padding: 13px 12px;
  border: none;
  border-radius: 0 5px 5px 0;
}

.training-phone-input.warning-validation .phone-number-input-inner,
.contact-phone-input.warning-validation .phone-number-input-inner,
.profile-info-phone-input.warning-validation .phone-number-input-inner,
.registration-phone-input.warning-validation .phone-number-input-inner,
.checkout-process-phone-input.warning-validation .phone-number-input-inner {
  border: 1px solid #D80037;
}
.training-phone-input.warning-validation .phone-input-styling > input,
.contact-phone-input.warning-validation .phone-input-styling > input,
.profile-info-phone-input.warning-validation .phone-input-styling > input,
.registration-phone-input.warning-validation .phone-input-styling > input,
.checkout-process-phone-input.warning-validation .phone-input-styling > input {
  border: none !important;
}
.training-phone-input.warning-validation .selectize-dropdown,
.contact-phone-input.warning-validation .selectize-dropdown,
.profile-info-phone-input.warning-validation .selectize-dropdown,
.registration-phone-input.warning-validation .selectize-dropdown,
.checkout-process-phone-input.warning-validation .selectize-dropdown {
  border: 1px solid #D80037 !important;
}

.registration-email-input-already-used-warning, .profile-info-email-input-already-used-warning {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  color: #D80037;
  display: none;
}

.success-submit .success-image {
  margin-bottom: 24px;
}
.success-submit .success-image img, .success-submit .success-image svg {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.success-submit .success-content {
  max-width: 343px;
}

.checkbox-single {
  font-size: 0;
}
.checkbox-single input {
  left: -9999px;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back {
  border: 1px solid #009035 !important;
  background-color: #009035 !important;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back .checkbox-mark {
  opacity: 1;
  transition: all 0.2s linear;
}
.checkbox-single .checkbox-label {
  margin: 0;
}
.checkbox-single .checkbox-title {
  text-align: left;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  color: #151716;
  position: relative;
  top: 4px;
  font-family: FontRegular;
}
.checkbox-single .checkbox-title a {
  color: #009035;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.checkbox-single .checkbox-title a:hover {
  color: #009035;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.checkbox-single .checkbox-title span {
  color: #009035;
}
.checkbox-single .checkbox-title .checkbox-title-line-through {
  font-family: FontRegular;
  text-decoration: line-through;
  color: #A4ACA7;
  font-size: 12px;
}
.checkbox-single .checkbox-back {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.2s linear;
  border: 1px solid #B8BEAE;
  background-color: #fff;
  border-radius: 5px;
}
.checkbox-single .checkbox-back .checkbox-mark {
  transition: all 0.2s linear;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
}
.checkbox-single .checkbox-back .checkbox-mark img, .checkbox-single .checkbox-back .checkbox-mark svg {
  width: 16px;
}

.checkbox-single-radio input:checked ~ .checkbox-label .checkbox-back {
  border: 1px solid #B8BEAE !important;
  background-color: #fff !important;
}
.checkbox-single-radio .checkbox-title {
  font-size: 15px;
  line-height: 18px;
  top: 3.5px;
  font-family: FontSemiBold;
}
.checkbox-single-radio .checkbox-back {
  border-radius: 50%;
}
.checkbox-single-radio .checkbox-back .checkbox-mark {
  width: 14px;
  height: 14px;
  background-color: #009035;
  border-radius: 50%;
}

.checkboxes-group {
  margin-bottom: 40px;
}
.checkboxes-group .checkbox-single {
  margin-bottom: 20px;
}

.warning-validation .common-input-title {
  color: #D80037;
}
.warning-validation .common-input-styling > input, .warning-validation .common-input-styling > textarea {
  border: 1px solid #D80037 !important;
}
.warning-validation .common-input-styling > input::-webkit-input-placeholder, .warning-validation .common-input-styling > textarea::-webkit-input-placeholder {
  color: #D80037;
  font-size: 18px;
}
.warning-validation .common-input-styling > input::-moz-placeholder, .warning-validation .common-input-styling > textarea::-moz-placeholder {
  color: #D80037;
  font-size: 18px;
}
.warning-validation .common-input-styling > input:-moz-placeholder, .warning-validation .common-input-styling > textarea:-moz-placeholder {
  color: #D80037;
  font-size: 18px;
}
.warning-validation .common-input-styling > input:-ms-input-placeholder, .warning-validation .common-input-styling > textarea:-ms-input-placeholder {
  color: #D80037;
  font-size: 18px;
}
.warning-validation .checkbox-back {
  border: 1px solid #D80037 !important;
}
.warning-validation .checkbox-title {
  color: #D80037 !important;
}

.disabled-input-styling {
  pointer-events: none;
  opacity: 0.5;
}

@media screen and (max-width: 1280px) {
  .checkboxes-group {
    margin-bottom: 32px;
  }
  .checkboxes-group .checkbox-single {
    margin-bottom: 16px;
  }
}
.image-modal-window .modal {
  overflow-y: scroll;
}
.image-modal-window .modal::-webkit-scrollbar {
  width: 0;
}
.image-modal-window .modal::-webkit-scrollbar-track, .image-modal-window .modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.image-modal-window .modal.show {
  display: flex !important;
  display: -webkit-flex !important;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-dialog {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  border-radius: 0;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 16px !important;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 1420px;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  position: relative;
  margin: auto;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.image-modal-window .modal-dialog .modal-content .carousel, .image-modal-window .modal-dialog .modal-content .carousel-inner, .image-modal-window .modal-dialog .modal-content .carousel-item {
  height: 100% !important;
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: #009035;
  color: #fff;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  opacity: 1;
  transition: all 0.2s linear;
  border-radius: 5px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .carousel-control-prev svg, .image-modal-window .carousel-control-next svg {
  width: 13px !important;
  height: 24px !important;
}
.image-modal-window .carousel-control-prev svg path, .image-modal-window .carousel-control-next svg path {
  transition: all 0.2s linear;
  fill: #fff;
}
.image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
  background-color: #FFD020;
}
.image-modal-window .carousel-control-prev:hover svg path, .image-modal-window .carousel-control-next:hover svg path {
  fill: #151716;
}
.image-modal-window .carousel-control-prev {
  margin-left: 16px;
}
.image-modal-window .carousel-control-next {
  margin-right: 16px;
}
.image-modal-window .modal-cross {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: #009035;
  opacity: 1;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-cross svg {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross svg path {
  transition: all 0.2s linear;
  fill: #fff;
}
.image-modal-window .modal-cross:hover {
  background-color: #FFD020;
}
.image-modal-window .modal-cross:hover svg path {
  fill: #151716;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

@media screen and (max-width: 767px) {
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover, .image-modal-window .modal-cross:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus, .image-modal-window .modal-cross:focus {
    opacity: 0.75;
  }
}
.common-slick-carousel .slick-track {
  display: flex;
  display: -webkit-flex;
  margin: 0;
}
.common-slick-carousel .slick-slide {
  font-size: 0;
  height: inherit;
}
.common-slick-carousel .slick-slide > div {
  height: 100%;
}
.common-slick-carousel .slick-slide > div > div {
  height: 100%;
}
.common-slick-carousel .slick-slide {
  opacity: 1;
  transition: opacity 0.5s;
}
.common-slick-carousel .slick-current,
.common-slick-carousel .slick-current-clone-animate {
  opacity: 0.999;
}

.common-slick-carousel:not(.slick-initialized) {
  visibility: hidden;
  opacity: 0;
}

.common-slick-carousel.slick-slider {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 17.5px);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #B0CCB2;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 6.5px 12px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.slick-arrow:hover {
  background-color: #009035;
}

.slick-prev {
  right: calc(100% + 24px);
  background-image: url("../../images/chevron-black-left.svg");
}
.slick-prev:hover {
  background-image: url("../../images/chevron-white-left.svg");
}

.slick-next {
  left: calc(100% + 24px);
  background-image: url("../../images/chevron-black-right.svg");
}
.slick-next:hover {
  background-image: url("../../images/chevron-white-right.svg");
}

.slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  display: -webkit-flex;
  gap: 20px;
  font-size: 0;
}
.slick-dots li button {
  padding: 0;
  border: none;
  background-color: #D9D9D9;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.slick-dots li button:hover {
  background-color: #009035;
}
.slick-dots .slick-active button {
  background-color: #009035;
}

@media screen and (max-width: 1620px) {
  .custom-slick-arrows {
    display: flex;
    -webkit-display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 24px;
  }
  .slick-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 16px;
  }
}
.common-selectize-wrapper .selectize-control {
  font-size: 0;
}
.common-selectize-wrapper .selectize-input {
  font-size: 0 !important;
  line-height: normal !important;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
  width: 100% !important;
}
.common-selectize-wrapper .selectize-input:focus {
  outline: none;
}
.common-selectize-wrapper .selectize-input:before, .common-selectize-wrapper .selectize-input:after {
  display: none !important;
}
.common-selectize-wrapper .selectize-input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  margin: 0 !important;
}
.common-selectize-wrapper .selectize-input .item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
}
.common-selectize-wrapper .selectize-input .item ~ input {
  display: none !important;
}
.common-selectize-wrapper .selectize-dropdown {
  background-color: #fff !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: none;
  width: 100% !important;
  left: 0 !important;
  border: 1px solid #B8BEAE !important;
}
.common-selectize-wrapper .selectize-dropdown .active {
  background-color: #009035 !important;
  color: #fff !important;
}
.common-selectize-wrapper .selectize-dropdown .selected {
  background-color: #fff;
  color: #30353D;
}

.phone-code-selectize {
  width: 100%;
}
.phone-code-selectize .selectize-input {
  padding: 17px 32px 17px 12px !important;
  border-radius: 5px 0 0 5px !important;
  border: none !important;
  background-color: #fff !important;
  background-image: url("../../images/dropdown-grey.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 12px) 50% !important;
  background-size: 17px 9px !important;
}
.phone-code-selectize .selectize-input:hover {
  border: none !important;
}
.phone-code-selectize .selectize-input input, .phone-code-selectize .selectize-input .item {
  font-size: 13px !important;
  line-height: 16px !important;
  color: #30353D;
  transition: all 0.2s linear;
}
.phone-code-selectize .selectize-input input::-webkit-input-placeholder {
  color: #AAB2BE;
}
.phone-code-selectize .selectize-input input::-moz-placeholder {
  color: #AAB2BE;
}
.phone-code-selectize .selectize-input input:-moz-placeholder {
  color: #AAB2BE;
}
.phone-code-selectize .selectize-input input:-ms-input-placeholder {
  color: #AAB2BE;
}
.phone-code-selectize .selectize-dropdown {
  width: calc(100% + 1px) !important;
  left: -1px !important;
  border-radius: 0 0 5px 5px !important;
  top: 51px !important;
}
.phone-code-selectize .selectize-dropdown .option {
  padding: 13px 12px;
  font-size: 13px;
  line-height: 16px;
  color: #30353D;
}
.phone-code-selectize .selectize-dropdown-content::-webkit-scrollbar {
  width: 4px;
}
.phone-code-selectize .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.phone-code-selectize .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #009035;
}

.phone-code-selectize:not(.selectize-dropdown):before {
  content: "" !important;
  width: 1px !important;
  height: 25px !important;
  background-color: #B8BEAE !important;
  position: absolute !important;
  right: 0 !important;
  top: calc(50% - 12.5px) !important;
  z-index: 2 !important;
}

.phone-code-selectize.warning-validation .selectize-input {
  border: none !important;
  background-image: url("../../images/dropdown-warning.svg") !important;
}
.phone-code-selectize.warning-validation .selectize-input input::-webkit-input-placeholder {
  color: #D80037;
}
.phone-code-selectize.warning-validation .selectize-input input::-moz-placeholder {
  color: #D80037;
}
.phone-code-selectize.warning-validation .selectize-input input:-moz-placeholder {
  color: #D80037;
}
.phone-code-selectize.warning-validation .selectize-input input:-ms-input-placeholder {
  color: #D80037;
}
.phone-code-selectize.warning-validation .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #D80037;
}

.default-selectize .selectize-input {
  padding: 13.5px 32px 13.5px 12px !important;
  border-radius: 5px !important;
  border: 1px solid #B8BEAE !important;
  background-color: #fff !important;
  background-image: url("../../images/dropdown-grey.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 12px) 50% !important;
  background-size: 17px 9px !important;
}
.default-selectize .selectize-input input, .default-selectize .selectize-input .item {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #30353D;
  transition: all 0.2s linear;
}
.default-selectize .selectize-input input::-webkit-input-placeholder {
  color: #151716;
}
.default-selectize .selectize-input input::-moz-placeholder {
  color: #151716;
}
.default-selectize .selectize-input input:-moz-placeholder {
  color: #151716;
}
.default-selectize .selectize-input input:-ms-input-placeholder {
  color: #151716;
}
.default-selectize .selectize-dropdown {
  top: 53px !important;
}
.default-selectize .selectize-dropdown .option {
  padding: 10px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #30353D;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar {
  width: 4px;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.default-selectize .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #009035;
}
.default-selectize .input-active {
  background-color: #fff !important;
  border: 1px solid #009035 !important;
  border-radius: 5px 5px 0 0 !important;
}
.default-selectize .input-active ~ .selectize-dropdown {
  border: 1px solid #009035 !important;
  border-radius: 0 0 5px 5px !important;
}

.default-selectize.warning-validation .selectize-input {
  border: 1px solid #D80037 !important;
}
.default-selectize.warning-validation .selectize-input input::-webkit-input-placeholder {
  color: #D80037;
}
.default-selectize.warning-validation .selectize-input input::-moz-placeholder {
  color: #D80037;
}
.default-selectize.warning-validation .selectize-input input:-moz-placeholder {
  color: #D80037;
}
.default-selectize.warning-validation .selectize-input input:-ms-input-placeholder {
  color: #D80037;
}
.default-selectize.warning-validation .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #D80037;
}
.default-selectize.warning-validation .input-active {
  border: 1px solid #D80037 !important;
}
.default-selectize.warning-validation .input-active ~ .selectize-dropdown {
  border: 1px solid #D80037 !important;
}

.breadcrumbs-wrapper {
  margin: 24px 0 32px;
}
.breadcrumbs-wrapper .breadcrumbs-container {
  gap: 16px 32px;
}
.breadcrumbs-wrapper .breadcrumbs-button {
  margin-left: auto;
}

.breadcrumbs .single-breadcrumb a, .breadcrumbs .single-breadcrumb span {
  font-size: 13px;
  line-height: 16px;
}
.breadcrumbs .single-breadcrumb a {
  color: #777771;
}
.breadcrumbs .single-breadcrumb a:hover {
  color: #009035;
}
.breadcrumbs .single-breadcrumb span {
  color: #009035;
}
.breadcrumbs .breadcrumb-separator {
  margin: 0 12px;
}
.breadcrumbs .breadcrumb-separator svg {
  width: 9px;
  height: 6px;
}
.breadcrumbs .breadcrumb-separator svg path {
  fill: #C9C9C1;
  transition: all 0.2s linear;
}
.breadcrumbs .breadcrumb-separator.active svg path {
  fill: #009035;
}

.filters {
  margin-bottom: 40px;
  padding: 16px 0;
  border-top: 1px solid #B8BEAE;
  border-bottom: 1px solid #B8BEAE;
  gap: 16px 64px;
  z-index: 1;
}
.filters .filters-title-wrapper {
  gap: 12px;
}
.filters .selected-filters {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.filters .selected-filters-list {
  gap: 12px 20px;
}
.filters .selected-filters-list-empty {
  font-family: FontMediumItalic;
  color: #7F9888;
  font-size: 12px;
  line-height: 15px;
}
.filters .clear-filters-wrapper, .filters .ordering-filters {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.filters .clear-filters-wrapper {
  margin-left: auto;
}
.filters .ordering-dropdown-list {
  min-width: 96px;
}
.filters .single-category-value {
  border-radius: 50px;
  background-color: #E3EDE7;
  transition: all 0.2s linear;
  padding: 2px 10px;
  color: #5C5E65;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  position: relative;
}
.filters .single-category-value:hover {
  background-color: #D0E5D9;
}
.filters .single-category-value:hover .single-category-value-cross {
  opacity: 1;
  visibility: visible;
}
.filters .single-category-value-cross {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width: 14px;
  height: 14px;
  background-color: #C3D9CC;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -7px;
  right: -7px;
  opacity: 0;
  visibility: hidden;
}
.filters .single-category-value-cross:hover .single-category-value-cross-inner {
  animation: rotating 0.5s linear;
  -webkit-animation: rotating 0.5s linear;
}
.filters .single-category-value-cross .single-category-value-cross-inner {
  width: 6px;
  height: 6px;
  background-image: url("../../images/filter-cross.svg");
  background-repeat: no-repeat;
  background-size: 6px 6px;
  background-position: 50% 50%;
}

@media screen and (max-width: 1280px) {
  .filters {
    margin-bottom: 32px;
    gap: 16px 48px;
  }
}
@media screen and (max-width: 1024px) {
  .filters {
    gap: 16px 32px;
  }
}
@media screen and (max-width: 819px) {
  .filters {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .filters .selected-filters {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .filters .selected-filters, .filters .selected-filters-title {
    width: 100%;
  }
  .filters .single-category-value-cross {
    opacity: 1;
    visibility: visible;
  }
}
.container-with-sidebar {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 32px;
}

.container-with-sidebar-margin-big {
  margin-bottom: 96px;
}

.container-with-sidebar-margin-small {
  margin-bottom: 48px;
}

.container-with-sidebar-content {
  width: calc(100% - 333px - 32px);
}

.sidebar-wrapper {
  width: 333px;
}

.sidebar {
  padding: 32px 0;
  border: 1px solid #B8BEAE;
  border-radius: 15px;
  margin-bottom: 40px;
}

.sidebar-category-wrapper {
  margin-bottom: 24px;
}

.sidebar-category {
  padding: 0 24px;
}

.sidebar-category-link {
  gap: 12px;
}
.sidebar-category-link:hover .sidebar-category-title {
  color: #009035;
  text-decoration-color: #009035 !important;
}
.sidebar-category-link:hover ~ svg path {
  fill: #009035;
}

.sidebar-category-link.active .sidebar-category-title {
  color: #009035;
  text-decoration-color: #009035 !important;
}
.sidebar-category-link.active ~ svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.sidebar-category-link.active ~ svg path {
  fill: #009035;
}

.sidebar-subcategories-inner {
  padding-top: 16px;
}

.sidebar-categories-wrapper {
  padding-bottom: 40px;
}

.sidebar-category-with-dropdown {
  background-position: calc(100% - 24px) 50%;
}
.sidebar-category-with-dropdown svg {
  position: absolute;
  top: calc(50% - 3.5px);
  right: 24px;
  width: 13px;
  height: 7px;
  transition: all 0.2s linear;
  z-index: -1;
}
.sidebar-category-with-dropdown svg path {
  fill: #4F5150;
  transition: all 0.2s linear;
}
.sidebar-category-with-dropdown .sidebar-category-title {
  max-width: calc(100% - 40px - 12px - 13px - 12px);
}

.sidebar-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.sidebar-category-icon img {
  width: 22px;
  height: 22px;
}

.sidebar-category-title {
  text-decoration-color: transparent !important;
  max-width: calc(100% - 40px - 12px);
}

.sidebar-promotion .sidebar-category-icon {
  background-color: #E1003B;
}

.sidebar-clear-filters {
  padding: 24px 0 0;
  margin: 0 24px;
  border-top: 1px solid #B8BEAE;
}

.sidebar-subcategories-wrapper {
  display: none;
}

.sidebar-subcategories {
  background-color: #E4EDE7;
  padding: 24px 32px;
}

.sidebar-subcategory {
  margin-bottom: 8px;
}
.sidebar-subcategory .checkbox-title {
  font-family: FontMedium;
}

.sidebar-articles-subcategories-wrapper {
  padding: 0 40px;
}

.sidebar-articles-subcategory-wrapper {
  margin-bottom: 8px;
}

.sidebar-articles-subcategory {
  font-size: 15px;
  line-height: 21px;
  text-decoration-color: transparent !important;
}
.sidebar-articles-subcategory:hover {
  color: #009035;
  text-decoration-color: #009035 !important;
}

.active.sidebar-articles-subcategory {
  color: #009035;
  text-decoration-color: #009035 !important;
}

.profile-sidebar-container {
  padding: 0 32px;
}

.profile-sidebar-name {
  margin-bottom: 32px;
}

.profile-sidebar-menu {
  margin-bottom: 24px;
}
.profile-sidebar-menu > ul > li {
  font-size: 0;
  margin-bottom: 24px;
}
.profile-sidebar-menu > ul > li > a {
  font-size: 15px;
  line-height: 18px;
  color: #151716;
}
.profile-sidebar-menu > ul > li > a:hover {
  color: #009035;
}
.profile-sidebar-menu > ul .current-menu-item > a, .profile-sidebar-menu > ul .current-page-ancestor > a, .profile-sidebar-menu > ul .current-menu-ancestor > a {
  color: #009035;
}

.profile-sidebar-logout {
  font-size: 15px;
  line-height: 18px;
  color: #151716;
}
.profile-sidebar-logout:hover {
  color: #009035;
}

.profile-sidebar-logout-preloader {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(100% + 8px);
  display: none;
}

@media screen and (max-width: 1680px) {
  .container-with-sidebar-margin-big {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1280px) {
  .container-with-sidebar-margin-big {
    margin-bottom: 48px;
  }
  .sidebar {
    margin-bottom: 32px;
  }
  .sidebar-categories-wrapper {
    padding-bottom: 32px;
  }
  .profile-sidebar-name {
    margin-bottom: 24px;
  }
  .profile-sidebar-menu {
    margin-bottom: 16px;
  }
  .profile-sidebar-menu > ul > li {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .sidebar {
    display: block !important;
  }
  .sidebar-toggle-wrapper, .mobile-sidebar-elements {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .container-with-sidebar {
    gap: 0;
  }
  .container-with-sidebar-content, .sidebar-wrapper {
    width: 100%;
  }
  .sidebar {
    border-radius: 10px;
    display: none;
  }
  .sidebar-toggle-wrapper {
    margin-bottom: 16px;
  }
  .sidebar-toggle {
    gap: 12px;
  }
  .sidebar-toggle svg {
    width: 13px;
    height: 7px;
    transition: all 0.2s linear;
  }
  .sidebar-toggle svg path {
    fill: #4F5150;
    transition: all 0.2s linear;
  }
  .sidebar-toggle:hover span {
    color: #009035;
  }
}
@media screen and (max-width: 500px) {
  .sidebar {
    padding: 24px 0;
  }
  .sidebar-category {
    padding: 0 16px;
  }
  .sidebar-clear-filters {
    margin: 0 16px;
  }
  .sidebar-subcategories {
    padding: 24px;
  }
  .sidebar-articles-subcategories-wrapper {
    padding: 0 32px;
  }
  .profile-sidebar-container {
    padding: 0 16px;
  }
}
.sidebar-info-block {
  padding: 32px 24px 40px;
}
.sidebar-info-block .sidebar-info-block-icon {
  margin-bottom: 12px;
}
.sidebar-info-block .sidebar-info-block-icon img {
  width: 42px;
  height: 42px;
}
.sidebar-info-block .sidebar-info-block-title {
  margin-bottom: 20px;
}

.sidebar-info-block-desktop {
  margin-bottom: 40px;
}

@media screen and (min-width: 1280px) {
  .sidebar-info-block-desktop {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .sidebar-info-block-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar-info-block-desktop {
    display: none !important;
  }
  .sidebar-info-block-mobile {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .sidebar-info-block {
    padding: 24px 16px 32px;
  }
  .sidebar-info-block .sidebar-info-block-title {
    margin-bottom: 16px;
  }
}
.sidebar-carousel-wrapper .slick-track {
  display: block;
}
.sidebar-carousel-wrapper .slick-list {
  margin-bottom: 14px;
}
.sidebar-carousel-wrapper .sidebar-carousel-element {
  min-height: 588px;
  padding: 16px;
}
.sidebar-carousel-wrapper .sidebar-carousel-gradient {
  background: linear-gradient(to bottom, rgba(100, 136, 118, 0.6), rgba(17, 42, 26, 0.6));
}
.sidebar-carousel-wrapper .sidebar-carousel-title {
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 24px;
}
.sidebar-carousel-wrapper .sidebar-carousel-socials {
  gap: 24px;
}
.sidebar-carousel-wrapper .single-sidebar-social svg, .sidebar-carousel-wrapper .single-sidebar-social img {
  width: 52px;
  height: 52px;
  transition: all 0.2s linear;
  object-fit: contain;
}
.sidebar-carousel-wrapper .single-sidebar-social a:hover svg, .sidebar-carousel-wrapper .single-sidebar-social a:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

@media screen and (min-width: 1025px) {
  .sidebar-carousel-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar-carousel-desktop {
    display: none !important;
  }
}
.faq-block-wrapper {
  padding-bottom: 96px;
  margin-top: 96px;
  background: linear-gradient(to bottom, #FFFFFF, #F5F5EC);
}
.faq-block-wrapper .faq-block-inner {
  gap: 96px;
}
.faq-block-wrapper .faq-block-content {
  width: 530px;
}
.faq-block-wrapper .faq-block-main {
  margin-bottom: 64px;
}
.faq-block-wrapper .faq-block-icon {
  margin-bottom: 20px;
}
.faq-block-wrapper .faq-block-icon img {
  width: 61px;
  height: 61px;
}
.faq-block-wrapper .faq-block-title {
  margin-bottom: 32px;
}
.faq-block-wrapper .faq-block-buttons {
  gap: 24px;
}
.faq-block-wrapper .faq {
  width: calc(100% - 530px - 96px);
}
.faq-block-wrapper .faq-answer {
  padding: 12px 28px 40px;
}

.faq-row {
  border: 1px solid #B8BEAE;
  margin-bottom: 20px;
}

.faq-link {
  padding: 28px 18px 28px 28px;
  gap: 18px;
}

.faq-row.active {
  background-color: #EFF6F2;
}
.faq-row.active .faq-link .faq-icon-minus {
  opacity: 1;
  visibility: visible;
}
.faq-row.active .faq-link .faq-icon-plus {
  opacity: 0;
  visibility: hidden;
}
.faq-row.active .faq-question-inner {
  color: #009035;
}

.faq-row:not(.active) .faq-link .faq-icon-plus {
  opacity: 1;
  visibility: visible;
}
.faq-row:not(.active) .faq-link .faq-icon-minus {
  opacity: 0;
  visibility: hidden;
}

.faq-question-inner {
  font-size: 16px;
  line-height: 22px;
  max-width: calc(100% - 35px - 18px);
}

.faq-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.faq-icon-inner {
  top: 0;
  left: 0;
}
.faq-icon-inner svg {
  width: 35px;
  height: 35px;
}

.faq-answer {
  display: none;
  padding: 12px 64px 48px;
}

@media screen and (max-width: 1680px) {
  .faq-block-wrapper {
    padding-bottom: 64px;
    margin-top: 64px;
  }
  .faq-block-wrapper .faq-block-inner {
    gap: 64px;
  }
  .faq-block-wrapper .faq {
    width: calc(100% - 530px - 64px);
  }
}
@media screen and (max-width: 1280px) {
  .faq-block-wrapper {
    padding-bottom: 48px;
    margin-top: 48px;
  }
  .faq-block-wrapper .faq-block-inner {
    gap: 48px;
  }
  .faq-block-wrapper .faq-block-content {
    width: 420px;
  }
  .faq-block-wrapper .faq-block-icon {
    margin-bottom: 16px;
  }
  .faq-block-wrapper .faq-block-main {
    margin-bottom: 48px;
  }
  .faq-block-wrapper .faq-block-title {
    margin-bottom: 24px;
  }
  .faq-block-wrapper .faq {
    width: calc(100% - 420px - 48px);
  }
  .faq-row {
    margin-bottom: 16px;
  }
  .faq-answer {
    padding: 12px 48px 48px;
  }
}
@media screen and (max-width: 1024px) {
  .faq-block-wrapper .faq-block-content, .faq-block-wrapper .faq {
    width: 100%;
  }
  .faq-block-wrapper .faq-answer {
    padding: 12px 24px 32px;
  }
  .faq-link {
    padding: 24px 16px 24px 24px;
    gap: 16px;
  }
  .faq-question-inner {
    max-width: calc(100% - 35px - 16px);
  }
  .faq-answer {
    padding: 12px 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .faq-block-wrapper .faq-answer {
    padding: 8px 16px 16px;
  }
  .faq-link {
    padding: 16px;
  }
  .faq-answer {
    padding: 8px 16px 16px;
  }
}
.info-row {
  background-color: #DEEFDF;
  padding: 16px 0;
}
.info-row .info-row-inner {
  gap: 40px;
}
.info-row .info-row-main {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  gap: 28px;
}
.info-row .info-row-icon {
  width: 58px;
  height: 84px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.info-row .info-row-icon img {
  width: 36px;
  height: 36px;
}
.info-row .info-row-data {
  max-width: calc(100% - 28px - 58px);
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.info-row .info-row-values {
  gap: 0 32px;
  margin-bottom: 4px;
}
.info-row .info-row-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

@media screen and (max-width: 1280px) {
  .info-row .info-row-inner {
    gap: 32px;
  }
  .info-row .info-row-main {
    gap: 24px;
  }
  .info-row .info-row-data {
    max-width: calc(100% - 24px - 58px);
  }
}
@media screen and (max-width: 1024px) {
  .info-row {
    padding: 48px 0;
  }
  .info-row .info-row-inner, .info-row .info-row-main, .info-row .info-row-values {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap: 16px;
  }
  .info-row .info-row-main, .info-row .info-row-button, .info-row .info-row-data, .info-row .info-row-title, .info-row .info-row-value {
    width: 100%;
  }
  .info-row .info-row-data {
    max-width: none;
    text-align: center;
  }
  .info-row .info-row-icon {
    width: 84px;
    height: 58px;
    margin: 0 auto;
  }
  .info-row .info-row-values {
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 16px;
  }
}
.list-of-products {
  gap: 24px;
}
.list-of-products .single-product {
  width: calc((100% - 48px) / 3.001);
}

.load-more-products-preloader {
  top: calc(100% + 16px);
  left: calc(50% - 40px);
}

.common-categories {
  gap: 8px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.common-categories .common-category {
  border: 1px solid #A8A8A1;
  color: #777771;
}
.common-categories .common-label {
  font-size: 13px;
  line-height: 16px;
  padding: 2px 16px;
}
.common-categories .product-new {
  border: 1px solid #009035;
  color: #009035;
}

.product-prices {
  gap: 0 8px;
  font-size: 17px;
  line-height: 28px;
}
.product-prices .product-price {
  color: #009035;
}
.product-prices .product-price-with-discount {
  color: #D80037;
}
.product-prices .product-previous-price {
  color: #808382;
  text-decoration: line-through;
}

.single-product .single-product-link {
  padding-bottom: 64px;
  border: 1px solid #B8BEAE;
}
.single-product .single-product-link:hover {
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.single-product .single-product-row {
  gap: 8px;
}
.single-product .single-product-row {
  padding: 16px 16px 0;
  margin-bottom: 32px;
}
.single-product .single-product-discount {
  background-color: #D80037;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.single-product .single-product-discount svg {
  width: 14px;
  height: 14px;
}
.single-product .single-product-image, .single-product .single-product-main {
  padding: 0 32px;
}
.single-product .single-product-image {
  margin-bottom: 32px;
}
.single-product .single-product-image img {
  height: 255px;
}
.single-product .single-product-title {
  margin-bottom: 4px;
}

@media screen and (max-width: 1680px) {
  .single-product .single-product-link {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1366px) {
  .list-of-products .single-product {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 1280px) {
  .single-product .single-product-link {
    padding-bottom: 32px;
  }
  .single-product .single-product-image, .single-product .single-product-main {
    padding: 0 16px;
  }
}
@media screen and (max-width: 1024px) {
  .list-of-products {
    margin-bottom: 64px;
  }
  .load-more-products-preloader {
    top: calc(100% + 24px);
  }
}
@media screen and (max-width: 767px) {
  .list-of-products .single-product {
    width: 100%;
  }
}
.products-carousel .slick-list {
  padding: 16px 0;
  width: calc(100% + 24px);
  margin: 0 -12px;
}
.products-carousel .slick-slide {
  padding: 0 12px;
}

.product-quantity {
  gap: 10px;
}
.product-quantity .quantity-button {
  width: 40px;
  height: 40px;
}
.product-quantity .quantity-button svg {
  width: 20px;
  height: 20px;
}
.product-quantity .quantity-button svg path {
  fill: #fff;
  transition: all 0.2s linear;
}
.product-quantity .quantity-button:hover {
  background-color: #FFD020;
}
.product-quantity .quantity-button:hover svg path {
  fill: #151716;
}
.product-quantity .quantity-button.disabled {
  background-color: #B8BEAE;
  pointer-events: none;
}
.product-quantity .quantity-input {
  border: 1px solid #A8A8A1;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  padding: 0;
}

@property --animatedGradientColor {
  syntax: "<color>";
  initial-value: #151716;
  inherits: false;
}
.list-of-articles {
  gap: 24px;
}

.single-article {
  width: calc((100% - 48px) / 3.001);
}
.single-article .single-article-link:before {
  content: "";
  display: block;
  padding-top: 137.28%;
}
.single-article .single-article-link:hover .single-article-gradient {
  --animatedGradientColor: #194027;
}
.single-article .single-article-link:hover .single-article-title {
  text-decoration-color: #fff !important;
}
.single-article .single-article-link:hover .common-category {
  border: 1px solid #009035;
  background-color: #009035;
}
.single-article .single-article-gradient {
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, var(--animatedGradientColor) 100%);
  transition: --animatedGradientColor 0.2s linear;
}
.single-article .single-article-content {
  bottom: 64px;
  left: 32px;
  width: calc(100% - 64px);
  max-height: calc(100% - 128px);
}
.single-article .single-article-content::-webkit-scrollbar {
  width: 0;
}
.single-article .single-article-content::-webkit-scrollbar-track, .single-article .single-article-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.single-article .common-categories {
  margin-bottom: 20px;
}
.single-article .common-category {
  border: 1px solid #fff;
  color: #fff;
}
.single-article .single-article-title {
  text-decoration-color: transparent !important;
}

@media screen and (max-width: 1680px) {
  .single-article .single-article-content {
    bottom: 48px;
    max-height: calc(100% - 96px);
  }
}
@media screen and (max-width: 1366px) {
  .single-article {
    width: calc(50% - 12px);
  }
  .single-article .single-article-content {
    bottom: 32px;
    left: 24px;
    width: calc(100% - 48px);
    max-height: calc(100% - 64px);
  }
}
@media screen and (max-width: 767px) {
  .single-article {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .single-article .single-article-content {
    left: 16px;
    width: calc(100% - 32px);
  }
}
.main-section {
  margin-bottom: 24px;
  gap: 16px;
}

.main-section-content {
  max-width: 1000px;
}

.main-section-title {
  margin-bottom: 16px;
}

.main-section-content {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.main-section-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .main-section {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
}
.blog-page .pagination {
  margin-top: 64px;
}

.pagination {
  gap: 12px;
}
.pagination .page-numbers {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 17px;
  color: #151716;
  background-color: #fff;
  border: 1px solid #B8BEAE;
  position: relative;
  transition: all 0.2s linear;
}
.pagination .page-numbers:hover {
  color: #fff;
  background-color: #009035;
  border: 1px solid #009035;
}
.pagination .page-numbers:last-child {
  margin-right: 0;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: auto;
  padding: 0 12px;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #009035;
  border: 1px solid #009035;
}
.pagination .page-numbers.dots {
  color: #151716;
  background-color: #fff;
  border: 1px solid #B8BEAE;
}

@media screen and (max-width: 1280px) {
  .blog-page .pagination {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .blog-page .pagination {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .pagination {
    padding-bottom: 52px;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    position: absolute;
    top: 52px;
  }
  .pagination .page-numbers.prev {
    left: 0;
  }
  .pagination .page-numbers.next {
    right: 0;
  }
}
.info-block .info-block-inner {
  gap: 32px;
}
.info-block .info-block-image {
  width: calc(100% - 600px - 32px);
}
.info-block .info-block-image img {
  bottom: 0;
  left: 0;
  max-height: calc(100% + 56px);
}
.info-block .info-block-content {
  width: 600px;
  padding: 48px 0;
}
.info-block .info-block-main {
  margin-bottom: 32px;
}
.info-block .info-block-title {
  margin-bottom: 24px;
}
.info-block .info-block-wysiwyg {
  max-width: 560px;
}

@media screen and (max-width: 1366px) {
  .info-block .info-block-image {
    width: calc(100% - 450px - 32px);
  }
  .info-block .info-block-content {
    width: 450px;
  }
}
@media screen and (max-width: 1271px) {
  .info-block .info-block-image, .info-block .info-block-content {
    width: 100%;
  }
  .info-block .info-block-image {
    order: 2;
  }
  .info-block .info-block-image img {
    bottom: auto;
    left: auto;
    max-height: none;
    position: static !important;
  }
  .info-block .info-block-content {
    padding: 48px 0 0;
  }
  .info-block .info-block-wysiwyg {
    max-width: none;
  }
}
.advantages {
  background-color: #E6F0E7;
}
.advantages .advantages-main {
  margin-bottom: 80px;
}
.advantages .advantages-title {
  margin-bottom: 20px;
}
.advantages .advantages-subtext {
  max-width: 1190px;
}
.advantages .advantages-list {
  gap: 56px 40px;
}
.advantages .single-advantage {
  width: calc((100% - 120px) / 4.001);
}
.advantages .single-advantage:before {
  content: "";
  width: 78px;
  height: 71px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 78px 71px;
  position: absolute;
  left: calc(100% - 18px);
}
.advantages .single-advantage:nth-of-type(2n) .single-advantage-background {
  background-color: #FFDE65;
}
.advantages .single-advantage:nth-of-type(2n):before {
  top: 40px;
  background-image: url("../../images/up-arrow.svg");
}
.advantages .single-advantage:nth-of-type(2n+1):before {
  top: 144px;
  background-image: url("../../images/down-arrow.svg");
}
.advantages .single-advantage:nth-of-type(4n):before, .advantages .single-advantage:nth-last-of-type(1):before {
  content: none;
}
.advantages .single-advantage-image {
  max-width: 300px;
  height: 200px;
  margin-bottom: 40px;
}
.advantages .single-advantage-stroke, .advantages .single-advantage-background {
  width: 153px;
  height: 224px;
  border-radius: 200px;
}
.advantages .single-advantage-stroke {
  border: 2px solid #C1E0CD;
  bottom: 0;
  left: calc(50% - 76.5px);
}
.advantages .single-advantage-background {
  background-color: #C2DBCB;
  top: -2px;
  left: 10px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.advantages .single-advantage-counter {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 4px;
}
.advantages .single-advantage-title {
  margin-bottom: 24px;
}

@media screen and (max-width: 1280px) {
  .advantages .advantages-main {
    margin-bottom: 48px;
  }
  .advantages .advantages-title {
    margin-bottom: 16px;
  }
  .advantages .advantages-list {
    gap: 56px 32px;
  }
  .advantages .single-advantage {
    width: calc((100% - 96px) / 4.001);
  }
  .advantages .single-advantage:before {
    left: calc(100% - 22px);
  }
  .advantages .single-advantage-image {
    margin-bottom: 24px;
  }
  .advantages .single-advantage-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1271px) {
  .advantages .single-advantage {
    width: calc(50% - 16px);
  }
  .advantages .single-advantage:before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .advantages .single-advantage {
    width: 100%;
  }
}
.service-hero .service-hero-gradient {
  background-color: rgba(0, 0, 0, 0.5);
}
.service-hero .service-hero-container {
  min-height: 387px;
}
.service-hero .service-hero-inner {
  padding: 64px 0;
}
.service-hero .service-hero-main {
  margin-bottom: 40px;
}
.service-hero .service-hero-title {
  font-size: 27px;
  line-height: 33px;
  margin-bottom: 20px;
}
.service-hero .service-hero-wysiwyg {
  max-width: 720px;
}

@media screen and (max-width: 1280px) {
  .service-hero .service-hero-inner {
    padding: 48px 0;
  }
  .service-hero .service-hero-main {
    margin-bottom: 32px;
  }
  .service-hero .service-hero-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service-hero .service-hero-container {
    min-height: 0;
  }
}
.service-stages {
  margin: 96px 0;
}
.service-stages .service-stages-title {
  margin-bottom: 48px;
}
.service-stages .service-stages-inner {
  gap: 48px 80px;
}
.service-stages .service-stages-list:not(.service-stages-list-with-gallery) {
  width: 100%;
}
.service-stages .service-stages-list:not(.service-stages-list-with-gallery) .service-stages-list-inner {
  gap: 32px;
}
.service-stages .service-stages-list:not(.service-stages-list-with-gallery) .single-stage {
  width: calc((100% - 64px) / 3.001);
}
.service-stages .service-stages-list.service-stages-list-with-gallery {
  width: 555px;
}
.service-stages .service-stages-list.service-stages-list-with-gallery .service-stages-list-inner {
  gap: 40px;
}
.service-stages .service-stages-list.service-stages-list-with-gallery .single-stage {
  width: 100%;
}
.service-stages .single-stage {
  border: 1px solid #B0CCB2;
  padding: 32px 48px 64px;
}
.service-stages .stage-counter {
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 16px;
}
.service-stages .stage-title {
  margin-bottom: 16px;
}
.service-stages .service-stages-gallery-inner {
  gap: 24px;
}
.service-stages .single-stage-image a:before {
  content: "";
  display: block;
  padding-top: 88.214%;
}
.service-stages .service-stages-gallery:not(.service-stages-gallery-with-stages) {
  width: 100%;
}
.service-stages .service-stages-gallery:not(.service-stages-gallery-with-stages) .single-stage-image {
  width: calc((100% - 72px) / 4.001);
}
.service-stages .service-stages-gallery.service-stages-gallery-with-stages {
  width: calc(100% - 555px - 80px);
}
.service-stages .service-stages-gallery.service-stages-gallery-with-stages .single-stage-image {
  width: calc(50% - 12px);
}
.service-stages .additional-number-stage-gallery svg {
  width: 32px;
  height: 32px;
}
.service-stages .additional-number-stage-gallery span {
  right: 16px;
  bottom: 16px;
}

@media screen and (max-width: 1680px) {
  .service-stages {
    margin: 64px 0;
  }
  .service-stages .service-stages-inner {
    gap: 48px 64px;
  }
  .service-stages .single-stage {
    padding: 24px 32px 48px;
  }
  .service-stages .service-stages-gallery.service-stages-gallery-with-stages {
    width: calc(100% - 555px - 64px);
  }
}
@media screen and (max-width: 1280px) {
  .service-stages {
    margin: 48px 0;
  }
  .service-stages .service-stages-title {
    margin-bottom: 32px;
  }
  .service-stages .service-stages-inner {
    gap: 48px;
  }
  .service-stages .service-stages-list:not(.service-stages-list-with-gallery) .single-stage {
    width: calc(50% - 16px);
  }
  .service-stages .service-stages-list:not(.service-stages-list-with-gallery) .single-stage:nth-last-of-type(1):nth-of-type(odd) {
    width: 100%;
  }
  .service-stages .service-stages-list.service-stages-list-with-gallery {
    width: 420px;
  }
  .service-stages .service-stages-list.service-stages-list-with-gallery .service-stages-list-inner {
    gap: 32px;
  }
  .service-stages .service-stages-gallery.service-stages-gallery-with-stages {
    width: calc(100% - 420px - 48px);
  }
}
@media screen and (max-width: 1024px) {
  .service-stages .service-stages-list.service-stages-list-with-gallery, .service-stages .service-stages-gallery.service-stages-gallery-with-stages {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .service-stages .service-stages-list:not(.service-stages-list-with-gallery) .single-stage {
    width: 100%;
  }
  .service-stages .service-stages-gallery:not(.service-stages-gallery-with-stages) {
    width: 100%;
  }
  .service-stages .service-stages-gallery:not(.service-stages-gallery-with-stages) .single-stage-image {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .service-stages .service-stages-title {
    margin-bottom: 24px;
  }
  .service-stages .service-stages-list {
    gap: 24px !important;
  }
  .service-stages .single-stage {
    padding: 16px;
  }
  .service-stages .service-stages-gallery-inner {
    gap: 12px;
  }
  .service-stages .single-stage-image {
    width: calc(50% - 6px) !important;
  }
}
.service-comparison-wrapper {
  margin-top: 96px;
}
.service-comparison-wrapper .service-comparison-title-wrapper {
  margin-bottom: 48px;
}
.service-comparison-wrapper .service-comparison {
  background: linear-gradient(to right, #F8F5EB 0%, #F8F5EB 50%, #E5E5E5 50%, #E5E5E5 100%);
}
.service-comparison-wrapper .service-comparison-main, .service-comparison-wrapper .service-comparison-secondary-wrapper, .service-comparison-wrapper .service-comparison-secondary {
  width: 50%;
}
.service-comparison-wrapper .service-comparison-main, .service-comparison-wrapper .service-comparison-secondary {
  padding-top: 64px;
  padding-bottom: 64px;
}
.service-comparison-wrapper .service-comparison-main {
  background-color: #F8F5EB;
  padding-right: 32px;
}
.service-comparison-wrapper .service-comparison-secondary:nth-of-type(1) {
  background-color: #F0F0F0;
  padding-left: 32px;
  padding-right: 32px;
}
.service-comparison-wrapper .service-comparison-secondary:nth-of-type(2) {
  padding-left: 32px;
  background-color: #E5E5E5;
}
.service-comparison-wrapper .comparison-title {
  margin-bottom: 40px;
}
.service-comparison-wrapper .comparison-image-wrapper, .service-comparison-wrapper .comparison-image {
  margin-bottom: 80px;
}
.service-comparison-wrapper .comparison-image img, .service-comparison-wrapper .comparison-logo img {
  height: 100px;
  object-position: left bottom;
}
.service-comparison-wrapper .comparison-image-wrapper {
  gap: 32px;
}
.service-comparison-wrapper .comparison-image-wrapper .comparison-image {
  width: 336px;
}
.service-comparison-wrapper .comparison-image-wrapper .comparison-logo {
  width: calc(100% - 336px - 32px);
}
.service-comparison-wrapper .comparison-points {
  margin-bottom: 64px;
}
.service-comparison-wrapper .single-comparison-point {
  margin-bottom: 24px;
  padding-left: 48px;
}
.service-comparison-wrapper .single-comparison-point:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #009035;
  position: absolute;
  top: -2px;
  left: 0;
}
.service-comparison-wrapper .comparison-point-disabled:before {
  background-color: #D8D9D8;
}

@media screen and (max-width: 1680px) {
  .service-comparison-wrapper {
    margin-top: 64px;
  }
  .service-comparison-wrapper .comparison-image-wrapper, .service-comparison-wrapper .comparison-image {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1280px) {
  .service-comparison-wrapper {
    margin-top: 48px;
  }
  .service-comparison-wrapper .service-comparison-inner {
    width: calc(100% + 64px);
    margin: 0 -32px;
  }
  .service-comparison-wrapper .service-comparison {
    background: none;
  }
  .service-comparison-wrapper .service-comparison-main, .service-comparison-wrapper .service-comparison-secondary-wrapper {
    width: 100%;
  }
  .service-comparison-wrapper .service-comparison-main, .service-comparison-wrapper .service-comparison-secondary {
    padding: 32px !important;
  }
  .service-comparison-wrapper .comparison-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .service-comparison-wrapper .service-comparison-title-wrapper, .service-comparison-wrapper .comparison-image-wrapper, .service-comparison-wrapper .comparison-image, .service-comparison-wrapper .comparison-points {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .service-comparison-wrapper .service-comparison-secondary {
    width: 100%;
  }
  .service-comparison-wrapper .comparison-image-wrapper .comparison-image {
    width: 100%;
  }
  .service-comparison-wrapper .comparison-image-wrapper .comparison-logo {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .service-comparison-wrapper .service-comparison-inner {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
  .service-comparison-wrapper .service-comparison-main, .service-comparison-wrapper .service-comparison-secondary {
    padding: 32px 16px !important;
  }
}
.common-dropdown {
  gap: 12px;
}
.common-dropdown .common-dropdown-link {
  gap: 12px;
  color: #151716;
}
.common-dropdown .common-dropdown-link:hover {
  color: #009035;
}
.common-dropdown .common-dropdown-link svg {
  width: 13px;
  height: 7px;
}
.common-dropdown .common-dropdown-link svg path {
  transition: all 0.2s linear;
  fill: #4F5150;
}
.common-dropdown .common-dropdown-link.active {
  color: #009035;
}
.common-dropdown .common-dropdown-list {
  top: calc(100% + 8px);
  right: 0;
  max-width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  z-index: 1;
  display: none;
}
.common-dropdown .common-dropdown-value {
  color: #151716;
  padding: 6px 12px;
  display: block;
  text-align: center;
}
.common-dropdown .common-dropdown-value:hover {
  color: #fff;
  background-color: #009035;
}
.common-dropdown .common-dropdown-value.active {
  color: #fff;
  background-color: #009035;
}

.common-modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 64px 64px 84px;
  top: 0;
  left: 0;
  z-index: 1023;
  visibility: hidden;
  opacity: 0;
}
.common-modal::-webkit-scrollbar {
  width: 0;
}
.common-modal::-webkit-scrollbar-track {
  background-color: transparent;
}
.common-modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.common-modal .common-modal-content {
  margin: 0 auto;
}

.common-modal-cross {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
.common-modal-cross svg {
  width: 21px;
  height: 21px;
}
.common-modal-cross svg path {
  fill: #A9BEB1;
  transition: all 0.2s linear;
}
.common-modal-cross:hover svg {
  animation: rotating 0.5s linear;
  -webkit-animation: rotating 0.5s linear;
}
.common-modal-cross:hover svg path {
  fill: #009035;
}

@media screen and (max-width: 1024px) {
  .common-modal {
    padding: 48px 32px;
  }
}
@media screen and (max-width: 600px) {
  .common-modal {
    padding: 48px 16px;
  }
  .common-modal-cross {
    top: 12px;
    right: 12px;
  }
}
.training-modal .training-modal-content {
  max-width: 748px;
}
.training-modal .training-modal-form {
  padding: 48px;
}
.training-modal .training-modal-form-title {
  margin-bottom: 32px;
}
.training-modal .inputs-wrapper-company {
  margin-bottom: 36px;
}

.training-modal-visible {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1280px) {
  .training-modal .training-modal-form {
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .training-modal .training-modal-form {
    padding: 24px 16px;
  }
}
.common-form .common-form-final {
  gap: 32px;
}
.common-form .common-form-preloader {
  width: 24px;
  height: 24px;
  right: calc(100% + 12px);
  top: calc(50% - 12px);
  display: none;
}
.common-form .common-form-preloader-reversed {
  right: auto;
  left: calc(100% + 12px);
}
.common-form .common-submit-wrapper {
  margin-left: auto;
}
.common-form .inputs-wrapper {
  margin-bottom: 24px;
  gap: 24px;
}
.common-form .single-input {
  width: calc(50% - 12px);
}
.common-form .single-input-bigger {
  width: calc(66.66% - 12px);
}
.common-form .single-input-smaller {
  width: calc(33.33% - 12px);
}
.common-form .common-type-checkboxes {
  gap: 16px 40px;
}

@media screen and (max-width: 1680px) {
  .common-form .common-type-checkboxes {
    gap: 16px 32px;
  }
}
@media screen and (max-width: 500px) {
  .common-form .single-input {
    width: 100% !important;
  }
}
.login-popup, .login-darkness {
  opacity: 0;
  visibility: hidden;
}

.login-popup.active {
  opacity: 1;
  visibility: visible;
}
.login-popup.active ~ .login-darkness {
  opacity: 1;
  visibility: visible;
}

.login-popup {
  width: 347px;
  padding: 40px 48px;
  z-index: 2;
  top: calc(100% + 8px);
  right: 0;
  border: 1px solid #B0CCB2;
}
.login-popup .login-popup-close {
  top: 12px;
  right: 12px;
}
.login-popup .login-popup-close:hover svg {
  animation: rotating 0.5s linear;
  -webkit-animation: rotating 0.5s linear;
}
.login-popup .login-popup-close svg {
  width: 21px;
  height: 21px;
}
.login-popup .login-popup-close svg path {
  fill: #A9BEB1;
}
.login-popup .login-popup-form-title {
  margin-bottom: 32px;
}
.login-popup .login-popup-inputs, .login-popup .single-input {
  margin-bottom: 12px;
}
.login-popup .reset-password-toggle-wrapper {
  margin-bottom: 20px;
}
.login-popup .reset-password-toggle {
  font-size: 13px;
  line-height: 16px;
}
.login-popup .login-popup-form-preloader {
  width: 24px;
  height: 24px;
  left: calc(100% + 12px);
  top: calc(50% - 12px);
  display: none;
}
.login-popup .login-popup-additional {
  padding-top: 32px;
}
.login-popup .login-popup-additional-title {
  margin-bottom: 12px;
}
.login-popup .popup-reset-password-warning-no-users-with-such-email {
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 10px;
  line-height: 12px;
  white-space: nowrap;
  color: #D80037;
  display: none;
}
.login-popup .login-popup-reset-password-form-success .success-image {
  margin-bottom: 12px;
}
.login-popup .login-popup-reset-password-form-success .success-image svg {
  width: 100px;
  height: 100px;
}
.login-popup .login-popup-reset-password-form-success .success-content > p, .login-popup .login-popup-reset-password-form-success .success-content > ul li, .login-popup .login-popup-reset-password-form-success .success-content > p > strong, .login-popup .login-popup-reset-password-form-success .success-content > ul li > strong, .login-popup .login-popup-reset-password-form-success .success-content > p > b, .login-popup .login-popup-reset-password-form-success .success-content > ul li > b, .login-popup .login-popup-reset-password-form-success .success-content > p > i, .login-popup .login-popup-reset-password-form-success .success-content > ul li > i, .login-popup .login-popup-reset-password-form-success .success-content > p > em, .login-popup .login-popup-reset-password-form-success .success-content > ul li > em, .login-popup .login-popup-reset-password-form-success .success-content > p > strong > i, .login-popup .login-popup-reset-password-form-success .success-content > ul li > strong > i, .login-popup .login-popup-reset-password-form-success .success-content > p > strong > em, .login-popup .login-popup-reset-password-form-success .success-content > ul li > strong > em, .login-popup .login-popup-reset-password-form-success .success-content > p > b > i, .login-popup .login-popup-reset-password-form-success .success-content > ul li > b > i, .login-popup .login-popup-reset-password-form-success .success-content > p > b > em, .login-popup .login-popup-reset-password-form-success .success-content > ul li > b > em, .login-popup .login-popup-reset-password-form-success .success-content > p > i > strong, .login-popup .login-popup-reset-password-form-success .success-content > ul li > i > strong, .login-popup .login-popup-reset-password-form-success .success-content > p > i > b, .login-popup .login-popup-reset-password-form-success .success-content > ul li > i > b, .login-popup .login-popup-reset-password-form-success .success-content > p > em > strong, .login-popup .login-popup-reset-password-form-success .success-content > ul li > em > strong, .login-popup .login-popup-reset-password-form-success .success-content > p > em > b .login-popup .login-popup-reset-password-form-success .success-content > ul li > em > b {
  font-size: 14px;
  line-height: 22px;
}

.login-darkness {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .login-popup {
    width: 320px;
    padding: 32px;
  }
  .login-popup .login-popup-form-title {
    margin-bottom: 24px;
  }
  .login-popup .login-popup-additional {
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .login-popup {
    right: auto;
    left: calc(50% - 160px);
  }
}
@media screen and (max-width: 500px) {
  .login-popup {
    width: 100%;
    top: calc(100% - 16px);
    left: 0;
    padding: 32px 16px;
  }
}
.checkout-process-indicator {
  margin: 80px 0 64px;
}
.checkout-process-indicator .checkout-process-indicator-step {
  height: 5px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  background-color: #B8BEAE;
}
.checkout-process-indicator .checkout-process-indicator-step.active {
  background-color: #009035;
}
.checkout-process-indicator .checkout-process-indicator-step-circle {
  width: 36px;
  height: 36px;
  background-color: #B8BEAE;
  top: -15.5px;
}
.checkout-process-indicator .checkout-process-indicator-step-circle.passed .checkout-process-indicator-step-title, .checkout-process-indicator .checkout-process-indicator-step-circle.active .checkout-process-indicator-step-title {
  color: #151716;
}
.checkout-process-indicator .checkout-process-indicator-step-circle.passed {
  background-color: #009035;
}
.checkout-process-indicator .checkout-process-indicator-step-circle.active {
  background-color: #FFD020;
}
.checkout-process-indicator .checkout-process-indicator-step-circle:nth-of-type(1) .checkout-process-indicator-step-title {
  left: 0;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.checkout-process-indicator .checkout-process-indicator-step-circle:nth-last-of-type(1) .checkout-process-indicator-step-title {
  left: auto;
  right: 0;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.checkout-process-indicator .checkout-process-indicator-step-circle-common {
  width: 56px;
  height: 56px;
  background-color: #fff;
  top: -25.5px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-common svg, .checkout-process-indicator .checkout-process-indicator-step-circle-common img {
  width: 31px;
  height: 31px;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-common .checkout-process-indicator-step-title {
  top: -32px;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-success {
  border: 2px solid #009035;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-success .checkout-process-indicator-step-title {
  color: #009035;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-fail {
  border: 2px solid #D80037;
}
.checkout-process-indicator .checkout-process-indicator-step-circle-fail .checkout-process-indicator-step-title {
  color: #D80037;
}
.checkout-process-indicator .checkout-process-indicator-step-title {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  color: #B8BEAE;
}

@media screen and (max-width: 1280px) {
  .checkout-process-indicator {
    margin: 64px 0 48px;
  }
  .checkout-process-indicator .checkout-process-indicator-step-circle-common {
    width: 36px;
    height: 36px;
    top: -15.5px;
  }
  .checkout-process-indicator .checkout-process-indicator-step-circle-common svg {
    width: 24px;
    height: 24px;
  }
  .checkout-process-indicator .checkout-process-indicator-step-circle-success {
    border: 1px solid #009035;
  }
  .checkout-process-indicator .checkout-process-indicator-step-circle-fail {
    border: 1px solid #D80037;
  }
  .checkout-process-indicator .checkout-process-indicator-step-title {
    top: -32px;
  }
}
@media screen and (max-width: 767px) {
  .checkout-process-indicator {
    margin: 32px 0 48px;
  }
  .checkout-process-indicator .checkout-process-indicator-inner {
    display: block !important;
    margin-left: 15.5px;
  }
  .checkout-process-indicator .checkout-process-indicator-step {
    width: 5px;
    height: 72px;
  }
  .checkout-process-indicator .checkout-process-indicator-circles {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .checkout-process-indicator .checkout-process-indicator-step-circle {
    top: auto !important;
    left: -15.5px !important;
  }
  .checkout-process-indicator .checkout-process-indicator-step-title {
    top: calc(50% - 12px) !important;
    left: calc(100% + 16px) !important;
    right: auto !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
  }
}
.checkout-process-wrapper {
  margin-bottom: 96px;
}

.checkout-process {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 48px;
}

.checkout-process-main {
  width: calc(100% - 437px - 48px);
}

.checkout-process-main-limited {
  max-width: 740px;
}

.checkout-process-summary {
  width: 437px;
}
.checkout-process-summary .checkout-process-summary-inner {
  border-radius: 10px;
  border: 1px solid #009035;
  background-color: #F2F2F2;
  padding: 32px 32px 40px;
}
.checkout-process-summary .checkout-process-summary-title {
  font-size: 17px;
  line-height: 21px;
}
.checkout-process-summary .checkout-process-summary-title, .checkout-process-summary .checkout-process-summary-totals {
  margin-bottom: 24px;
}
.checkout-process-summary .checkout-process-summary-rows, .checkout-process-summary .summary-checkbox {
  margin-bottom: 20px;
}
.checkout-process-summary .checkout-process-summary-row, .checkout-process-summary .checkout-process-summary-totals {
  border-bottom: 1px solid #fff;
}
.checkout-process-summary .checkout-process-summary-row {
  padding: 16px 0;
  gap: 4px 10px;
}
.checkout-process-summary .checkout-process-summary-row-title {
  font-size: 14px;
  line-height: 17px;
}
.checkout-process-summary .checkout-process-summary-row-value {
  font-size: 12px;
  line-height: 17px;
}
.checkout-process-summary .checkout-process-summary-totals {
  padding-bottom: 20px;
}
.checkout-process-summary .checkout-process-summary-total {
  font-size: 14px;
  line-height: 25px;
  gap: 10px;
}
.checkout-process-summary .checkout-process-summary-checkboxes {
  margin-bottom: 32px;
}
.checkout-process-summary .checkout-process-summary-preloader {
  top: calc(100% + 8px);
  left: calc(50% - 40px);
}
.checkout-process-summary .testers-min-warning, .checkout-process-summary .customer-fields-warning, .checkout-process-summary .summary-form-warning {
  display: none;
  padding-top: 8px;
  color: #D80037;
}
.checkout-process-summary .delivery-free-label {
  color: #009035 !important;
}

@media screen and (max-width: 1680px) {
  .checkout-process-wrapper {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1488px) {
  .checkout-process-main, .checkout-process-summary {
    width: 100%;
  }
  .checkout-process-main-limited {
    max-width: none;
  }
  .checkout-process-summary-submit {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  .checkout-process-wrapper {
    margin-bottom: 48px;
  }
  .checkout-process {
    gap: 32px;
  }
  .checkout-process-summary .checkout-process-summary-inner {
    padding: 24px 24px 32px;
  }
  .checkout-process-summary .checkout-process-summary-totals {
    padding-bottom: 16px;
  }
  .checkout-process-summary .checkout-process-summary-checkboxes {
    margin-bottom: 24px;
  }
  .checkout-process-summary .checkout-process-summary-title, .checkout-process-summary .checkout-process-summary-rows, .checkout-process-summary .summary-checkbox {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  .checkout-process-summary .checkout-process-summary-inner {
    padding: 24px 16px 32px;
  }
}
.product-testers {
  margin-bottom: 24px;
  background-color: #E7EAE1;
  border-radius: 10px;
}
.product-testers .product-testers-toggle {
  padding: 24px;
  gap: 12px 32px;
}
.product-testers .product-testers-toggle:hover .testers-toggle-main svg path {
  fill: #009035;
}
.product-testers .product-testers-toggle:hover .testers-toggle-main span {
  color: #151716;
}
.product-testers .active.product-testers-toggle .testers-toggle-main svg path {
  fill: #009035;
}
.product-testers .active.product-testers-toggle .testers-toggle-main span {
  color: #151716;
}
.product-testers .active.product-testers-toggle .testers-toggle-status-opened {
  display: flex !important;
  display: -webkit-flex !important;
}
.product-testers .active.product-testers-toggle .testers-toggle-status-closed {
  display: none !important;
}
.product-testers .product-testers-toggle:not(.active) .testers-toggle-status-opened {
  display: none !important;
}
.product-testers .product-testers-toggle:not(.active) .testers-toggle-status-closed {
  display: flex !important;
  display: -webkit-flex !important;
}
.product-testers .testers-toggle-main {
  gap: 20px;
}
.product-testers .testers-toggle-main svg {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  width: 21px;
  height: 21px;
}
.product-testers .testers-toggle-main svg path {
  fill: #9EA78D;
  transition: all 0.2s linear;
}
.product-testers .testers-toggle-main span {
  font-size: 14px;
  line-height: 17px;
  font-family: FontSemiBold;
  color: #656C59;
  transition: all 0.2s linear;
}
.product-testers .testers-toggle-status {
  margin-left: auto;
}
.product-testers .testers-toggle-status-inner {
  gap: 10px;
}
.product-testers .testers-toggle-status-text {
  font-size: 13px;
  line-height: 16px;
}
.product-testers .testers-toggle-status-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.product-testers .product-testers-list {
  display: none;
  padding: 0 12px 16px 24px;
}
.product-testers .product-testers-list-inner {
  padding-right: 9px;
  scrollbar-gutter: stable;
  max-height: 449px;
}
.product-testers .product-testers-list-inner::-webkit-scrollbar {
  width: 3px;
}
.product-testers .product-testers-list-inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.product-testers .product-testers-list-inner::-webkit-scrollbar-thumb {
  background-color: #009035;
  border-radius: 20px;
}
.product-testers .product-testers-messages {
  margin: 0 12px 16px 0;
}
.product-testers .product-testers-messages > *:first-child {
  padding-top: 0 !important;
}
.product-testers .product-testers-warning {
  color: #D80037;
}
.product-testers .product-tester-added-success {
  padding-top: 8px;
  display: none;
}
.product-testers .product-tester-added-success-inner {
  background-color: #FFD020;
  gap: 8px 16px;
  padding: 8px;
  border-radius: 5px;
}
.product-testers .product-tester-added-success-inner svg {
  width: 18px;
  height: 18px;
}
.product-testers .product-tester-added-success-inner a:hover {
  color: #151716;
}
.product-testers .product-tester-added-success-title {
  gap: 4px;
}
.product-testers .single-product-tester {
  gap: 8px 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #009035;
}
.product-testers .single-product-tester:nth-last-of-type(1) {
  border-bottom: none;
}
.product-testers .product-tester-main {
  gap: 16px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.product-testers .product-tester-image {
  width: 57px;
  height: 57px;
  padding: 6px;
  border: 1px solid #B8BEAE;
  border-radius: 10px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.product-testers .product-tester-info {
  gap: 8px;
}
.product-testers .product-tester-variation-image {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.product-testers .product-tester-quantity, .product-testers .product-tester-price, .product-testers .product-tester-add-to-basket-wrapper {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.product-testers .product-tester-quantity .product-quantity {
  gap: 5px;
}
.product-testers .product-tester-quantity .quantity-button-wrapper .quantity-button {
  width: 26px;
  height: 26px;
}
.product-testers .product-tester-quantity .quantity-button-wrapper .quantity-button svg {
  width: 12px;
  height: 12px;
}
.product-testers .product-tester-quantity .quantity-input-wrapper input {
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 19px;
}
.product-testers .product-tester-price {
  font-size: 15px;
  line-height: 18px;
  width: 60px;
}
.product-testers .product-tester-add-to-basket {
  font-size: 14px;
  line-height: 17px;
  padding: 6px 14px 7px;
  border-radius: 50px;
  gap: 8px;
  font-family: FontSemiBoldAdditional;
}
.product-testers .product-tester-add-to-basket svg {
  position: relative;
  top: 1px;
  width: 13px;
  height: 13px;
}
.product-testers .product-tester-add-to-basket svg path {
  fill: #fff;
  transition: all 0.2s linear;
}
.product-testers .product-tester-add-to-basket:hover svg path {
  fill: #151716;
}
.product-testers .product-tester-add-to-basket-preloader {
  width: 12px;
  height: 12px;
  top: calc(50% - 5.5px);
  right: calc(100% + 2.5px);
  display: none;
}

@media screen and (max-width: 1366px) {
  .product-testers .single-product-tester {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .product-testers .product-tester-main {
    width: calc(100% - 16px - 92px);
  }
  .product-testers .product-tester-price {
    margin-left: auto;
  }
  .product-testers .product-testers-list-inner {
    max-height: 395px;
  }
}
@media screen and (max-width: 500px) {
  .product-testers .product-testers-toggle {
    padding: 16px;
  }
  .product-testers .testers-toggle-main {
    gap: 12px;
  }
  .product-testers .product-testers-list {
    padding: 0 8px 16px 16px;
  }
  .product-testers .product-testers-list-inner {
    padding-right: 5px;
    max-height: 371px;
  }
  .product-testers .product-testers-warning {
    margin: 0 8px 12px 0;
  }
  .product-testers .single-product-tester {
    padding: 12px 0;
  }
}
.default-underline-link {
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  font-family: FontSemiBold;
  color: #151716;
  position: relative;
}
.default-underline-link:before {
  content: "";
  background-color: #009035;
  height: 2px;
  width: 100%;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  pointer-events: none;
}
.default-underline-link:hover {
  color: #009035;
}
.default-underline-link:hover:before {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

.default-underline-link-white {
  color: #fff;
}
.default-underline-link-white:before {
  background-color: #fff;
}
.default-underline-link-white:hover:before {
  background-color: #009035;
}

.simple-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.simple-underline:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.search-highlight {
  background-color: #009035;
  color: #fff;
}

.ui-datepicker-next, .ui-datepicker-prev {
  top: 3.5px !important;
  transition: all 0.2s linear !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
  background: #ededed !important;
  font-weight: normal !important;
  color: #2b2b2b !important;
}
.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
  border: 1px solid #ccc !important;
}
.ui-datepicker-next .ui-icon, .ui-datepicker-prev .ui-icon {
  background-size: 16px 16px !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}

.ui-datepicker-next {
  right: 2px !important;
}
.ui-datepicker-next .ui-icon {
  background-image: url("../../images/chevron-black-right.svg") !important;
}

.ui-datepicker-prev {
  left: 2px !important;
}
.ui-datepicker-prev .ui-icon {
  background-image: url("../../images/chevron-black-left.svg") !important;
}

.ui-state-highlight {
  border: 1px solid #c5c5c5 !important;
  background: #FFD020 !important;
  color: #000 !important;
}

.ui-state-active {
  border: 1px solid #c5c5c5 !important;
  background: #009035 !important;
  color: #fff !important;
}

.checkout-process-preloader {
  position: absolute;
  object-fit: contain;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
  width: 24px;
  height: 24px;
  left: calc(100% + 12px);
  top: calc(50% - 12px);
  display: none;
}

.sound-icon-wrapper {
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  right: 32px;
  bottom: 24px;
  z-index: 1;
  transition: all 0.2s linear;
  cursor: pointer;
}
.sound-icon-wrapper svg path {
  fill: #fff;
}
.sound-icon-wrapper span {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}

.sound-icon-on {
  background-color: rgba(0, 144, 53, 0.4);
  display: inline-flex;
  display: -webkit-inline-flex;
}
.sound-icon-on:hover {
  background-color: #009035;
}
.sound-icon-on svg {
  width: 20px;
  height: 20px;
}

.sound-icon-off {
  background-color: rgba(29, 48, 36, 0.4);
  display: none;
}
.sound-icon-off:hover {
  background-color: #1D3024;
}
.sound-icon-off svg {
  width: 17px;
  height: 20px;
}

.media-video-wrapper.sound-on .sound-icon-on {
  display: none;
}
.media-video-wrapper.sound-on .sound-icon-off {
  display: inline-flex;
  display: -webkit-inline-flex;
}

.video-impact-gradient.sound-on {
  display: none;
}

.home-page .home-hero .home-hero-carousel .slick-track {
  display: block;
}
.home-page .home-hero .home-hero-carousel .slick-dots {
  position: absolute;
  bottom: 48px;
  right: calc((100% - 1512px) / 2 + 32px);
  gap: 30px;
}
.home-page .home-hero .home-hero-carousel .slick-dots li button {
  background-color: #B0CCB2;
  width: 11px;
  height: 11px;
  position: relative;
}
.home-page .home-hero .home-hero-carousel .slick-dots li button:before {
  content: "";
  width: 29px;
  height: 29px;
  border: 1px solid #009035;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.home-page .home-hero .home-hero-carousel .slick-dots li button:hover {
  background-color: #fff;
}
.home-page .home-hero .home-hero-carousel .slick-dots li button:hover:before {
  opacity: 1;
  visibility: visible;
}
.home-page .home-hero .home-hero-carousel .slick-dots .slick-active button {
  background-color: #fff;
}
.home-page .home-hero .home-hero-carousel .slick-dots .slick-active button:before {
  opacity: 1;
  visibility: visible;
}
.home-page .home-hero .home-hero-slide-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25%, #151716 100%);
}
.home-page .home-hero .home-hero-slide-inner {
  min-height: 560px;
}
.home-page .home-hero .home-hero-slide-content {
  padding: 64px 0;
}
.home-page .home-hero .home-hero-slide-icon, .home-page .home-hero .home-hero-slide-title {
  margin-bottom: 20px;
}
.home-page .home-hero .home-hero-slide-icon img {
  width: 40px;
  height: 40px;
}
.home-page .home-hero .home-hero-slide-main {
  margin-bottom: 40px;
}
.home-page .home-hero .home-hero-slide-title {
  max-width: 780px;
}
.home-page .home-hero .home-hero-slide-subtext {
  max-width: 655px;
}
.home-page .home-products .home-products-main {
  margin-bottom: 48px;
  gap: 16px;
}
.home-page .home-products .home-products-title {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.home-page .home-products .home-products-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-left: auto;
}
.home-page .home-products .home-product-categories {
  margin-bottom: 48px;
  gap: 24px;
}
.home-page .home-products .home-product-category a {
  background-color: #009035;
  gap: 16px;
  padding: 11px 19px;
}
.home-page .home-products .home-product-category a img {
  width: 20px;
  height: 20px;
}
.home-page .home-products .home-product-category a span {
  font-size: 16px;
  line-height: 19px;
  font-family: FontSemiBold;
  color: #fff;
}
.home-page .home-products .home-product-category a:hover {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.home-page .home-products .home-product-discount-category a {
  background-color: #E1003B;
}
.home-page .home-products .home-product-discount-category a span {
  color: #fff;
}
.home-page .home-products .home-products-list {
  gap: 24px;
}
.home-page .home-products .home-products-list .single-product {
  width: calc((100% - 72px) / 4.001);
}
.home-page .home-blog .main-section {
  align-items: flex-end !important;
  -webkit-align-items: flex-end !important;
}
.home-page .home-blog .main-section-button {
  position: relative;
  top: -4px;
}
.home-page .home-blog .slick-list {
  padding: 16px 0;
  width: calc(100% + 24px);
  margin: 0 -12px;
}
.home-page .home-blog .slick-slide {
  padding: 0 12px;
}
.home-page .home-solutions .home-solutions-main {
  gap: 64px;
  margin-bottom: 48px;
}
.home-page .home-solutions .home-solutions-title {
  width: 400px;
}
.home-page .home-solutions .home-solutions-wysiwyg {
  width: calc(100% - 400px - 64px);
  max-width: 730px;
}
.home-page .home-solutions .home-solutions-list {
  gap: 80px;
}
.home-page .home-solutions .single-solution {
  width: calc((100% - 240px) / 4.001);
}
.home-page .home-solutions .single-solution-link {
  padding: 48px 32px 80px;
  background-color: #009035;
}
.home-page .home-solutions .single-solution-link:hover {
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.home-page .home-solutions .solution-icon {
  margin-bottom: 40px;
}
.home-page .home-solutions .solution-icon img {
  width: 112px;
  height: 112px;
}
.home-page .home-solutions .solution-title {
  color: #fff;
}
.home-page .home-partners .home-partners-info, .home-page .home-partners .home-partners-main {
  margin-bottom: 32px;
}
.home-page .home-partners .home-partners-title {
  margin-bottom: 16px;
}
.home-page .home-partners .home-partners-wysiwyg {
  max-width: 975px;
}
.home-page .home-partners .home-partners {
  gap: 20px;
}
.home-page .home-partners .single-partner {
  width: calc((100% - 100px) / 6.001);
}
.home-page .home-partners .single-partner-styling {
  border: 1px solid #B8BEAE;
  height: 100px;
  padding: 20px;
}
.home-page .home-partners a.single-partner-styling:hover {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1680px) {
  .home-page .home-solutions .home-solutions-main {
    gap: 48px;
  }
  .home-page .home-solutions .home-solutions-wysiwyg {
    width: calc(100% - 400px - 48px);
  }
  .home-page .home-solutions .home-solutions-list {
    gap: 40px;
  }
  .home-page .home-solutions .single-solution {
    width: calc((100% - 120px) / 4.001);
  }
  .home-page .home-solutions .single-solution-link {
    padding: 48px 24px 64px;
  }
}
@media screen and (max-width: 1520px) {
  .home-page .home-hero .home-hero-carousel .slick-dots {
    right: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .home-page .home-hero .home-hero-carousel .slick-dots {
    bottom: 32px;
  }
  .home-page .home-hero .home-hero-slide-inner {
    min-height: 448px;
  }
  .home-page .home-hero .home-hero-slide-content {
    padding: 48px 0;
  }
  .home-page .home-hero .home-hero-slide-icon, .home-page .home-hero .home-hero-slide-title {
    margin-bottom: 16px;
  }
  .home-page .home-hero .home-hero-slide-main {
    margin-bottom: 32px;
  }
  .home-page .home-products .home-products-main, .home-page .home-products .home-product-categories {
    margin-bottom: 32px;
  }
  .home-page .home-blog .main-section {
    margin-bottom: 16px;
  }
  .home-page .home-solutions .home-solutions-main {
    gap: 32px;
    margin-bottom: 32px;
  }
  .home-page .home-solutions .home-solutions-wysiwyg {
    width: calc(100% - 400px - 32px);
  }
  .home-page .home-solutions .home-solutions-list {
    gap: 32px;
  }
  .home-page .home-solutions .single-solution {
    width: calc((100% - 96px) / 4.001);
  }
  .home-page .home-solutions .single-solution-link {
    padding: 32px 24px 48px;
  }
  .home-page .home-solutions .solution-icon {
    margin-bottom: 32px;
  }
  .home-page .home-partners .home-partners {
    gap: 16px;
  }
  .home-page .home-partners .single-partner {
    width: calc((100% - 48px) / 4.001);
  }
  .home-page .home-partners .single-partner-styling {
    padding: 16px;
  }
}
@media screen and (max-width: 1271px) {
  .home-page .home-products .home-products-list .single-product {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 1024px) {
  .home-page .home-products .home-products-main {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .home-page .main-section-button {
    top: auto;
  }
  .home-page .home-solutions .single-solution {
    width: calc(50% - 16px);
  }
  .home-page .home-solutions .home-solutions-main {
    gap: 16px;
  }
  .home-page .home-solutions .home-solutions-title, .home-page .home-solutions .home-solutions-wysiwyg {
    width: 100%;
  }
  .home-page .home-solutions .home-solutions-wysiwyg {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .home-page .home-hero .home-hero-carousel .slick-dots {
    right: 24px;
    bottom: 20px;
  }
  .home-page .home-hero .home-hero-slide-inner {
    min-height: 0;
  }
  .home-page .home-products .home-products-list .single-product {
    width: 100%;
  }
  .home-page .home-solutions .single-solution-link {
    padding: 32px;
  }
  .home-page .home-solutions .solution-icon {
    margin-bottom: 24px;
  }
  .home-page .home-partners .single-partner {
    width: calc((100% - 32px) / 3.001);
  }
}
@media screen and (max-width: 600px) {
  .home-page .home-products .home-product-categories {
    gap: 16px;
  }
  .home-page .home-products .home-product-category {
    width: 100%;
  }
  .home-page .home-products .home-product-category a {
    justify-content: center;
    -webkit-align-content: center;
  }
}
@media screen and (max-width: 500px) {
  .home-page .home-solutions .single-solution {
    width: 100%;
  }
  .home-page .home-solutions .single-solution-link {
    padding: 32px 16px;
  }
  .home-page .home-partners .single-partner {
    width: calc(50% - 8px);
  }
}
.single-page .added-to-basket-success-wrapper {
  display: none;
  margin-bottom: 32px;
}
.single-page .added-to-basket-success {
  padding: 16px 24px;
  gap: 16px 24px;
  background-color: #D4EDDD;
}
.single-page .added-to-basket-success .added-to-basket-success-main {
  gap: 12px;
}
.single-page .added-to-basket-success .added-to-basket-success-icon svg {
  width: 21px;
  height: 21px;
}
.single-page .added-to-basket-success .added-to-basket-success-title {
  font-size: 15px;
  line-height: 21px;
}
.single-page .added-to-basket-success .added-to-basket-success-button {
  margin-left: auto;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  top: -3.5px;
}
.single-page .product-main {
  margin: 0 0 96px;
}
.single-page .product-main .product-main-inner {
  gap: 32px 64px;
}
.single-page .product-main .product-images {
  width: 624px;
}
.single-page .product-main .product-main-image-wrapper {
  margin-bottom: 24px;
}
.single-page .product-main .product-discount {
  top: 16px;
  right: 16px;
  background-color: #D80037;
  width: 42px;
  height: 42px;
}
.single-page .product-main .product-discount svg {
  width: 26px;
  height: 26px;
}
.single-page .product-main .product-main-image {
  padding: 80px;
  border: 1px solid #B8BEAE;
}
.single-page .product-main .product-gallery {
  gap: 16px;
}
.single-page .product-main .single-product-gallery {
  width: calc((100% - 64px) / 5.001);
}
.single-page .product-main .product-gallery-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.single-page .product-main .additional-overlay {
  background-color: rgba(0, 144, 53, 0.5);
}
.single-page .product-main .additional-overlay svg {
  width: 32px;
  height: 32px;
}
.single-page .product-main .additional-overlay-number {
  font-size: 15px;
  line-height: 18px;
  bottom: 12px;
  right: 12px;
}
.single-page .product-main .product-data {
  width: calc(100% - 64px - 624px);
}
.single-page .product-main .product-separator {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #B8BEAE;
}
.single-page .product-main .product-head-row {
  gap: 16px;
  margin-bottom: 24px;
}
.single-page .product-main .product-code {
  font-size: 14px;
  line-height: 22px;
  color: #777771;
  margin-left: auto;
}
.single-page .product-main .product-title {
  margin-bottom: 16px;
}
.single-page .product-main .product-information-anchor {
  font-size: 13px;
  line-height: 16px;
}
.single-page .product-main .product-values-section-main {
  margin-bottom: 20px;
  gap: 12px 20px;
}
.single-page .product-main .product-values-section-title {
  font-size: 15px;
  line-height: 18px;
}
.single-page .product-main .product-values-section-warning {
  display: none;
}
.single-page .product-main .product-values-section-warning-inner {
  gap: 4px;
}
.single-page .product-main .product-values-section-warning-inner svg {
  width: 16px;
  height: 16px;
}
.single-page .product-main .product-values-section-warning-inner span {
  font-size: 13px;
  line-height: 16px;
  color: #D80037;
}
.single-page .product-main .product-values:not(.product-values-images) {
  gap: 16px;
}
.single-page .product-main .product-values:not(.product-values-images) .product-value {
  padding: 12px 16px;
  border: 1px solid #A8A8A1;
  font-size: 13px;
  line-height: 16px;
  color: #777771;
}
.single-page .product-main .product-values:not(.product-values-images) .product-value:hover {
  color: #151716;
  border: 1px solid #009035;
}
.single-page .product-main .product-values:not(.product-values-images) .product-value.selected {
  color: #151716;
  border: 1px solid #009035;
}
.single-page .product-main .product-values:not(.product-values-images) .product-value.disabled:before {
  border-radius: 50px;
}
.single-page .product-main .product-values-images {
  gap: 12px;
}
.single-page .product-main .product-values-images .product-value-wrapper:hover .product-value-popup {
  opacity: 1;
  visibility: visible;
}
.single-page .product-main .product-values-images .product-value {
  width: 58px;
  height: 58px;
}
.single-page .product-main .product-values-images .product-value:after {
  content: "";
  box-shadow: inset 0 0 0 2px #009035;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.2s linear;
  border-radius: 50%;
}
.single-page .product-main .product-values-images .product-value:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.single-page .product-main .product-values-images .product-value:hover:after {
  opacity: 1;
}
.single-page .product-main .product-values-images .product-value.selected {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.single-page .product-main .product-values-images .product-value.selected:after {
  opacity: 1;
}
.single-page .product-main .product-values-images .product-value-popup {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  padding: 4px 16px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.single-page .product-main .product-values-images .product-value-popup:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: calc(50% - 5px);
  border: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.8);
}
.single-page .product-main .product-values-images .product-value.disabled:before {
  border-radius: 50%;
}
.single-page .product-main .product-value.disabled {
  pointer-events: none;
}
.single-page .product-main .product-value.disabled:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  background-image: url("../../images/close-warning.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
}
.single-page .product-main .product-prices {
  margin-bottom: 16px;
}
.single-page .product-main .product-operations {
  gap: 12px 40px;
}
.single-page .product-main .add-to-basket {
  font-size: 16px;
  line-height: 19px;
  padding: 8px 28px 10px;
  border-radius: 50px;
  gap: 10px;
  font-family: FontSemiBoldAdditional;
}
.single-page .product-main .add-to-basket svg {
  position: relative;
  top: 1px;
  width: 17px;
  height: 17px;
}
.single-page .product-main .add-to-basket svg path {
  fill: #FFD020;
  transition: all 0.2s linear;
}
.single-page .product-main .add-to-basket:hover svg path {
  fill: #009035;
}
.single-page .product-main .add-to-basket-preloader {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(100% + 12px);
  display: none;
}
.single-page .product-information .product-information-row {
  margin-bottom: 12px;
}
.single-page .product-information .product-information-row.active .product-information-icon-minus {
  opacity: 1;
  visibility: visible;
}
.single-page .product-information .product-information-row.active .product-information-icon-plus {
  opacity: 0;
  visibility: hidden;
}
.single-page .product-information .product-information-row:not(.active) .product-information-icon-plus {
  opacity: 1;
  visibility: visible;
}
.single-page .product-information .product-information-row:not(.active) .product-information-icon-minus {
  opacity: 0;
  visibility: hidden;
}
.single-page .product-information .product-information-link {
  padding: 16px 0;
  gap: 16px;
  border-bottom: 1px solid #009035;
}
.single-page .product-information .product-information-question-inner {
  max-width: calc(100% - 35px - 16px);
}
.single-page .product-information .product-information-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.single-page .product-information .product-information-icon-inner {
  top: 0;
  left: 0;
}
.single-page .product-information .product-information-icon-inner svg {
  width: 35px;
  height: 35px;
}
.single-page .product-information .product-information-answer {
  padding: 32px 0 16px;
}
.single-page .product-information .product-information-answer:not(.product-information-answer-opened) {
  display: none;
}
.single-page .additional-products .additional-products-title {
  margin-bottom: 16px;
}

@media screen and (max-width: 1680px) {
  .single-page .product-main {
    margin: 0 0 64px;
  }
  .single-page .product-main .product-main-image {
    padding: 64px;
  }
  .single-page .product-main .product-operations {
    gap: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .single-page .product-main {
    margin: 0 0 48px;
  }
  .single-page .product-main .product-main-inner {
    gap: 32px 48px;
  }
  .single-page .product-main .product-images {
    width: 500px;
  }
  .single-page .product-main .product-main-image {
    padding: 48px;
  }
  .single-page .product-main .product-gallery {
    gap: 12px;
  }
  .single-page .product-main .single-product-gallery {
    width: calc((100% - 48px) / 5.001);
  }
  .single-page .product-main .additional-overlay svg {
    width: 24px;
    height: 24px;
  }
  .single-page .product-main .product-data {
    width: calc(100% - 48px - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .single-page .product-main .product-main-inner {
    gap: 32px;
  }
  .single-page .product-main .product-images {
    width: 300px;
  }
  .single-page .product-main .product-main-image {
    padding: 32px;
  }
  .single-page .product-main .single-product-gallery {
    width: calc((100% - 24px) / 3.001);
  }
  .single-page .product-main .single-product-gallery:nth-of-type(4), .single-page .product-main .single-product-gallery:nth-of-type(5) {
    width: calc(50% - 6px);
  }
  .single-page .product-main .single-product-gallery:nth-last-of-type(1):nth-of-type(even):nth-of-type(n+4) {
    width: 100%;
  }
  .single-page .product-main .additional-overlay svg {
    width: 32px;
    height: 32px;
  }
  .single-page .product-main .product-data {
    width: calc(100% - 32px - 300px);
  }
}
@media screen and (max-width: 767px) {
  .single-page .product-main .product-images, .single-page .product-main .product-data {
    width: 100%;
  }
  .single-page .product-main .single-product-gallery {
    width: calc((100% - 48px) / 5.001) !important;
  }
  .single-page .product-main .additional-overlay svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .single-page .successfully-added-to-basket {
    padding: 16px;
    gap: 16px;
  }
  .single-page .product-main .product-main-image {
    padding: 16px;
  }
  .single-page .product-main .product-discount {
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
  }
  .single-page .product-main .product-discount svg {
    width: 14px;
    height: 14px;
  }
  .single-page .product-main .single-product-gallery {
    width: calc((100% - 24px) / 3.001) !important;
  }
  .single-page .product-main .single-product-gallery:nth-of-type(4), .single-page .product-main .single-product-gallery:nth-of-type(5) {
    width: calc(50% - 6px) !important;
  }
  .single-page .product-main .single-product-gallery:nth-last-of-type(1):nth-of-type(even):nth-of-type(n+4) {
    width: 100% !important;
  }
  .single-page .product-main .additional-overlay svg {
    width: 32px;
    height: 32px;
  }
}
.article-page .common-categories {
  margin-bottom: 16px;
}
.article-page .article-page-title {
  margin-bottom: 24px;
  font-size: 35px;
  line-height: 42px;
}
.article-page .article-image {
  margin-bottom: 32px;
}
.article-page .article-image img {
  max-height: 500px;
}
.article-page .article-image-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, #151716 100%);
}
.article-page .article-content {
  margin-bottom: 64px;
}
.article-page .additional-articles-title {
  margin-bottom: 16px;
}
.article-page .additional-articles-carousel .slick-list {
  padding: 16px 0;
  width: calc(100% + 24px);
  margin: 0 -12px;
}
.article-page .additional-articles-carousel .slick-slide {
  padding: 0 12px;
}

@media screen and (max-width: 1280px) {
  .article-page .article-content {
    margin-bottom: 48px;
  }
}
.partners-page .partners-container {
  gap: 32px;
}
.partners-page .partners-main-title {
  margin-bottom: 32px;
}
.partners-page .partners-categories {
  width: 246px;
}
.partners-page .partners-categories-inner {
  padding: 24px 32px 40px;
  border: 1px solid #B8BEAE;
}
.partners-page .partners-categories-divider {
  height: 1px;
  background-color: #009035;
  margin: 8px 0;
}
.partners-page .single-partner-category {
  margin-bottom: 8px;
}
.partners-page .single-partner-category a {
  font-size: 15px;
  line-height: 18px;
}
.partners-page .single-partner-category a:hover {
  color: #009035;
}
.partners-page .single-partner-category .active {
  color: #009035;
}
.partners-page .partners-list {
  width: calc(100% - 246px - 32px);
}
.partners-page .single-partner, .partners-page .partner-main, .partners-page .partner-links {
  gap: 32px;
}
.partners-page .partner-main, .partners-page .partner-links {
  width: calc(50% - 16px);
}
.partners-page .single-partner {
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #B8BEAE;
}
.partners-page .partner-logo img {
  width: 160px;
}
.partners-page .partner-title {
  margin-bottom: 2px;
}
.partners-page .partner-google a {
  padding: 12px 32px;
  background-color: #656565;
  gap: 14px;
}
.partners-page .partner-google svg {
  width: 19px;
  height: 26px;
}

@media screen and (max-width: 1271px) {
  .partners-page .single-partner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .partners-page .partner-main, .partners-page .partner-links {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .partners-page .partners-categories {
    display: block !important;
  }
  .partners-page .partners-categories-toggle-wrapper {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .partners-page .partners-container {
    gap: 0;
  }
  .partners-page .partners-categories, .partners-page .partners-list {
    width: 100%;
  }
  .partners-page .partners-categories {
    display: none;
    padding-bottom: 32px;
  }
  .partners-page .partners-categories-inner {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap: 12px;
  }
  .partners-page .single-partner-category {
    margin-bottom: 0;
    width: calc((100% - 36px) / 4.001);
  }
  .partners-page .partners-categories-toggle-wrapper {
    margin-bottom: 16px;
  }
  .partners-page .partners-categories-toggle {
    gap: 12px;
  }
  .partners-page .partners-categories-toggle svg {
    width: 13px;
    height: 7px;
    transition: all 0.2s linear;
  }
  .partners-page .partners-categories-toggle svg path {
    fill: #4F5150;
    transition: all 0.2s linear;
  }
  .partners-page .partners-categories-toggle:hover span {
    color: #009035;
  }
}
@media screen and (max-width: 767px) {
  .partners-page .partners-categories-inner {
    padding: 20px 24px 32px;
  }
  .partners-page .single-partner-category {
    width: calc(50% - 6px);
  }
  .partners-page .single-partner {
    padding: 24px;
  }
}
@media screen and (max-width: 500px) {
  .partners-page .partners-categories-inner {
    padding: 16px 16px 24px;
  }
  .partners-page .single-partner, .partners-page .partner-main, .partners-page .partner-links {
    gap: 16px;
  }
  .partners-page .single-partner {
    padding: 24px 16px;
    text-align: center;
  }
  .partners-page .partner-main, .partners-page .partner-links {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .partners-page .partner-logo, .partners-page .partner-data, .partners-page .partner-website, .partners-page .partner-google {
    width: 100%;
  }
}
.about-us-page .about-us-separator {
  border-bottom: 1px solid #B0CCB2;
  margin-bottom: 64px;
  padding-bottom: 64px;
}
.about-us-page .about-us-title {
  font-size: 25px;
  line-height: 30px;
  font-family: FontBold;
  margin-bottom: 48px;
}
.about-us-page .about-us-main .about-us-main-data-wrapper {
  min-height: 471px;
  margin-bottom: 48px;
}
.about-us-page .about-us-main .about-us-main-gradient {
  background: linear-gradient(to bottom, rgba(21, 23, 22, 0.5) 0%, rgba(45, 58, 50, 0.5) 100%);
}
.about-us-page .about-us-main .about-us-main-data {
  padding: 64px 40px;
}
.about-us-page .about-us-main .about-us-main-title {
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 12px;
}
.about-us-page .about-us-values .about-us-values-list {
  gap: 32px;
}
.about-us-page .about-us-values .single-about-us-value {
  width: calc((100% - 128px) / 5.001);
}
.about-us-page .about-us-values .about-us-value {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 32px;
}
.about-us-page .about-us-documents .about-us-documents-list {
  gap: 32px;
}
.about-us-page .about-us-documents .single-document {
  width: calc((100% - 128px) / 5.001);
}
.about-us-page .about-us-documents .document-image {
  margin-bottom: 24px;
}
.about-us-page .about-us-documents .document-image a:before {
  content: "";
  display: block;
  padding-top: 142.2%;
}
.about-us-page .about-us-documents .document-image img {
  border: 1px solid #B0CCB2;
}
.about-us-page .about-us-documents .document-pdf a {
  gap: 16px;
}
.about-us-page .about-us-documents .document-pdf a:hover .document-pdf-icon svg {
  animation: scaling 0.5s linear infinite;
  -webkit-animation: scaling 0.5s linear infinite;
}
.about-us-page .about-us-documents .document-pdf .document-pdf-icon {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.about-us-page .about-us-documents .document-pdf .document-pdf-icon svg {
  width: 36px;
  height: 41px;
}
.about-us-page .about-us-principles .about-us-principles-list {
  gap: 64px;
}
.about-us-page .about-us-principles .single-principle {
  width: calc((100% - 128px) / 3.001);
}
.about-us-page .about-us-principles .principle-icon {
  margin-bottom: 32px;
}
.about-us-page .about-us-principles .principle-icon img {
  width: 68px;
  height: 68px;
}
.about-us-page .about-us-principles .principle-title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 24px;
}
.about-us-page .about-us-members {
  margin-bottom: 96px;
}
.about-us-page .about-us-members .members-section {
  margin-bottom: 64px;
}
.about-us-page .about-us-members .members-section-list {
  gap: 40px;
}
.about-us-page .about-us-members .single-member {
  width: calc((100% - 160px) / 5.001);
}
.about-us-page .about-us-members .member-image {
  margin-bottom: 32px;
}
.about-us-page .about-us-members .member-image:before {
  content: "";
  display: block;
  padding-top: 74.13%;
}
.about-us-page .about-us-members .member-main {
  margin-bottom: 24px;
}
.about-us-page .about-us-members .member-name {
  margin-bottom: 8px;
}
.about-us-page .about-us-members .member-contacts {
  margin-bottom: 24px;
}
.about-us-page .about-us-members .member-contact a:hover {
  color: #009035;
}
.about-us-page .about-us-members .member-country {
  font-size: 13px;
  line-height: 16px;
  padding: 3px 16px;
}

@media screen and (max-width: 1680px) {
  .about-us-page .about-us-principles .principle-icon img {
    width: 64px;
    height: 64px;
  }
  .about-us-page .about-us-principles .principle-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1366px) {
  .about-us-page .about-us-members .members-section-list {
    gap: 32px;
  }
  .about-us-page .about-us-members .single-member {
    width: calc((100% - 96px) / 4.001);
  }
  .about-us-page .about-us-values .about-us-value {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
  }
  .about-us-page .about-us-values .about-us-value-subtext {
    font-size: 14px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1280px) {
  .about-us-page .about-us-separator {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .about-us-page .about-us-title {
    margin-bottom: 32px;
  }
  .about-us-page .about-us-main .about-us-main-data-wrapper {
    min-height: 350px;
  }
  .about-us-page .about-us-main .about-us-main-data {
    padding: 48px 32px;
  }
  .about-us-page .about-us-documents .single-document {
    width: calc((100% - 64px) / 3.001);
  }
  .about-us-page .about-us-documents .document-image {
    margin-bottom: 16px;
  }
  .about-us-page .about-us-principles .about-us-principles-list {
    gap: 48px;
  }
  .about-us-page .about-us-principles .single-principle {
    width: calc((100% - 96px) / 3.001);
  }
  .about-us-page .about-us-principles .principle-icon {
    margin-bottom: 24px;
  }
  .about-us-page .about-us-principles .principle-title {
    margin-bottom: 16px;
  }
  .about-us-page .about-us-members {
    margin-bottom: 48px;
  }
  .about-us-page .about-us-members .members-section {
    margin-bottom: 48px;
  }
  .about-us-page .about-us-members .member-image {
    margin-bottom: 24px;
  }
  .about-us-page .about-us-members .member-name {
    font-size: 18px;
    line-height: 27px;
  }
  .about-us-page .about-us-members .member-position, .about-us-page .about-us-members .member-contacts {
    font-size: 16px;
    line-height: 19px;
  }
  .about-us-page .about-us-members .member-contact {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .about-us-page .about-us-values .single-about-us-value {
    width: calc(50% - 16px);
  }
  .about-us-page .about-us-principles .about-us-principles-list {
    gap: 32px;
  }
  .about-us-page .about-us-principles .single-principle {
    width: 100%;
  }
  .about-us-page .about-us-members .single-member {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767px) {
  .about-us-page .about-us-documents .about-us-documents-list {
    gap: 32px 24px;
  }
  .about-us-page .about-us-documents .single-document {
    width: calc(50% - 12px);
  }
  .about-us-page .about-us-members .single-member {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .about-us-page .about-us-separator {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .about-us-page .about-us-title {
    margin-bottom: 24px;
  }
  .about-us-page .about-us-documents .single-document {
    width: 100%;
  }
  .about-us-page .about-us-principles .about-us-principles-list {
    gap: 24px;
  }
  .about-us-page .about-us-principles .principle-icon {
    margin-bottom: 16px;
  }
  .about-us-page .about-us-principles .principle-title {
    margin-bottom: 12px;
  }
  .about-us-page .about-us-main .about-us-main-data-wrapper {
    margin-bottom: 32px;
  }
  .about-us-page .about-us-main .about-us-main-data {
    padding: 32px 16px;
  }
}
.services-page .services-hero {
  margin-bottom: 96px;
}
.services-page .services-hero .services-hero-inner {
  gap: 48px;
}
.services-page .services-hero .services-hero-content {
  width: 620px;
  gap: 48px;
}
.services-page .services-hero .service-hero-title {
  font-size: 27px;
  line-height: 33px;
  margin-bottom: 20px;
}
.services-page .services-hero .services-hero-media {
  width: calc(100% - 620px - 48px);
}
.services-page .services-hero .services-hero-media-inner:before {
  content: "";
  display: block;
  padding-top: 49.75%;
}
.services-page .services-list {
  background-color: #E6F0E7;
  padding: 96px 0;
}
.services-page .services-list .services-list-inner {
  gap: 32px;
}
.services-page .services-list .single-service {
  width: calc((100% - 64px) / 3.001);
  padding: 48px 48px 64px;
}
.services-page .services-list .single-service:nth-of-type(n+4) {
  padding: 48px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  gap: 64px;
}
.services-page .services-list .single-service:nth-of-type(n+4) .service-image {
  width: 357px;
  margin-bottom: 0;
}
.services-page .services-list .single-service:nth-of-type(n+4) .service-image-inner:before {
  padding-top: 79.55%;
}
.services-page .services-list .single-service:nth-of-type(n+4) .service-info {
  padding: 16px 0;
  width: calc(100% - 357px - 64px);
}
.services-page .services-list .service-image {
  margin-bottom: 48px;
}
.services-page .services-list .service-image-inner:before {
  content: "";
  display: block;
  padding-top: 56.3%;
}
.services-page .services-list .service-info {
  gap: 48px;
}
.services-page .services-list .service-main {
  margin-bottom: 48px;
}
.services-page .services-list .service-title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1680px) {
  .services-page .services-hero {
    margin-bottom: 64px;
  }
  .services-page .services-list {
    padding: 64px 0;
  }
  .services-page .services-list .single-service {
    padding: 32px 32px 48px;
  }
  .services-page .services-list .single-service:nth-of-type(n+4) {
    padding: 32px;
    gap: 48px;
  }
  .services-page .services-list .single-service:nth-of-type(n+4) .service-info {
    width: calc(100% - 357px - 48px);
  }
  .services-page .services-list .service-image {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .services-page .services-hero {
    margin-bottom: 48px;
  }
  .services-page .services-hero .services-hero-content {
    width: 500px;
    gap: 32px;
  }
  .services-page .services-hero .services-hero-media {
    width: calc(100% - 500px - 48px);
  }
  .services-page .services-list {
    padding: 48px 0;
  }
  .services-page .services-list .single-service:nth-of-type(n+4) {
    gap: 32px;
  }
  .services-page .services-list .single-service:nth-of-type(n+4) .service-info {
    width: calc(100% - 357px - 32px);
  }
  .services-page .services-list .service-image {
    margin-bottom: 24px;
  }
  .services-page .services-list .service-main {
    margin-bottom: 32px;
  }
  .services-page .services-list .service-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1180px) {
  .services-page .services-hero .services-hero-content {
    width: 420px;
  }
  .services-page .services-hero .services-hero-media {
    width: calc(100% - 420px - 48px);
  }
  .services-page .services-list .single-service {
    width: 100%;
    gap: 32px;
    padding: 32px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .services-page .services-list .single-service .service-image {
    width: 357px;
    margin-bottom: 0;
  }
  .services-page .services-list .single-service .service-image-inner:before {
    padding-top: 79.55%;
  }
  .services-page .services-list .single-service .service-info {
    padding: 16px 0;
    width: calc(100% - 357px - 32px);
  }
}
@media screen and (max-width: 1024px) {
  .services-page .services-hero .services-hero-content, .services-page .services-hero .services-hero-media {
    width: 100%;
  }
  .services-page .services-list .single-service .service-image {
    width: 250px !important;
  }
  .services-page .services-list .single-service .service-info {
    padding: 0 !important;
    width: calc(100% - 250px - 32px) !important;
  }
}
@media screen and (max-width: 767px) {
  .services-page .services-list .single-service {
    gap: 0 !important;
  }
  .services-page .services-list .single-service .service-image, .services-page .services-list .single-service .service-info {
    width: 100% !important;
  }
  .services-page .services-list .single-service .service-image {
    margin-bottom: 24px !important;
  }
  .services-page .services-list .single-service .service-image-inner:before {
    padding-top: 56.3% !important;
  }
}
@media screen and (max-width: 500px) {
  .services-page .services-list .single-service {
    padding: 16px !important;
  }
}
.faq-page .faq-main {
  margin-bottom: 96px;
}
.faq-page .faq-main-title {
  font-size: 27px;
  line-height: 33px;
  margin-bottom: 40px;
}
.faq-page .faq-tabs-wrapper {
  margin-bottom: 64px;
  gap: 24px 32px;
}
.faq-page .faq-tab-link {
  color: #929A96;
}
.faq-page .faq-tab-link:before {
  background-color: #B8BEAE;
}
.faq-page .faq-tab-link:hover, .faq-page .faq-tab-link.active {
  color: #151716;
}
.faq-page .faq-tab-link:hover:before, .faq-page .faq-tab-link.active:before {
  background-color: #009035;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
@media screen and (max-width: 1280px) {
  .faq-page .faq-main {
    margin-bottom: 64px;
  }
  .faq-page .faq-main-title {
    margin-bottom: 32px;
  }
  .faq-page .faq-tabs-wrapper {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-main-title {
    margin-bottom: 24px;
  }
}
.contacts-page .contacts-container {
  gap: 96px;
}
.contacts-page .contacts-content {
  width: calc(100% - 652px - 96px);
}
.contacts-page .contacts-main, .contacts-page .contacts-data {
  margin-bottom: 64px;
}
.contacts-page .contacts-main {
  max-width: 580px;
}
.contacts-page .contacts-main-title {
  font-size: 27px;
  line-height: 33px;
  margin-bottom: 24px;
}
.contacts-page .contacts-data {
  gap: 32px;
}
.contacts-page .contacts-data-rows {
  margin-bottom: 24px;
}
.contacts-page .contacts-data-row {
  margin-bottom: 12px;
}
.contacts-page .contacts-data-row a, .contacts-page .contacts-data-row span, .contacts-page .contacts-data-row strong {
  color: #151716;
  font-size: 16px;
  line-height: 24px;
}
.contacts-page .contacts-data-row a:hover {
  color: #009035;
}
.contacts-page .contacts-data-column {
  width: calc(50% - 16px);
}
.contacts-page .contacts-data-google {
  gap: 16px;
}
.contacts-page .contacts-data-google svg {
  width: 41px;
  height: 41px;
}
.contacts-page .contacts-video:before {
  content: "";
  display: block;
  padding-top: 62.39%;
}
.contacts-page .contacts-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.contacts-page .contact-form-wrapper {
  width: 652px;
}
.contacts-page .contact-form {
  padding-top: 56px;
}

@media screen and (max-width: 1680px) {
  .contacts-page .contacts-container {
    gap: 64px;
  }
  .contacts-page .contacts-content {
    width: calc(100% - 652px - 64px);
  }
  .contacts-page .contacts-main, .contacts-page .contacts-data {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1280px) {
  .contacts-page .contacts-container {
    gap: 48px;
  }
  .contacts-page .contacts-content {
    width: calc(100% - 550px - 48px);
  }
  .contacts-page .contacts-main, .contacts-page .contacts-data {
    margin-bottom: 32px;
  }
  .contacts-page .contact-form-wrapper {
    width: 550px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1180px), (max-width: 767px) {
  .contacts-page .contacts-data-column {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .contacts-page .contacts-content, .contacts-page .contact-form-wrapper {
    width: 100%;
  }
  .contacts-page .contact-form {
    padding-top: 0;
  }
  .contacts-page .contacts-main {
    max-width: none;
  }
}
.trainings-page .trainings-main {
  margin-bottom: 40px;
  z-index: 1;
}
.trainings-page .trainings-main .trainings-main-inner {
  gap: 16px 32px;
}
.trainings-page .trainings-main .trainings-main-title {
  font-size: 27px;
  line-height: 33px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.trainings-page .trainings-main .trainings-dropdown {
  margin-left: auto;
}
.trainings-page .trainings-main .trainings-dropdown-list {
  min-width: 100px;
}
.trainings-page .trainings-main .clear-months-wrapper {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-left: auto;
}
.trainings-page .single-training {
  padding: 20px 32px 32px 20px;
  border: 1px solid #B0CCB2;
  margin-bottom: 32px;
  gap: 32px;
}
.trainings-page .training-date {
  width: 67px;
}
.trainings-page .training-date-inner {
  padding: 16px;
}
.trainings-page .training-info {
  width: calc(100% - 67px - 32px);
  padding-top: 12px;
}
.trainings-page .training-main {
  margin-bottom: 20px;
}
.trainings-page .training-title {
  margin-bottom: 12px;
}

@media screen and (max-width: 1280px) {
  .trainings-page .trainings-main {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .trainings-page .single-training {
    padding: 16px;
    gap: 16px;
  }
  .trainings-page .training-info {
    width: 100%;
    padding-top: 0;
  }
  .trainings-page .training-main {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  .trainings-page .training-date-inner br {
    display: none;
  }
  .trainings-page .training-reserve a {
    width: 100%;
  }
  .trainings-page .training-date {
    width: 100%;
  }
}
.registration-page .registration-main {
  margin-bottom: 32px;
}
.registration-page .registration-main-title {
  margin-bottom: 24px;
}
.registration-page .registration-main-content {
  font-size: 15px;
  line-height: 28px;
  max-width: calc(100% - 503px - 56px);
}
.registration-page .registration-container {
  gap: 56px;
}
.registration-page .registration-form-container {
  border: 1px solid #B0CCB2;
  width: calc(100% - 503px - 56px);
}
.registration-page .registration-form-section {
  padding: 48px;
}
.registration-page .registration-type-section {
  border-bottom: 1px solid #B0CCB2;
}
.registration-page .registration-form-title {
  margin-bottom: 20px;
}
.registration-page .registration-media-container {
  width: 503px;
  gap: 32px;
}
.registration-page .registration-media-info {
  padding: 24px 32px;
  gap: 32px;
}
.registration-page .registration-media-info-main {
  gap: 20px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.registration-page .registration-media-info-icon img {
  width: 30px;
  height: 30px;
}
.registration-page .registration-media-info-button {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.registration-page .registration-media-info-button a {
  padding: 9px 25px;
}
.registration-page .registration-media-content {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.registration-page .registration-media-gradient {
  background: linear-gradient(to bottom, rgba(100, 136, 118, 0.6), rgba(17, 42, 26, 0.6));
}
.registration-page .inputs-wrapper {
  margin-bottom: 40px;
}

@media screen and (max-width: 1680px) {
  .registration-page .registration-container {
    gap: 48px;
  }
  .registration-page .registration-main-content {
    max-width: calc(100% - 503px - 48px);
  }
  .registration-page .registration-form-container {
    width: calc(100% - 503px - 48px);
  }
}
@media screen and (max-width: 1280px) {
  .registration-page .registration-container {
    gap: 32px;
  }
  .registration-page .registration-main-content {
    max-width: none;
  }
  .registration-page .registration-form-container, .registration-page .registration-media-container {
    width: 100%;
  }
  .registration-page .registration-media-content:before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .registration-page .registration-form-section {
    padding: 32px;
  }
  .registration-page .registration-form-title {
    margin-bottom: 16px;
  }
  .registration-page .inputs-wrapper {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .registration-page .registration-form-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .registration-page .registration-media-info {
    text-align: center;
  }
  .registration-page .registration-media-info, .registration-page .registration-media-info-main {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .registration-page .registration-media-info-main {
    gap: 12px;
  }
  .registration-page .registration-media-info {
    gap: 16px;
  }
  .registration-page .registration-media-info-icon, .registration-page .registration-media-info-title, .registration-page .registration-media-info-button {
    width: 100%;
  }
}
.profile-info-page .profile-info-form {
  max-width: 640px;
}
.profile-info-page .profile-info-type-checkboxes {
  margin-bottom: 24px;
}
.profile-info-page .inputs-wrapper {
  margin-bottom: 40px;
}
.profile-info-page .profile-info-submit-saved {
  pointer-events: none;
  border: 2px solid #B5B5B5 !important;
  background-color: #B5B5B5 !important;
}

@media screen and (max-width: 1280px) {
  .profile-info-page .inputs-wrapper {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .profile-info-page .profile-info-form {
    max-width: none;
    margin-bottom: 48px;
  }
}
.success-page .success-main {
  margin: 48px 0 96px;
}
.success-page .success-data {
  margin-bottom: 64px;
}
.success-page .success-icon, .success-page .fail-icon {
  margin-bottom: 24px;
}
.success-page .success-icon svg {
  width: 52px;
  height: 38px;
}
.success-page .fail-icon img {
  width: 52px;
  height: 52px;
}
.success-page .success-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 16px;
}
.success-page .success-subtext {
  font-size: 15px;
  line-height: 28px;
}

@media screen and (max-width: 1680px) {
  .success-page .success-main {
    margin: 48px 0 64px;
  }
}
@media screen and (max-width: 1280px) {
  .success-page .success-main {
    margin: 48px 0;
  }
  .success-page .success-data {
    margin-bottom: 48px;
  }
}
.toplevel_page_subscribers, .toplevel_page_coupons, .toplevel_page_orders {
  padding-top: 0;
}

#footer-thankyou, #footer-upgrade {
  display: none !important;
}

#wpcontent {
  padding-left: 0 !important;
}

#wpbody-content {
  padding-bottom: 0 !important;
}

.main-container-admin-panel {
  padding: 0 16px;
  margin: 0 auto;
}
.main-container-admin-panel a:focus {
  box-shadow: none;
}
.main-container-admin-panel input[type=text], .main-container-admin-panel input[type=number], .main-container-admin-panel textarea {
  border-color: #E7E6E6;
  color: #000;
  padding: 11.5px 12px;
  border-radius: 4px;
}
.main-container-admin-panel input[type=text]:hover, .main-container-admin-panel input[type=number]:hover, .main-container-admin-panel textarea:hover {
  border-color: #858482;
}
.main-container-admin-panel input[type=text]:focus, .main-container-admin-panel input[type=number]:focus, .main-container-admin-panel textarea:focus {
  box-shadow: none;
  outline: none;
  border-color: #858482;
}
.main-container-admin-panel input[type=text]:focus::-webkit-input-placeholder, .main-container-admin-panel input[type=number]:focus::-webkit-input-placeholder, .main-container-admin-panel textarea:focus::-webkit-input-placeholder {
  opacity: 1;
}
.main-container-admin-panel input[type=text]:focus::-moz-placeholder, .main-container-admin-panel input[type=number]:focus::-moz-placeholder, .main-container-admin-panel textarea:focus::-moz-placeholder {
  opacity: 1;
}
.main-container-admin-panel input[type=text]:focus:-moz-placeholder, .main-container-admin-panel input[type=number]:focus:-moz-placeholder, .main-container-admin-panel textarea:focus:-moz-placeholder {
  opacity: 1;
}
.main-container-admin-panel input[type=text]:focus:-ms-input-placeholder, .main-container-admin-panel input[type=number]:focus:-ms-input-placeholder, .main-container-admin-panel textarea:focus:-ms-input-placeholder {
  opacity: 1;
}
.main-container-admin-panel .default-admin-wrapper {
  padding: 32px 0;
}
.main-container-admin-panel .preloader-circle-admin {
  width: 24px;
  height: 24px;
  object-fit: contain;
  animation: rotating 5s linear infinite;
  -webkit-animation: rotating 5s linear infinite;
  display: none;
  top: calc(50% - 12px);
  left: calc(100% + 8px);
}
.main-container-admin-panel .row-id {
  width: 60px;
  color: #000;
  margin-right: 16px;
}
.main-container-admin-panel .row-date {
  width: 100px;
  color: #000;
  margin-right: 16px;
  white-space: nowrap;
}
.main-container-admin-panel .delete-wrapper .delete-toggle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  object-fit: contain;
  margin-right: 16px;
}
.main-container-admin-panel .delete-wrapper .delete-toggle:hover {
  -webkit-animation: rotating 0.5s 0.1s ease-out;
  animation: rotating 0.5s 0.1s ease-out;
}
.main-container-admin-panel .delete-wrapper .are-you-sure {
  font-size: 12px;
}
.main-container-admin-panel .delete-wrapper .delete-it {
  color: #009035;
  text-decoration: underline;
  margin-left: 4px;
}
.main-container-admin-panel .single-admin-panel-select {
  width: 200px;
}
.main-container-admin-panel .common-selectize-wrapper .selectize-input {
  padding: 11.5px 48px 11.5px 12px !important;
}
.main-container-admin-panel .common-selectize-wrapper .selectize-dropdown {
  top: 50px !important;
}
.main-container-admin-panel .admin-panel-filters-form, .main-container-admin-panel .status-admin-panel-wrapper, .main-container-admin-panel .filter-selects-wrapper {
  gap: 16px;
}
.main-container-admin-panel .admin-panel-filters-form, .main-container-admin-panel .status-admin-panel-wrapper {
  margin-bottom: 16px;
}
.main-container-admin-panel .custom-admin-table {
  color: #000;
  overflow-x: auto;
}
.main-container-admin-panel .custom-admin-table::-webkit-scrollbar {
  height: 5px;
}
.main-container-admin-panel .custom-admin-table::-webkit-scrollbar-track {
  background-color: transparent;
}
.main-container-admin-panel .custom-admin-table::-webkit-scrollbar-thumb {
  background-color: #009035;
}
.main-container-admin-panel .custom-admin-table-title-cell {
  padding: 10px;
  font-size: 18px;
  margin: 0 2px 2px 0;
  background: #009035;
  color: #fff;
}
.main-container-admin-panel .custom-admin-table-title-cell:nth-last-of-type(1) {
  margin: 0 0 2px 0;
}
.main-container-admin-panel .custom-admin-table-value-cell {
  padding: 8px;
  font-size: 14px;
  margin: 0 2px 2px 0;
  background: #f0f0f1;
}
.main-container-admin-panel .custom-admin-table-value-cell:nth-last-of-type(1) {
  margin: 0 0 2px 0;
}
.main-container-admin-panel .custom-admin-table-value-cell a {
  color: #009035;
  position: relative;
}
.main-container-admin-panel .custom-admin-table-value-cell a:hover:before, .main-container-admin-panel .custom-admin-table-value-cell a:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .custom-admin-table-value-cell a:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .custom-admin-table-value-cell a:before, .main-container-admin-panel .custom-admin-table-value-cell a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .custom-admin-table-value-cell a:hover {
  color: #009035;
}
.main-container-admin-panel .custom-admin-table-status {
  font-size: 10px;
  font-weight: 800;
  top: 0;
  left: 2px;
}
.main-container-admin-panel .admin-panel-custom-pagination {
  padding: 32px 0;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination {
  margin: 0 16px;
  font-family: FontRegularAdditional;
  font-size: 20px;
  color: #009035;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination a {
  color: #009035;
  position: relative;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:hover:before, .main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:before, .main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination a:hover {
  color: #009035;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination .active-pagination {
  color: #009035;
}
.main-container-admin-panel .admin-panel-custom-pagination .single-pagination .active-pagination:before, .main-container-admin-panel .admin-panel-custom-pagination .single-pagination .active-pagination:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .dark-selectize .selectize-input {
  transition: all 0.2s linear !important;
}
.main-container-admin-panel .dark-selectize .selectize-input input, .main-container-admin-panel .dark-selectize .selectize-input .item {
  color: #fff !important;
}
.main-container-admin-panel .dark-selectize .selectize-input input::-webkit-input-placeholder, .main-container-admin-panel .dark-selectize .selectize-input .item::-webkit-input-placeholder {
  color: #fff !important;
  font-size: 16px !important;
}
.main-container-admin-panel .dark-selectize .selectize-input input::-moz-placeholder, .main-container-admin-panel .dark-selectize .selectize-input .item::-moz-placeholder {
  color: #fff !important;
  font-size: 16px !important;
}
.main-container-admin-panel .dark-selectize .selectize-input input:-moz-placeholder, .main-container-admin-panel .dark-selectize .selectize-input .item:-moz-placeholder {
  color: #fff !important;
  font-size: 16px !important;
}
.main-container-admin-panel .dark-selectize .selectize-input input:-ms-input-placeholder, .main-container-admin-panel .dark-selectize .selectize-input .item:-ms-input-placeholder {
  color: #fff !important;
  font-size: 16px !important;
}
.main-container-admin-panel .darkorange-selectize .selectize-input {
  background-color: darkorange !important;
  border: 2px solid darkorange !important;
}
.main-container-admin-panel .darkgreen-selectize .selectize-input {
  background-color: darkgreen !important;
  border: 2px solid darkgreen !important;
}
.main-container-admin-panel .darkred-selectize .selectize-input {
  background-color: darkred !important;
  border: 2px solid darkred !important;
}
.main-container-admin-panel .status-saved {
  color: #009035;
  font-size: 12px;
  font-weight: bold;
  top: calc(100% + 8px);
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.main-container-admin-panel .save-status-wrapper {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.main-container-admin-panel .save-status-link:focus {
  color: #009035;
}
.main-container-admin-panel .delete-admin-panel-wrapper {
  margin-bottom: 24px;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle {
  font-weight: bold;
  color: darkred;
  font-size: 20px;
  margin-right: 16px;
  position: relative;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:hover:before, .main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:after {
  left: 0;
  background-color: darkred;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:before, .main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-toggle:hover {
  color: darkred;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-confirm {
  font-size: 14px;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element {
  color: #009035;
  position: relative;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:hover:before, .main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:before, .main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-element:hover {
  color: #009035;
}
.main-container-admin-panel .back-button-link {
  position: relative;
  color: #009035;
}
.main-container-admin-panel .back-button-link:hover:before, .main-container-admin-panel .back-button-link:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .back-button-link:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .back-button-link:before, .main-container-admin-panel .back-button-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .back-button-link:hover {
  color: #009035;
}
.main-container-admin-panel .single-admin-panel-info-wrapper {
  margin-bottom: 32px;
}
.main-container-admin-panel .single-admin-panel-row {
  margin-bottom: 2px;
}
.main-container-admin-panel .single-admin-panel-row:nth-last-of-type(1) {
  margin-bottom: 0;
}
.main-container-admin-panel .single-admin-panel-title {
  padding: 8px;
  font-size: 16px;
  background: #009035;
  color: #fff;
  width: 228px;
}
.main-container-admin-panel .single-admin-panel-value {
  padding: 8px;
  font-size: 16px;
  background: #f0f0f1;
  width: calc(100% - 228px - 2px);
  color: #000;
}
.main-container-admin-panel .single-admin-panel-value a {
  color: #009035;
  position: relative;
}
.main-container-admin-panel .single-admin-panel-value a:hover:before, .main-container-admin-panel .single-admin-panel-value a:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .single-admin-panel-value a:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .single-admin-panel-value a:before, .main-container-admin-panel .single-admin-panel-value a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .single-admin-panel-value a:hover {
  color: #009035;
}
.main-container-admin-panel .single-admin-panel-value img {
  width: 17px;
}
.main-container-admin-panel .single-admin-panel-value .note {
  font-size: 12px;
  color: #D80037;
}
.main-container-admin-panel .single-admin-panel-value-with-edit {
  width: calc(100% - 228px - 2px - 456px - 2px);
}
.main-container-admin-panel .single-admin-panel-edit {
  width: 456px;
}
.main-container-admin-panel .single-admin-panel-spacer {
  padding: 12px 0;
}
.main-container-admin-panel .disabled-button {
  opacity: 0.25;
  pointer-events: none;
}

@media screen and (max-width: 1280px) {
  .main-container-admin-panel .single-admin-panel-value-with-edit {
    width: calc(100% - 228px - 2px - 330px - 2px);
  }
  .main-container-admin-panel .single-admin-panel-edit {
    width: 330px;
  }
}
@media screen and (max-width: 1024px) {
  .main-container-admin-panel .single-admin-panel-value-with-edit {
    width: calc(100% - 228px - 2px);
  }
  .main-container-admin-panel .single-admin-panel-edit {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .main-container-admin-panel .admin-panel-custom-pagination .single-pagination {
    font-size: 16px;
    margin: 0 8px;
  }
  .main-container-admin-panel .delete-admin-panel-wrapper .delete-admin-panel-confirm {
    display: block;
    margin-top: 4px;
  }
  .main-container-admin-panel .single-admin-panel-title, .main-container-admin-panel .single-admin-panel-value, .main-container-admin-panel .single-admin-panel-value-with-edit {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px) {
  .main-container-admin-panel .single-admin-panel-select {
    width: 100%;
  }
  .main-container-admin-panel .filter-selects-wrapper {
    order: 1;
  }
  .main-container-admin-panel .filters-button {
    order: 2;
  }
}
.main-container-admin-panel .single-row-subscribe {
  margin-bottom: 3px;
  font-size: 16px;
}
.main-container-admin-panel .row-value {
  width: 300px;
}
.main-container-admin-panel .row-value a {
  color: #009035;
  position: relative;
}
.main-container-admin-panel .row-value a:hover:before, .main-container-admin-panel .row-value a:hover:after {
  width: 100%;
  opacity: 1;
}
.main-container-admin-panel .row-value a:after {
  left: 0;
  background-color: #009035;
}
.main-container-admin-panel .row-value a:before, .main-container-admin-panel .row-value a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.main-container-admin-panel .row-value a:hover {
  color: #009035;
}
.main-container-admin-panel .export-button {
  font-size: 0;
}
.main-container-admin-panel .subscribers-export-wrapper {
  margin-bottom: 32px;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .main-container-admin-panel .row-subscribe-date {
    width: 100%;
    text-align: right;
  }
  .main-container-admin-panel .row-value {
    width: 100%;
  }
  .main-container-admin-panel .single-row-subscribe {
    margin-bottom: 12px;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .main-container-admin-panel .delete-wrapper .delete-toggle-subscribe {
    margin: 0 0 0 16px;
    order: 2;
  }
  .main-container-admin-panel .delete-wrapper .are-you-sure-subscribe {
    order: 1;
  }
}
.main-container-admin-panel .row-coupon {
  width: 200px;
  color: #009035;
  margin-right: 16px;
}
.main-container-admin-panel .row-coupon-unavailable {
  text-decoration: line-through;
}
.main-container-admin-panel .row-coupon-value {
  width: 50px;
  color: #009035;
  margin-right: 16px;
}
.main-container-admin-panel .coupons-form {
  margin-bottom: 48px;
}
.main-container-admin-panel .coupon-inputs-wrapper {
  max-width: 1300px;
  gap: 12px;
  margin-bottom: 24px;
}
.main-container-admin-panel .single-coupon-input {
  width: calc((100% - 36px) / 4.001);
}
.main-container-admin-panel .radio-discount-types-wrapper {
  gap: 12px 24px;
  margin-bottom: 24px;
}
.main-container-admin-panel .coupons-sections-wrapper {
  gap: 48px;
  max-width: 1300px;
}
.main-container-admin-panel .coupons-sections {
  width: calc(50% - 24px);
}
.main-container-admin-panel .coupons-section {
  margin-bottom: 48px;
}
.main-container-admin-panel .single-coupon-row {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
}
.main-container-admin-panel .coupon-success-submit {
  display: none;
  font-size: 12px;
  top: calc(100% + 4px);
  left: 0;
  color: #009035;
}

@media screen and (max-width: 1470px) {
  .main-container-admin-panel .coupons-sections {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .main-container-admin-panel .single-coupon-input {
    width: calc(50% - 6px);
  }
  .main-container-admin-panel .single-coupon-row {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .main-container-admin-panel .row-coupon {
    width: calc(100% - 90px - 50px);
    margin-bottom: 4px;
  }
  .main-container-admin-panel .row-coupon-value {
    margin: 0 0 4px 0;
  }
  .main-container-admin-panel .single-coupon-input {
    width: 100%;
  }
}
.main-container-admin-panel .orders-table .orders-table-inner {
  width: 1728px;
}
.main-container-admin-panel .orders-table .order-cell-id, .main-container-admin-panel .orders-table .order-cell-from, .main-container-admin-panel .orders-table .order-cell-to, .main-container-admin-panel .orders-table .order-cell-license-plate, .main-container-admin-panel .orders-table .order-cell-price {
  width: 100px;
}
.main-container-admin-panel .orders-table .order-cell-user, .main-container-admin-panel .orders-table .order-cell-email {
  width: 250px;
}
.main-container-admin-panel .orders-table .order-cell-phone, .main-container-admin-panel .orders-table .order-cell-place, .main-container-admin-panel .orders-table .order-cell-package, .main-container-admin-panel .orders-table .order-cell-time {
  width: 177px;
}
.main-container-admin-panel .dark-selectize .selectize-input {
  background-image: url("../../images/dropdown-white.svg") !important;
}
.main-container-admin-panel .status-pending {
  color: darkorange;
}
.main-container-admin-panel .status-paid {
  color: darkgreen;
}
.main-container-admin-panel .status-unpaid {
  color: darkred;
}
.main-container-admin-panel .single-filter-orders-page {
  width: calc((100% - 64px) / 5.001);
}
.main-container-admin-panel .single-filter-orders-page-button {
  width: calc(50% - 8px);
}
.main-container-admin-panel .default-button-orders-padding {
  padding: 11.5px 22px;
}
.main-container-admin-panel .set-data-validation-empty, .main-container-admin-panel .set-data-non-valid {
  position: absolute;
  white-space: nowrap;
  top: calc(50% - 9px);
  right: calc(100% + 8px);
  font-size: 12px;
  line-height: 18px;
  color: #D80037;
  z-index: 1;
}
.main-container-admin-panel .edit-input-wrapper {
  position: relative;
  display: flex;
  display: -webkit-flex;
  gap: 2px;
  height: 100%;
}
.main-container-admin-panel .edit-input {
  padding: 8px !important;
  border-radius: 0 !important;
  border: none !important;
  min-height: 0 !important;
}
.main-container-admin-panel .edit-input-update, .main-container-admin-panel .get-back-input-update {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  font-size: 16px;
  line-height: 32px;
  padding: 0 8px;
  border: none;
}
.main-container-admin-panel .edit-input-update:hover, .main-container-admin-panel .get-back-input-update:hover {
  background-color: #299472;
  color: #fff;
}
.main-container-admin-panel .edit-input-update {
  background-color: #FFD020;
  color: #000;
}
.main-container-admin-panel .get-back-input-update {
  background-color: #009035;
  color: #fff;
}
.main-container-admin-panel .order-edit-input-preloader {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  right: calc(100% + 8px);
}
.main-container-admin-panel .preloader-order {
  width: 24px;
  height: 24px;
  left: calc(100% + 8px);
  top: calc(50% - 12px);
}
.main-container-admin-panel .single-table-row .order-value-cell {
  color: #000;
  transition: all 0.2s linear;
}
.main-container-admin-panel .single-table-row:hover .order-value-cell {
  background-color: rgba(255, 206, 71, 0.3);
}
.main-container-admin-panel .single-order-value {
  color: #000;
}
.main-container-admin-panel .single-order-value span {
  color: #000;
  font-size: 12px;
  line-height: 18px;
}
.main-container-admin-panel .title-row-wrapper {
  gap: 16px 48px;
  margin-bottom: 16px;
}
.main-container-admin-panel .main-title-with-export-button {
  margin-right: auto;
}
.main-container-admin-panel .single-export-orders-page {
  width: calc((100% - 144px) / 4.001);
}

@media screen and (max-width: 1271px) {
  .main-container-admin-panel .single-filter-orders-page {
    width: calc((100% - 48px) / 4.001);
  }
  .main-container-admin-panel .single-export-orders-page {
    width: calc(50% - 24px);
  }
  .main-container-admin-panel .main-title-with-export-button {
    width: 100% !important;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .main-container-admin-panel .set-data-validation-empty, .main-container-admin-panel .set-data-non-valid, .main-container-admin-panel .order-edit-input-preloader {
    right: 78px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1271px) {
  .main-container-admin-panel .download-invoice-xls-preloader, .main-container-admin-panel .download-invoices-xls-preloader {
    right: calc(100% + 8px);
    left: auto;
  }
  .main-container-admin-panel .download-invoice-pdf-preloader {
    left: calc(100% + 8px);
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .main-container-admin-panel .single-filter-orders-page {
    width: calc((100% - 32px) / 3.001);
  }
  .main-container-admin-panel .single-export-orders-page {
    width: 100% !important;
  }
  .main-container-admin-panel .main-title-with-export-button {
    text-align: center;
    margin-right: 0;
  }
  .main-container-admin-panel .title-row-button-preloader {
    right: calc(100% - 40px) !important;
    left: auto !important;
  }
}
@media screen and (max-width: 500px) {
  .main-container-admin-panel .single-filter-orders-page {
    width: calc(50% - 8px);
  }
}
.basket-page .checkout-process-summary {
  padding-top: 37px;
}
.basket-page .checkout-process-basket-titles, .basket-page .checkout-process-basket-row {
  gap: 32px;
}
.basket-page .checkout-process-basket-titles {
  border-bottom: 2px solid #30353D;
}
.basket-page .checkout-process-column-title {
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 16px;
}
.basket-page .checkout-process-basket-rows {
  margin-bottom: 40px;
}
.basket-page .checkout-process-basket-row {
  padding: 16px 0;
  border-bottom: 1px solid #B8BEAE;
}
.basket-page .checkout-process-column.product-column {
  gap: 24px;
}
.basket-page .product-column {
  width: calc(100% - 170px - 32px - 170px - 32px - 140px - 32px);
}
.basket-page .price-column, .basket-page .total-column {
  width: 170px;
}
.basket-page .checkout-process-column.price-column {
  font-size: 14px;
  line-height: 19px;
}
.basket-page .checkout-process-column.total-column {
  font-size: 16px;
  line-height: 19px;
}
.basket-page .checkout-process-column-subtext {
  font-size: 12px;
  line-height: 19px;
  color: #30353D;
}
.basket-page .quantity-column {
  width: 140px;
}
.basket-page .delete-from-basket {
  background-color: #EFEFE1;
  width: 30px;
  height: 30px;
}
.basket-page .delete-from-basket svg {
  width: 13px;
  height: 14px;
}
.basket-page .delete-from-basket svg path {
  fill: #A1A4A6;
  transition: all 0.2s linear;
}
.basket-page .delete-from-basket:hover {
  background-color: #009035;
}
.basket-page .delete-from-basket:hover svg path {
  fill: #fff;
}
.basket-page .checkout-process-basket-row-image a {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  border: 1px solid #B8BEAE;
  padding: 16px;
}
.basket-page .checkout-process-basket-row-main {
  width: calc(100% - 132px - 24px - 30px - 24px);
}
.basket-page .checkout-process-basket-row-title {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 16px;
}
.basket-page .checkout-process-basket-row-characteristic {
  font-size: 14px;
  line-height: 17px;
  color: #777771;
  margin-bottom: 1px;
}
.basket-page .coupon-input-wrapper {
  width: 258px;
}
.basket-page .success-coupon-validation {
  background-color: #009035 !important;
  border: 1px solid #009035 !important;
  color: #fff !important;
}
.basket-page .checkout-process-coupon-checker {
  gap: 16px;
}
.basket-page .checkout-process-coupon-warning {
  margin-top: 16px;
  font-size: 12px;
  line-height: 15px;
  color: #D80037;
  display: none;
}

@media screen and (max-width: 1488px) {
  .basket-page .checkout-process-summary {
    padding-top: 0;
  }
  .basket-page .checkout-process-basket-rows {
    margin-bottom: 32px;
  }
  .basket-page .checkout-process-coupon-checker {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .basket-page .checkout-process-coupon-warning {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .basket-page .delete-from-basket-wrapper-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .basket-page .checkout-process-basket-row {
    gap: 24px;
  }
  .basket-page .checkout-process-basket-row:nth-of-type(1) {
    padding-top: 0;
  }
  .basket-page .checkout-process-basket-titles, .basket-page .delete-from-basket-wrapper-desktop {
    display: none !important;
  }
  .basket-page .product-column {
    width: calc(100% - 140px - 24px - 170px - 24px);
  }
  .basket-page .total-column {
    margin-left: auto;
  }
  .basket-page .checkout-process-basket-row-main {
    width: calc(100% - 132px - 24px);
  }
}
@media screen and (max-width: 767px) {
  .basket-page .product-column {
    width: calc(100% - 170px - 24px);
  }
  .basket-page .price-column {
    width: auto;
    max-width: 170px;
    margin-left: auto;
  }
}
@media screen and (max-width: 600px) {
  .basket-page .product-column, .basket-page .price-column, .basket-page .quantity-column {
    width: 100%;
  }
  .basket-page .checkout-process-basket-row, .basket-page .product-column, .basket-page .product-quantity {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .basket-page .price-column {
    text-align: center;
  }
  .basket-page .price-column {
    max-width: none;
    margin: 0;
  }
  .basket-page .checkout-process-basket-row-main {
    max-width: calc(100% - 132px - 24px);
    width: auto;
  }
  .basket-page .total-column {
    width: auto;
    max-width: 170px;
    margin: 0;
  }
  .basket-page .checkout-process-coupon-checker {
    display: block !important;
    text-align: center;
  }
  .basket-page .coupon-input-wrapper {
    width: 258px;
    margin: 0 auto 16px;
  }
  .basket-page .checkout-process-coupon-warning {
    margin-top: 16px;
  }
}
.customer-login-page .customer-login-columns {
  gap: 40px;
  margin-bottom: 48px;
}
.customer-login-page .customer-login-column {
  width: calc((100% - 80px) / 3.001);
  padding: 24px 40px 40px;
  border: 1px solid #B0CCB2;
}
.customer-login-page .customer-login-column-main, .customer-login-page .customer-login-inputs-wrapper-bigger, .customer-login-page .customer-login-column-subtext {
  margin-bottom: 32px;
}
.customer-login-page .customer-login-column-icon {
  width: 40px;
  height: 66px;
  margin-bottom: 12px;
}
.customer-login-page .customer-login-column-icon img, .customer-login-page .customer-login-column-icon svg {
  width: 100%;
  max-height: 100%;
}
.customer-login-page .customer-login-column-subtext {
  font-size: 15px;
  line-height: 23px;
}
.customer-login-page .customer-login-inputs-wrapper {
  margin-bottom: 24px;
}
.customer-login-page .single-input {
  margin-bottom: 12px;
}
.customer-login-page .customer-login-reset-password-toggle {
  font-size: 13px;
  line-height: 16px;
}
.customer-login-page .pre-registration-email-warning, .customer-login-page .pre-reset-password-warning-no-users-with-such-email {
  position: absolute;
  right: 0;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  color: #D80037;
  display: none;
}
.customer-login-page .pre-registration-email-warning {
  top: calc(100% + 4px);
}
.customer-login-page .pre-reset-password-warning-no-users-with-such-email {
  top: calc(100% + 26px);
}

@media screen and (max-width: 1280px) {
  .customer-login-page .customer-login-columns {
    gap: 32px;
    margin-bottom: 32px;
  }
  .customer-login-page .customer-login-column {
    width: calc(50% - 16px);
    padding: 16px 32px 32px;
  }
  .customer-login-page .customer-login-column-continue {
    width: 100%;
  }
  .customer-login-page .customer-login-column-main, .customer-login-page .customer-login-column-subtext, .customer-login-page .customer-login-inputs-wrapper-bigger {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .customer-login-page .customer-login-column {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .customer-login-page .customer-login-column {
    padding: 16px 16px 32px;
  }
  .customer-login-page .customer-login-column-main, .customer-login-page .customer-login-column-subtext, .customer-login-page .customer-login-inputs-wrapper, .customer-login-page .customer-login-inputs-wrapper-bigger {
    margin-bottom: 16px;
  }
  .customer-login-page .pre-reset-password-warning-no-users-with-such-email {
    top: calc(100% + 24px);
  }
}
.customer-page .order-info-form {
  padding: 48px;
  margin-bottom: 32px;
  border: 1px solid #B0CCB2;
}
.customer-page .order-info-form-title, .customer-page .checkout-process-type-checkboxes, .customer-page .checkout-process-delivery-selection, .customer-page .checkout-process-payment-selection {
  margin-bottom: 24px;
}
.customer-page .notes-input-wrapper, .customer-page .checkout-process-delivery-type-checkboxes {
  margin-bottom: 48px;
}
.customer-page .checkout-process-delivery-checkbox, .customer-page .checkout-process-payment-checkbox {
  margin-bottom: 20px;
}
.customer-page .checkbox-venipak-title svg {
  width: 48px;
  height: 9px;
}
.customer-page .makecommerce-payments {
  gap: 16px 20px;
}
.customer-page .single-makecommerce-payment {
  width: calc((100% - 60px) / 4.001);
}
.customer-page .single-makecommerce-payment input {
  left: -9999px;
}
.customer-page .single-makecommerce-payment input:checked ~ .makecommerce-payment-label {
  border: 1px solid #009035;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.customer-page .single-makecommerce-payment .makecommerce-payment-label {
  margin: 0;
  padding: 8px;
  border: 1px solid #B0CCB2;
  transition: all 0.2s linear;
  cursor: pointer;
}
.customer-page .single-makecommerce-payment .makecommerce-payment-label img {
  max-width: 100%;
  height: 37px;
}
.customer-page .single-makecommerce-payment .makecommerce-payment-label:hover {
  border: 1px solid #009035;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.customer-page .makecommerce-payment-inner:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 3px solid #fff;
  z-index: 1;
}
.customer-page .warning-validation.checkout-process-venipak-input .selectize-input, .customer-page .warning-validation.checkout-process-venipak-input .selectize-dropdown {
  border: 1px solid #D80037 !important;
}
.customer-page .warning-validation.single-makecommerce-payment .makecommerce-payment-label {
  border: 1px solid #D80037 !important;
}

@media screen and (max-width: 1280px) {
  .customer-page .order-info-form {
    padding: 32px;
  }
  .customer-page .notes-input-wrapper, .customer-page .checkout-process-delivery-type-checkboxes {
    margin-bottom: 32px;
  }
  .customer-page .checkout-process-delivery-checkbox, .customer-page .checkout-process-payment-checkbox {
    margin-bottom: 16px;
  }
  .customer-page .makecommerce-payments {
    gap: 16px;
  }
  .customer-page .single-makecommerce-payment {
    width: calc((100% - 48px) / 4.001);
  }
}
@media screen and (max-width: 500px) {
  .customer-page .order-info-form {
    padding: 32px 16px;
  }
}
.summary-page .checkout-process-summary-data {
  gap: 48px;
  margin-bottom: 48px;
}
.summary-page .checkout-process-summary-products, .summary-page .checkout-process-summary-information {
  border: 1px solid #B0CCB2;
}
.summary-page .checkout-process-summary-products {
  width: calc(100% - 48px - 390px);
}
.summary-page .checkout-process-summary-information {
  width: 390px;
}
.summary-page .single-checkout-process-summary-product, .summary-page .checkout-process-summary-info-section {
  border-bottom: 1px solid #B0CCB2;
  padding: 16px 32px;
}
.summary-page .single-checkout-process-summary-product:nth-of-type(1), .summary-page .checkout-process-summary-info-section:nth-of-type(1) {
  padding-top: 32px;
}
.summary-page .single-checkout-process-summary-product:nth-last-of-type(1), .summary-page .checkout-process-summary-info-section:nth-last-of-type(1) {
  padding-bottom: 32px;
  border-bottom: none;
}
.summary-page .single-checkout-process-summary-product {
  gap: 20px;
}
.summary-page .checkout-process-summary-product-image {
  width: 94px;
  height: 94px;
}
.summary-page .checkout-process-summary-product-image a {
  border-radius: 10px;
  border: 1px solid #B0CCB2;
  padding: 12px;
}
.summary-page .checkout-process-summary-product-image a:hover {
  border: 1px solid #009035;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.summary-page .checkout-process-summary-product-data {
  width: calc(100% - 20px - 94px);
}
.summary-page .checkout-process-summary-product-title {
  margin-bottom: 8px;
}
.summary-page .checkout-process-summary-product-title a {
  font-size: 15px;
  line-height: 18px;
}
.summary-page .checkout-process-summary-product-characteristics {
  gap: 8px 20px;
  margin-bottom: 8px;
}
.summary-page .single-checkout-process-summary-product-characteristic, .summary-page .checkout-process-summary-product-total, .summary-page .checkout-process-summary-info-value-smaller {
  color: #777771;
}
.summary-page .single-checkout-process-summary-product-characteristic span, .summary-page .checkout-process-summary-product-total span, .summary-page .checkout-process-summary-info-value-smaller span {
  color: #009035;
  font-family: FontBold;
}
.summary-page .checkout-process-summary-info-title, .summary-page .checkout-process-summary-info-value {
  margin-bottom: 8px;
}
.summary-page .checkout-process-summary-info-value {
  font-size: 15px;
  line-height: 18px;
}
.summary-page .checkout-process-summary-info-value-smaller {
  font-size: 10px;
  line-height: 14px;
}
.summary-page .checkout-process-summary-info-delivery-value svg {
  width: 48px;
  height: 9px;
}
.summary-page .checkout-process-summary-info-delivery-value span {
  color: #009035;
}
.summary-page .checkout-process-summary-info-delivery-line-through {
  font-family: FontRegular;
  text-decoration: line-through;
  color: #A4ACA7 !important;
  font-size: 12px;
}
.summary-page .checkout-process-summary-info-payment-channel {
  width: 144px;
  padding: 8px;
  border: 1px solid #009035;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.2s linear;
}
.summary-page .checkout-process-summary-info-payment-channel img {
  max-width: 100%;
  height: 37px;
}
.summary-page .checkout-process-summary-info-payment-channel-inner:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 3px solid #fff;
  z-index: 1;
}
.summary-page .checkout-process-summary-info-payment-value {
  margin-bottom: 12px;
}
.summary-page .checkout-process-summary-info-free-delivery {
  font-size: 14px;
}

@media screen and (max-width: 1280px) {
  .summary-page .checkout-process-summary-data {
    gap: 32px;
    margin-bottom: 32px;
  }
  .summary-page .checkout-process-summary-products {
    width: calc(100% - 32px - 390px);
  }
  .summary-page .single-checkout-process-summary-product {
    gap: 16px;
  }
  .summary-page .checkout-process-summary-product-data {
    width: calc(100% - 16px - 94px);
  }
  .summary-page .checkout-process-summary-product-characteristics {
    gap: 8px 16px;
  }
}
@media screen and (max-width: 1280px) {
  .summary-page .checkout-process-summary-products, .summary-page .checkout-process-summary-information {
    width: 100%;
  }
  .summary-page .single-checkout-process-summary-product, .summary-page .checkout-process-summary-info-section {
    padding: 16px !important;
  }
}
.profile-orders-page .orders-list-table-titles, .profile-orders-page .single-orders-list-row {
  gap: 8px 16px;
}
.profile-orders-page .orders-list-table-titles {
  border-bottom: 3px solid #009035;
  padding-bottom: 16px;
}
.profile-orders-page .orders-list-title, .profile-orders-page .orders-list-value {
  width: calc((100% - 48px) / 4.001);
}
.profile-orders-page .orders-list-title {
  font-size: 15px;
  line-height: 18px;
}
.profile-orders-page .orders-list-value {
  font-size: 13px;
  line-height: 16px;
}
.profile-orders-page .orders-list-status-value {
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-family: FontSemiBold;
  padding: 2.5px 4px;
  border-radius: 3px;
  display: inline-block;
}
.profile-orders-page .orders-list-status-value-paid {
  background-color: #30B275;
}
.profile-orders-page .orders-list-status-value-unpaid {
  background-color: #E81C1C;
}
.profile-orders-page .orders-list-status-value-pending {
  background-color: #E87B1C;
}
.profile-orders-page .single-orders-list-row {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
}
.profile-orders-page .single-orders-list-row:nth-of-type(1) {
  padding-top: 16px;
}

@media screen and (max-width: 1024px) {
  .profile-orders-page .orders-list-table {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .profile-orders-page .value-hidden-title {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .profile-orders-page .orders-list-table-titles {
    display: none !important;
  }
  .profile-orders-page .value-hidden-title {
    font-family: FontBold;
  }
  .profile-orders-page .orders-list-value {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 500px) {
  .profile-orders-page .orders-list-value {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
