:root {
  --brand-transparent-color: transparent;
  --brand-orange-50-color: rgba(255, 118, 60, 0.5);
  --brand-orange-hover-color: rgba(245, 108, 50, 1);
  --brand-orange-10-hover-color: #fff1ec;
  --brand-green-badge-color: rgba(60, 180, 120, 1);
  --brand-green-15-badge-color: rgba(60, 180, 120, 0.15);
  --theme-color: #FFFFFF;
  --primary-color: var(--brand-black-color);
  --brand-black-color: rgba(10, 20, 30, 1);
  --brand-black-3-color: rgba(10, 20, 30, 0.3);
  --brand-black-6-color: rgba(10, 20, 30, 0.6);
  --brand-orange-color: rgba(255, 118, 60, 1);
  --brand-orange-15-color: rgba(255, 118, 60, 0.15);
  --brand-white-color: rgba(255, 255, 255, 1);
  --brand-white-15-color: rgba(255, 255, 255, 0.15);
  --brand-white-30-color: rgba(255, 255, 255, 0.3);
  --brand-white-1-color: rgba(255, 255, 255, 0.1);
  --brand-dark-gray-color: rgba(145, 149, 154, 1);
  --brand-light-gray-color: rgba(247, 247, 249, 1);
  --brand-violet-color: rgba(137, 125, 253, 1);
  --brand-violet-15-color: rgba(137, 125, 253, 0.15);
  --brand-green-color: rgba(60, 180, 185, 1);
  --brand-green-15-color: rgba(60, 180, 185, 0.15);
  --brand-radius-5: 5px;
  --brand-radius-10: 10px;
  --brand-grey-color: #91959A;
}

/* =============================== */
.theme {
  background: var(--theme-color);
  color: var(--primary-color);
}

.theme__button {
  background: var(--primary-color);
  color: var(--theme-color);
}

body.login-page,
body.register-page {
  font-family: "Inter", sans-serif;
}

.main-btn {
  height: 48px;
  background-color: var(--brand-orange-color);
  border-color: var(--brand-orange-color);
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.btn-login-new {
  background-color: var(--ocean);
  border-color: var(--ocean);
}
.main-btn:hover {
  background-color: var(--brand-orange-hover-color);
  border-color: var(--brand-orange-hover-color);
}

.btn-login-new:hover {
  background-color: var(--ocean) !important;
  border-color: var(--ocean) !important;
}

.main-btn:active {
  background-color: var(--brand-orange-hover-color);
  border-color: var(--brand-orange-hover-color);
}
.main-btn:visited {
  background-color: var(--brand-orange-hover-color);
  border-color: var(--brand-orange-hover-color);
}
.main-btn:focus {
  background-color: var(--brand-orange-hover-color);
  border-color: var(--brand-orange-hover-color);
}
.main-btn.disabled, .main-btn:disabled {
  background-color: var(--brand-orange-15-color);
  border-color: var(--brand-orange-15-color);
  color: var(--brand-orange-color);
  opacity: 1;
  cursor: no-drop;
  pointer-events: all;
}
.btn-login-new.disabled, .btn-login-new:disabled {
  background-color: #3cb4b965;
  border-color: #3cb4b965;
  color: #fff;
  opacity: 1;
  cursor: no-drop;
  pointer-events: all;
}
.main-btn.disabled:focus, .main-btn:disabled:focus {
  box-shadow: none;
}
.main-btn.disabled svg path, .main-btn:disabled svg path {
  fill: var(--brand-orange-color);
}
.btn-login-new.disabled svg path , .btn-login-new:disabled svg path  {
  fill: #fff;
}
.input-wrap {
  position: relative;
}
.input-wrap:not(:last-of-type) {
  margin-bottom: 10px;
}
.input-wrap:last-of-type {
  margin-bottom: 10px;
}
.input-wrap input,
.input-wrap .dropdown-toggle {
  height: 50px !important;
  padding-left: 50px !important;
  border: 1.5px solid #f0f0f2;
}
.input-wrap i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.login-section {
  color: var(--brand-black-color);
}
.login-section .container {
  max-width: 1260px;
}
.login-section .inner-content {
  display: flex;
  justify-content: space-between;
}

.login-section .response-login,
.register-section .register-message {
  background-color: #E0595015;
  border-radius: 5px;
  border: 2px solid #E05950;
  padding: 20px;
  color: #0A141E;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
}

.login-section .response-login img {
  width: 20px;
  height: 20px;
}


.login-section .response-login .response-login-text {
  margin-left: 5px;
}

.login-section .inner-content {
  justify-content: space-between;
}
.login-section .inner-content .main-content,
.login-section .inner-content .text-content {
  max-width: 615px;
}

.login-section .register-message {
  display: flex;
}

@media (max-width:1300px)
{
  .login-section .inner-content .main-content,
  .login-section .inner-content .text-content {
    max-width: 545px;
  }
  .login-section .inner-content {
    justify-content: space-around;
  }
}

@media (max-width:991px)
{
  .login-section .inner-content .main-content,
  .login-section .inner-content .text-content {
    max-width: 98%;
  }

  .login-section .text-content {
    display: none;
  }
}

@media (max-width:525px)
{
  .login-section .inner-content .main-content{
    max-width: 90%;
  }

}

@media (min-width: 992px) {
  .login-section .inner-content {
    /* background-color: var(--brand-orange-15-color) !important; */
  }

  .profile-applications-page .main-content .applications .btn:hover .svg,
  #review-modal-characteristics .application-checkbox:not(:checked) ~ .btn:hover .svg,
  #review-modal-characteristics .effect-checkbox:not(:checked) ~ .btn:hover .svg,
  #review-modal-characteristics .smell-taste-checkbox:not(:checked) ~ .btn:hover .svg{
    filter: brightness(0) invert(1);
  }

  .navbar-pagination .btn-prev:hover {
    background-color: var(--brand-orange-color);
    color: var(--brand-white-color);
  }
  .navbar-pagination .btn-prev:hover svg path {
    fill: var(--brand-white-color);
  }
  .modal-content .accordion .btn-group .btn-check:hover + .btn {
    background: var(--brand-orange-color) !important;
    color: var(--brand-white-color) !important;
  }
  .modal-content .accordion .btn-group .btn-check:hover + .btn .svg path {
    fill: var(--brand-white-color) !important;
  }
  .login-section .main-content {
    /* max-width: 400px !important;
    background-color: var(--brand-transparent-color) !important; */
  }
  .modal-content .modal-body .col-12.col-sm-6.mb-3.mb-sm-0 > div {
    margin-right: 40px;
  }
  .login-section .text-content {
    background-color: var(--brand-orange-15-color) !important;
  }
}


.login-section .main-content {
  /* width: 100%;
  max-width: 680px; */
}
.login-section .main-content .main-title {
  margin-bottom: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-black-color);
}
.login-section .main-content input {
  height: 50px;
  border-radius: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0A141E;
}
.login-section .main-content .password-recovery {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-orange-color);
  text-align: right;
  text-decoration: none !important;
}
.login-section .main-content .login-with-title {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-black-color);
}
.login-section .main-content .login-with {
  width: 200px;
  margin-bottom: 24px;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-section .main-content .login-with .login-with-item {
  width: 43px;
  height: 43px;
  background-color: #ffffff;
  border-radius: 3px;
}
.login-section .main-content .login-with .login-with-item a {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-section .main-content hr {
  color: #ffffff;
  margin: 0 0 20px;
  opacity: 1;
}
.login-section .main-content .not-registered {
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-black-color);
}
.login-section .main-content .not-registered a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  color: var(--brand-orange-color);
}

.login-section .login-section-btns {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.login-section .login-section-btns button, 
.login-section .login-section-btns a {
  width: 47.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px)
{
  .login-section .main-logo {
    display: none !important; 
  }

  .login-section .login-section-btns {
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column-reverse;
  }

  .login-section .login-section-btns button,
  .login-section .login-section-btns a {
    width: 100%
  }
}

.login-section .main-btn svg {
  display: inline-block;
  margin-left: 12px;
}
.login-section .text-content {
  max-width: 680px;
}

.login-section .text-content h2 {
  font-family: "IBM Plex Serif", sans-serif;
}

.register-section .main-btn:nth-of-type(1) {
  margin-top: 0px;
}
.register-section .main-content .input-wrap:last-of-type {
  margin-bottom: 14px;
}

.restore-password-section .main-btn:nth-of-type(1) {
  margin-top: 0;
}

.new-password-section .main-btn:nth-of-type(1) {
  margin-top: 0;
}

.new-password-ok h1,
.letter-sent h1 {
  margin-bottom: 10px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}
.new-password-ok p,
.letter-sent p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--brand-black-color);
}
@media (min-width: 576px) {
  .new-password-ok p,
  .letter-sent p {
    font-size: 14px;
    line-height: 20px;
  }
}

.aside-nav-wrap {
  width: 293px;
  margin-right: 30px;
  color: var(--brand-white-color);
}


.aside-nav p {
  margin-bottom: 15px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: var(--brand-white-color);
}
.aside-nav li {
  border-bottom: 2px solid var(--brand-white-15-color);
}
.aside-nav .nav-link {
  padding: 15px 0 15px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--brand-white-color);
}
.aside-nav .nav-link.active {
  color: var(--brand-orange-color);
  pointer-events: none;
}
.aside-nav .nav-link:hover, .aside-nav .nav-link:focus {
  color: var(--brand-orange-color);
}

.profile-dropdown-menu {
  width: 95%;
  padding: 12px 15px 20px;
  inset: -3px auto auto -2px !important;
}
@media (min-width: 576px) {
  .profile-dropdown-menu {
    inset: -3px auto auto 0px !important;
  }
}
.profile-dropdown-menu li:not(:last-child) {
  margin-bottom: 7px;
}
.profile-dropdown-menu .dropdown-item {
  padding: 8px 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-dark-gray-color);
}
.profile-dropdown-menu .dropdown-item.active, .profile-dropdown-menu .dropdown-item:focus, .profile-dropdown-menu .dropdown-item:hover {
  color: var(--brand-orange-color);
  background-color: var(--brand-orange-15-color);
}
.profile-dropdown-menu .dropdown-item.active {
  pointer-events: none;
}

.input-wrap {
  margin-bottom: 20px;
}

.profile-page main > section {
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (min-width: 576px) {
  .profile-page main > section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.profile-page .toggle-btn {
  margin-top: 20px;
  margin-bottom: 32px;
  padding-left: 0;
  padding-bottom: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  border-radius: 0;
  border-bottom: 2px solid var(--brand-white-15-color);
  color: var(--brand-orange-color) !important;
  box-shadow: none !important;
}
.profile-page .toggle-btn svg {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.profile-page .title {
  margin-bottom: 25px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  color: var(--brand-white-color);
}
.profile-page h2 {
  margin-bottom: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-white-color);
}
.profile-page h2 strong {
  white-space: nowrap;
}
.profile-page strong {
  display: inline-block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--brand-dark-gray-color);
}
.profile-page input {
  font-family: "Inter";
}
.profile-page .save-btn {
  display: block;
  margin-top: 10px;
  margin-left: auto;
  padding: 13px 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--brand-white-color);
  background-color: var(--brand-orange-color);
}
.profile-page .save-btn:hover {
  background-color: var(--brand-orange-hover-color);
}
.profile-page .dropdown-toggle.show svg {
  transform: rotate(-180deg) translateY(50%);
}
@media (min-width: 576px) {
  .profile-page .title {
    font-size: 28px;
    line-height: 36px;
  }
  .profile-page h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .profile-page strong {
    font-size: 14px;
    line-height: 20px;
  }
}
.profile-page .topic-comments-loadmore {
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.profile-page .topic-comments-loadmore:hover {
  border-color: transparent;
  background-color: var(--brand-orange-10-hover-color);
}

.profile-info-page .disabled-field input,
.profile-info-page .disabled-email input {
  pointer-events: none;
  background: var(--brand-dark-gray-color);
  border: 1.5px solid var(--brand-light-gray-color);
}
.profile-info-page .disabled-field input::-moz-placeholder, .profile-info-page .disabled-email input::-moz-placeholder {
  color: var(--brand-black-color);
}
.profile-info-page .disabled-field input:-ms-input-placeholder, .profile-info-page .disabled-email input:-ms-input-placeholder {
  color: var(--brand-black-color);
}
.profile-info-page .disabled-field input::placeholder,
.profile-info-page .disabled-email input::placeholder {
  color: var(--brand-black-color);
}
.profile-info-page .input-images-wrap {
  display: flex;
  justify-content: start;
}
.profile-info-page .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.profile-info-page .inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background-color: black;
  display: inline-block;
}
.profile-info-page .inputfile:focus + label,
.profile-info-page .inputfile + label:hover {
  background-color: red;
}
.profile-info-page .inputfile:focus + label {
  outline: 1px dotted #000;
}
.profile-info-page .inputfile + label {
  cursor: pointer;
}
.profile-info-page .share-social {
  margin-bottom: 20px;
}
.profile-info-page .login-with {
  display: flex;
  align-items: center;
  max-width: 510px;
  flex-wrap: wrap;
}
.profile-info-page .login-with-item {
  max-width: 120px;
  margin-bottom: 20px;
  border-radius: 50px;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--brand-white-30-color);
}
.profile-info-page .login-with-item:not(:last-child) {
  margin-right: 20px;
}
.profile-info-page .login-with-item.active, .profile-info-page .login-with-item:hover {
  background-color: var(--brand-orange-color);
}
.profile-info-page .login-with-item.google-btn {
  padding-right: 15px;
}
.profile-info-page .login-with-item a {
  padding: 7px 15px 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}
.profile-info-page .login-with-item svg {
  flex-shrink: 0;
}
.profile-info-page .login-with-item strong {
  margin-left: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--brand-white-color);
}
.profile-info-page div.nsl-container.nsl-container-block .nsl-container-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
}
.profile-info-page div.nsl-container-block-fullwidth .nsl-container-buttons a,
.profile-info-page div.nsl-container-block .nsl-container-buttons a {
  flex: 0 1 !important;
  margin: 0 20px 20px 0 !important;
}
.profile-info-page div.nsl-container .nsl-button-default div.nsl-button-label-container {
  margin: 0 15px 0px 0px !important;
  padding: 8px 0 10px 0 !important;
  font-family: "Inter" !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 16px !important;
}
.profile-info-page .verify-badge p {
  background-color: #FF763C26;
  color: var(--rust);
  padding: 3px 6px 3px 12px;
  border-radius: 5px;
  text-transform: uppercase;
}

.profile-privacy-page .title {
  margin-bottom: 2px;
}
.profile-privacy-page .title + strong {
  display: none;
}
.profile-privacy-page h2 {
  margin-bottom: 2px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-white-color);
}
.profile-privacy-page strong {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.profile-privacy-page .checkbox-group {
  margin-top: 32px;
  margin-bottom: 44px;
}
.profile-privacy-page .form-check-custom:last-child {
  margin-bottom: 0;
}
.profile-privacy-page label {
  color: var(--brand-white-color);
}
@media (min-width: 576px) {
  .profile-privacy-page .title + strong {
    display: inline-block;
  }
  .profile-privacy-page h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .profile-privacy-page strong {
    font-size: 16px;
    line-height: 24px;
  }
  .profile-privacy-page .checkbox-group {
    margin-top: 0px;
  }
}

.profile-applications-page .title {
  margin-bottom: 2px;
}
.profile-applications-page .checked-section .item {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.profile-applications-page .checked-section .item .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0;
  margin-right: 40px;
  background: var(--brand-orange-color);
  color: var(--brand-white-color);
  cursor: no-drop;
}
.profile-applications-page .checked-section .item .btn svg path {
  fill: var(--brand-white-color);
}
.profile-applications-page .checked-section .item .btn .svg {
  filter: brightness(0) invert(1);
}
.profile-applications-page .checked-section .application-date-onset {
  padding: 5px;
  width: 100px;
  height: 43px;
  border-radius: 10px;
  text-align: center;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--brand-dark-gray-color);
}
.profile-applications-page .checked-section .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
}
.profile-applications-page .checked-section .delete {
  height: auto;
  width: 20px;
  border: none;
  padding: 0;
  background-color: var(--brand-transparent-color);
}
.profile-applications-page .content {
  display: flex;
  flex-direction: column;
}
.profile-applications-page .content .btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
  padding: 8px 15px 8px 38px;
  margin-bottom: 10px;
  background: var(--brand-white-color);
  border-radius: 50px !important;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--brand-black-color);
  flex-grow: 0;
  transition: 0.1s;
}
.profile-applications-page .content .btn svg,
.profile-applications-page .content .btn .svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.profile-applications-page .content .btn-check:focus + .btn,
.profile-applications-page .content .btn:focus {
  box-shadow: none;
}
.profile-applications-page .content .btn:hover {
  background: var(--brand-orange-color) !important;
  color: var(--brand-white-color) !important;
}
.profile-applications-page .content .btn:hover svg path {
  fill: #FFFFFF !important;
}
.profile-applications-page .content > .btn-check:checked + .btn {
  background: var(--brand-orange-color) !important;
  color: var(--brand-white-color) !important;
}
.profile-applications-page .content > .btn-check:checked + .btn svg path {
  fill: #FFFFFF !important;
}
.profile-applications-page .content.choose-group {
  margin-bottom: 18px;
}

.modal-content {
  border: none !important;
}
.modal-content .modal-body .col-12.col-sm-6.mb-3.mb-sm-0 .form-label {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .modal-content .modal-body .col-12.col-sm-6.mb-3.mb-sm-0 .form-label {
    justify-content: flex-end;
  }
}
.modal-content .btn-close {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid var(--brand-orange-color);
  background-image: url("/wp-content/themes/greeners/assets/img/icons/modal-btn-close.svg");
  opacity: 0.8;
}
.modal-content .btn-close:hover {
  opacity: 1;
}
.modal-content .simple-rating {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .modal-content .simple-rating {
    justify-content: flex-end;
  }
}

.fa-star-o {
  color: var(--brand-orange-15-color);
}

.fa-star {
  color: var(--brand-orange-color) !important;
}

.modal-content input.input-error,
.modal-content textarea.input-error {
  border: 1px solid #ff0000 !important;
}
.modal-content .input-images {
  cursor: pointer !important;
}
.modal-content .image-uploader {
  border: 1.5px dashed #C2C4C7;
  border-radius: 10px;
  min-height: 6rem !important;
  height: 120px;
}
.modal-content .image-uploader .upload-text {
  color: var(--brand-dark-gray-color);
}
.modal-content .image-uploader .upload-text i {
  position: relative;
  padding-left: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}
.modal-content .image-uploader .upload-text i:first-letter {
  text-transform: uppercase;
}
.modal-content .image-uploader .upload-text i::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/greeners/assets/img/icons/photo-camera-icon-orange.svg");
  /* background: url("http://localhost/greensby-local/wp-content/themes/greeners/assets/img/icons/photo-camera-icon-orange.svg"); */
}
.modal-content .image-uploader .upload-text span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
@media (min-width: 576px) {
  .modal-content .image-uploader .upload-text span {
    font-size: 14px;
    line-height: 20px;
  }
}
.modal-content .image-uploader.has-files {
  margin-bottom: 80px !important;
}
.modal-content .image-uploader.has-files .upload-text {
  display: flex !important;
}
.modal-content .image-uploader .uploaded {
  position: absolute !important;
  top: 135px !important;
  height: 50px !important;
  padding: 0 !important;
  margin: 0 10px 0 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
}
.modal-content .image-uploader .uploaded .uploaded-image {
  position: relative !important;
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  margin: 0 8px 10px 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.modal-content .image-uploader .uploaded .uploaded-image img {
  height: 50px !important;
  width: 50px !important;
}
.modal-content .image-uploader .uploaded .uploaded-image .delete-image {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 0 !important;
  background: url("/wp-content/themes/greeners/assets/img/icons/icon-close.svg");
  background-size: contain;
}
.modal-content .image-uploader .uploaded .uploaded-image .delete-image i {
  display: none;
}
.modal-content .main-btn {
  width: 100%;
}
@media (min-width: 576px) {
  .modal-content .main-btn {
    width: 212px;
  }
}
.modal-content .main-btn svg {
  display: inline-block;
  margin-left: 12px;
}
.modal-content .accordion-wrap {
  margin-bottom: 40px;
}
.modal-content .accordion .accordion-body {
  padding: 0 0 10px;
}
.modal-content .accordion .accordion-item {
  border-bottom: 1px solid #F0F0F2 !important;
}
.modal-content .accordion .accordion-button {
  padding-left: 0;
  padding-right: 0;
  background-color: var(--brand-white-color) !important;
}
.modal-content .accordion .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}
.modal-content .accordion .accordion-button::after {
  background-image: url("/wp-content/themes/greeners/assets/img/icons/icon-arrow-down.svg") !important;
}
.modal-content .accordion .accordion-button:focus {
  box-shadow: none !important;
}
.modal-content .accordion p {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--brand-black-color);
}
.modal-content .accordion span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-dark-gray-color);
}
.modal-content .accordion .btn-group {
  flex-wrap: wrap;
}
.modal-content .accordion .btn-group .btn {
  position: relative;
  height: 34px;
  padding: 8px 15px 8px 38px;
  margin-bottom: 10px;
  background: var(--brand-orange-15-color);
  border-radius: 50px !important;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--brand-black-color);
  flex-grow: 0;
}
.modal-content .accordion .btn-group .btn svg,
.modal-content .accordion .btn-group .btn .svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.modal-content .accordion .btn-group .btn-check:focus + .btn,
.modal-content .accordion .btn-group .btn:focus {
  box-shadow: none;
}
.modal-content .accordion .btn-group .btn-check:checked + .btn {
  background: var(--brand-orange-color) !important;
  color: var(--brand-white-color) !important;
}
.modal-content .accordion .btn-group .btn-check:checked + .btn .svg path {
  fill: var(--brand-white-color) !important;
}

.modal-content .accordion .btn-group.choose-group {
  margin-bottom: 18px;
}
.modal-content .accordion .btn-group strong {
  height: 34px;
  padding: 8px 0px;
  margin-right: 20px;
  margin-bottom: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-dark-gray-color);
}
.modal-content .accordion .toggle-btn-wrap {
  width: 100%;
}
.modal-content .accordion a#listToggle {
  position: relative;
  display: inline-flex;
  vertical-align: baseline;
  width: 90px;
  margin-top: 5px;
  margin-right: auto;
  text-decoration: underline;
  color: var(--brand-orange-color) !important;
}
.modal-content .accordion a#listToggle::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  background-image: url("/wp-content/themes/greeners/assets/img/icons/icon-arrow-down.svg") !important;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
}
.modal-content .accordion a#listToggle span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--brand-orange-color) !important;
}
.modal-content .accordion a#listToggle span:nth-of-type(2) {
  display: none;
}
.modal-content .accordion a#listToggle.full span:nth-of-type(1) {
  display: none;
}
.modal-content .accordion a#listToggle.full span:nth-of-type(2) {
  display: block;
}
.modal-content .accordion a#listToggle.full::after {
  transform: rotate(-180deg);
}
.modal-content .modal-ok-message {
  position: relative;
  background-color: var(--brand-white-color);
}
.modal-content .modal-ok-message .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-content .modal-ok-message .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-content .modal-ok-message svg {
  margin-bottom: 20px;
}
.modal-content .modal-ok-message h3 {
  margin-bottom: 10px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  color: var(--brand-black-color);
}
.modal-content .modal-ok-message strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--brand-dark-gray-color);
}

.reviews-empty {
  max-width: 725px;
  margin-top: 30px;
}
.reviews-empty strong {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}
.reviews-empty .btn-wrap {
  display: flex;
}
.reviews-empty .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: none !important;
  box-shadow: none !important;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-white-color);
  background-color: var(--brand-orange-color);
}
.reviews-empty .btn:not(:last-child) {
  margin-right: 20px;
}
.reviews-empty .btn:hover {
  background-color: var(--brand-orange-hover-color);
  border-color: var(--brand-orange-hover-color);
}
@media (min-width: 375px) {
  .reviews-empty .btn:nth-child(3) {
    margin-left: 10px;
  }
}
@media (min-width: 576px) {
  .reviews-empty {
    margin-top: 55px;
  }
  .reviews-empty strong {
    font-size: 18px;
    line-height: 27px;
  }
  .reviews-empty .btn-wrap {
    justify-content: flex-start;
  }
  .reviews-empty .btn {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .reviews-empty .btn:nth-child(2) {
    margin-left: 20px;
  }
  .reviews-empty .btn:hover {
    background-color: var(--brand-orange-hover-color);
    border-color: var(--brand-orange-hover-color);
  }
}

.comments-list > li {
  background-color: var(--brand-white-color);
  font-family: "Inter";
}
.comments-list .title-wrap h2 {
  margin: 0;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  color: var(--brand-black-color);
}
.comments-list .title-wrap a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 29px;
  text-decoration: underline;
  color: var(--brand-orange-color);
}
.comments-list .title-wrap + div {
  margin-top: 25px;
}
@media (min-width: 576px) {
  .comments-list .title-wrap h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .comments-list .title-wrap a {
    font-size: 16px;
  }
}

.trash-btn {
  background-color: transparent;
  border: none;
  transition: 0.2s;
  z-index: 9999;
}
.trash-btn:hover svg path {
  fill: var(--brand-white-color);
}

.profile-comments-page .comments-list > li li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.profile-comments-page .comments-list .badge {
  margin-bottom: 4px;
}
.profile-comments-page .comments-list .title-wrap + div p:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.profile-comments-page .comments-list .title-wrap + div p:nth-child(2) span {
  font-family: "Inter";
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}
.profile-comments-page .comments-list .title-wrap + div p:nth-child(2) strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-black-color);
}
.profile-comments-page .comments-list .title-wrap + div ~ p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.profile-comments-page .reviews-empty .btn {
  width: 100%;
}
@media (min-width: 576px) {
  .profile-comments-page .comments-list .title-wrap + div p:nth-child(2) span {
    font-size: 14px;
    line-height: 20px;
  }
  .profile-comments-page .comments-list .title-wrap + div p:nth-child(2) strong {
    font-size: 16px;
    line-height: 24px;
  }
  .profile-comments-page .comments-list .title-wrap + div ~ p {
    font-size: 16px;
    line-height: 24px;
  }
  .profile-comments-page .reviews-empty .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.profile-reviews-page .comments-list .title-wrap + div {
  margin-top: 25px;
}
.profile-reviews-page .comments-list .text-block .btn {
  position: relative;
  padding: 0;
  padding-right: 40px;
  display: flex;
  align-items: center;
  box-shadow: none !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--brand-orange-color);
}
.profile-reviews-page .comments-list .text-block .btn::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  background-image: url("/wp-content/themes/greeners/assets/img/icons/icon-arrow-down.svg");
}
.profile-reviews-page .comments-list .text-block .btn:not(.collapsed)::after {
  transform: rotate(-180deg) translateY(-2px);
}
.profile-reviews-page .comments-list .text-block .card {
  padding: 0;
  border: none;
}
@media (min-width: 576px) {
  .profile-reviews-page .comments-list .text-block .btn {
    font-size: 16px;
    line-height: 22px;
  }
}

.profile-questions-page .comments-list button {
  font-weight: 500;
}
.profile-questions-page .comments-list .btn {
  position: relative;
  display: flex;
  align-items: center;
}
.profile-questions-page .comments-list .text-green {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.profile-questions-page .comments-list .main-content > div > p:nth-of-type(2) {
  font-size: 16px !important;
  line-height: 24px !important;
}
@media (min-width: 576px) {
  .profile-questions-page .comments-list .main-content > div > p:nth-of-type(2) {
    font-size: 18px !important;
    line-height: 25px !important;
  }
}
.profile-questions-page .comments-list .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9em;
}
.profile-questions-page .comments-list .point i {
  cursor: pointer;
}

.profile-for-all-page .login-section {
  padding: 0;
}
.profile-for-all-page .login-section .login-with {
  margin-bottom: 60px;
}
.profile-for-all-page .login-section .login-with .login-with-item {
  background-color: var(--brand-white-15-color);
}
.profile-for-all-page .profile-empty .img-wrap {
  border: none;
}
.profile-for-all-page .profile-empty .title .badge {
  display: none;
}
.profile-for-all-page .profile-empty .person-check {
  display: none;
}
.profile-for-all-page .profile-empty.full .img-wrap {
  position: relative;
}
.profile-for-all-page .profile-empty.full .img-wrap.verified {
  border: 2px solid var(--brand-green-badge-color);
}
.profile-for-all-page .profile-empty.full .img-wrap .person-check {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  right: 0;
  bottom: 0;
  background-color: var(--brand-green-badge-color);
  border-top-left-radius: 10px;
}
.profile-for-all-page .profile-empty.full .title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.profile-for-all-page .profile-empty.full .title .badge {
  display: block;
  height: 20px;
  margin: 10px 0 0 20px;
  padding: 5px 6px;
  color: var(--brand-green-badge-color);
  background-color: var(--brand-green-15-badge-color);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .profile-for-all-page .profile-empty.full .title .badge {
    margin-bottom: 2px;
  }
}
@media (min-width: 576px) {
  .profile-for-all-page .profile-empty.full .login-section {
    display: block !important;
  }
}
.profile-for-all-page .empty h2 {
  margin-bottom: 27px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
}
.profile-for-all-page .empty strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 576px) {
  .profile-for-all-page .empty h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 36px;
  }
  .profile-for-all-page .empty strong {
    font-size: 18px;
    line-height: 25px;
  }
}

.profile-empty > div h3 {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: var(--brand-white-color);
}
.profile-empty > div strong {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--brand-dark-gray-color);
}
.profile-empty > div p:last-of-type span {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: var(--brand-white-color);
}
.profile-empty > h2 {
  margin-bottom: 27px;
}
.profile-empty > strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.profile-empty > strong:not(:last-of-type) {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .profile-empty > div h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .profile-empty > div strong {
    font-size: 14px;
    line-height: 20px;
  }
  .profile-empty > div p:last-of-type span {
    font-size: 14px;
    line-height: 20px;
  }
  .profile-empty > h2 {
    margin-bottom: 30px;
  }
  .profile-empty > strong {
    font-size: 18px;
    line-height: 25px;
  }
  .profile-empty > strong:not(:last-of-type) {
    margin-bottom: 60px;
  }
}

.profile-favorites-page .subtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--brand-white-color);
}
.profile-favorites-page .products-count span,
.profile-favorites-page .products-count strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-dark-gray-color);
}
@media (min-width: 576px) {
  .profile-favorites-page .products-count span,
  .profile-favorites-page .products-count strong {
    font-size: 16px;
    line-height: 24px;
  }
}
.profile-favorites-page .nav-pills .nav-item {
  margin-right: 10px;
}
.profile-favorites-page .nav-pills .nav-item:nth-child(2) {
  /* margin-right: 30px; */
}
.profile-favorites-page .nav-pills a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  background-color: var(--brand-white-1-color);
  height: 44px;
}
.profile-favorites-page .nav-pills a.active {
  background-color: var(--brand-orange-15-color) !important;
  color: var(--brand-orange-color) !important;
}
.profile-favorites-page .nav-pills a:hover {
  background-color: var(--brand-orange-15-color);
}
.profile-favorites-page .comments-list {
  flex-wrap: wrap;
}
.profile-favorites-page .comments-list > li {
  background-color: var(--brand-white-1-color);
  width: 100%;
  min-width: 298px;
  flex-direction: column;
  display: flex;
}
.profile-favorites-page .comments-list > li section {
  display: flex;
  flex-direction: column;
  /* flex: 1 0 auto; */
  flex-grow: 1;
}
.profile-favorites-page .reviews-empty .btn:nth-child(3) {
  background-color: var(--brand-transparent-color);
  border: 1px solid var(--brand-orange-color) !important;
  color: var(--brand-orange-color);
}
.profile-favorites-page .reviews-empty .btn:nth-child(3):hover {
  background-color: var(--brand-orange-hover-color);
  color: var(--brand-white-color);
}
@media (min-width: 768px) {
  .profile-favorites-page .comments-list > li {
    background-color: var(--brand-white-1-color);
    width: 48%;
  }

  .profile-favorites-page .comments-list > li section {
    display: flex;
    flex-direction: column;
    /* flex: 1 0 auto; */
    flex-grow: 1;
  }
}
@media (min-width: 1400px) {
  .profile-favorites-page .comments-list > li {
    width: 31%;
  }
  .profile-favorites-page .comments-list > li:not(:nth-child(3n)) {
    margin-right: 26px;
  }
}

.favorite-topics-list li {
  max-width: 300px;
}
.favorite-topics-list .topic-img {
  position: relative;
  width: auto;
  height: 262px;
}
.favorite-topics-list .topic-img-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 48px;
  width: 48px;
  background-color: var(--brand-white-color);
}
.favorite-topics-list .badge-topic {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  flex-shrink: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.favorite-topics-list h3 {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}
.favorite-topics-list h3 + p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.favorite-topics-list span {
  display: inline-block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-dark-gray-color);
}
.favorite-topics-list a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .favorite-topics-list li {
    max-width: none;
  }
  .favorite-topics-list .topic-img {
    width: 197px;
  }
}
@media (min-width: 1400px) {
  .favorite-topics-list li {
    max-width: 455px;
  }
}

.navbar-pagination .pagination {
  flex-wrap: wrap;
}
.navbar-pagination .pagination .page-item {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--brand-orange-color);
  border-radius: 5px;
}
.navbar-pagination .pagination .page-item {
  margin-right: 10px;
}
.navbar-pagination .pagination .page-item.active {
  color: #fff;
  background-color: var(--brand-orange-15-color);
  border-color: var(--brand-transparent-color);
}
.navbar-pagination .pagination .page-item .page-link {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-color: transparent;
  background-color: transparent;
  color: var(--brand-orange-color) !important;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.navbar-pagination .pagination .page-item:not(.active):hover {
  background-color: var(--brand-orange-color);
  border-color: var(--brand-orange-color);
}
.navbar-pagination .pagination .page-item:not(.active):hover .page-link {
  color: var(--brand-white-color) !important;
}
.navbar-pagination > div {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: nowrap;
}
.navbar-pagination .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--brand-white-color);
}
.navbar-pagination .main-btn:first-child {
  margin-right: 10px;
}
.navbar-pagination .main-btn.inactive {
  background-color: var(--brand-transparent-color);
  border-color: var(--brand-orange-color);
  color: var(--brand-orange-color);
}
.navbar-pagination .main-btn.inactive svg {
  margin-left: 0;
  margin-right: 12px;
}
.navbar-pagination .main-btn.mobile-btn {
  width: 48px;
}
.navbar-pagination .main-btn.mobile-btn svg {
  margin: 0;
}
.navbar-pagination .main-btn.mobile-btn:last-child {
  margin-left: 6px !important;
}
.navbar-pagination .main-btn svg {
  display: inline-block;
  margin-left: 12px;
}
.navbar-pagination .main-btn:hover {
  background-color: var(--brand-orange-color);
  color: var(--brand-white-color);
}
.navbar-pagination .main-btn:hover svg path {
  fill: var(--brand-white-color);
}
.navbar-pagination .btn-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: var(--brand-transparent-color);
  border-color: var(--brand-orange-color);
  color: var(--brand-orange-color);
}
.navbar-pagination .btn-prev svg {
  margin-left: 0;
  margin-right: 12px;
}
.navbar-pagination .btn-prev.mobile-btn {
  width: 48px;
  height: 48px;
}
.navbar-pagination .btn-prev.mobile-btn svg {
  margin: 0;
}

.navbar-pagination .btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--brand-orange-color);
  border-color: var(--brand-orange-color);
  color: var(--brand-white-color);
}
.navbar-pagination .btn-next svg {
  margin-left: 12px;
}
.navbar-pagination .btn-next.mobile-btn {
  width: 48px;
  height: 48px;
}
.navbar-pagination .btn-next.mobile-btn svg {
  margin: 0;
}
.navbar-pagination .btn-next:hover {
  background-color: var(--brand-orange-hover-color);
}

.page-404 section {
  padding-bottom: 100px;
}
.page-404 img.main-404-image {
  max-width: 830px;
  width: 100%;
  height: auto;
}
.page-404 .content {
  max-width: 680px;
}
.page-404 h1 {
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  color: var(--brand-white-color);
}
.page-404 strong {
  max-width: 620px;
  display: flex;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-dark-gray-color);
}
.page-404 .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-white-color);
}
@media (min-width: 576px) {
  .page-404 h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .page-404 strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .page-404 .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    line-height: 24px;
  }
}

.privacy-policy-page main h1 {
  margin-bottom: 30px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: var(--brand-black-color);
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
}
.privacy-policy-page main h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.privacy-policy-page main h3 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "IBM Plex Serif";
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 49px;
  color: var(--brand-black-color);
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
}
.privacy-policy-page main p {
  margin-bottom: 15px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--brand-black-color);
}
.privacy-policy-page main p strong {
  display: inline-block;
  margin-bottom: 5px;
}
.privacy-policy-page main blockquote {
  background-color: var(--brand-dark-gray-color);
  padding: 30px 15px 0;
  border-style: dotted;
  border-width: 3px;
}
.privacy-policy-page main blockquote p {
  color: var(--brand-white-color);
}
.privacy-policy-page main blockquote strong {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--brand-white-color);
}
.privacy-policy-page main ul {
  margin: 0 0 20px;
}
.privacy-policy-page main ul li {
  align-items: baseline !important;
  margin: 0 0 10px 0 !important;
}
.privacy-policy-page main ul li:before {
  content: "";
  flex-shrink: 0 !important;
  display: inline-block !important;
  width: 10px;
  height: 10px;
  margin: 0 15px 0 0;
  border-radius: 2px;
  background-color: var(--brand-orange-color);
}
.privacy-policy-page main a {
  display: inline-block !important;
  color: var(--brand-orange-color) !important;
  word-break: break-word;
}
.privacy-policy-page main a:hover {
  color: var(--brand-orange-hover-color);
}
@media (min-width: 576px) {
  .privacy-policy-page main h1 {
    margin-bottom: 40px;
    font-size: 56px;
    line-height: 67px;
  }
  .privacy-policy-page main h2 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px;
  }
  .privacy-policy-page main p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}

#review-modal-characteristics .application-checkbox:checked ~ .btn .svg,
#review-modal-characteristics .effect-checkbox:checked ~ .btn .svg,
#review-modal-characteristics .smell-taste-checkbox:checked ~ .btn .svg {
  filter: brightness(0) invert(1);
}

.main-logo, .footer-logo,
.main-logo img, .footer-logo img {
  width: 146px;
  max-height: 45px;
}

img[data-lazyloaded] {
  opacity: 0;
}

img.litespeed-loaded {
  -webkit-transition: opacity .5s linear 0.2s;
  -moz-transition: opacity .5s linear 0.2s;
  transition: opacity .5s linear 0.2s;
  opacity: 1;
}

.home-register-user.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.dropdown-item {
  cursor: pointer;
}