@charset 'UTF-8';

:root {
  --color-1: #060606;
  --color-2: #870f12;
  --color-3: #ffe300;
  --color-4: #a22326;
  --font-main: 'Montserrat', sans-serif;
  --transition: .2s ease-in-out;
}

* {
  font-family: var(--font-main);
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input {
  --bs-border-radius: 0;
}

.fancybox__container * {
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#main {
  flex-grow: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

[data-lazy-image] {
  opacity: 0;
}

.mobile {
  display: none;
}

.awmodal .header {
  padding-top: 16px;
  padding-bottom: 16px;
}
.awmodal .header span {
  font-family: var(--font-2);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1em;
}
.awmodal .header button {
  top: 11px;
}
.awmodal p {
  margin: 0 0 1em;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-2);
  font-weight: 700;
}

.red {
  color: red !important;
}

b, strong {
  font-family: var(--font-1);
  font-weight: 700;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-basis: auto;
}
main {
  flex-grow: 1;
  flex-basis: auto;
}

#back-top {
  position: fixed;
  left: 25px;
  bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-5);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
  z-index: 2;
}
#back-top:hover {
  background: var(--color-4);
  transition: .2s ease-in-out;
}
#back-top.active {
  opacity: 1;
  visibility: visible;
}
#back-top svg,
#back-top path {
  color: var(--color-7);
  fill: var(--color-7);
}

#awmodals {
  z-index:100;
}

/*iframe {
  width: 100%;
  max-width: 600px;
  height: 225px;
  object-fit: cover;
  object-position: center;
}
*/
.breadcrumb {
  margin: 1em 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb .home a {
  line-height: 12px;
}
.breadcrumb .home svg {
  line-height: 16px;
}
.breadcrumb li {
  position: relative;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb li a {
  color: var(--color-2);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb li a:hover {
  color: var(--color-5);
}
.breadcrumb .divider {
  color: var(--color-2);
  margin: 0 6px;
  font-size: 14px;
  line-height: 0;
  font-weight: 400;
}
.breadcrumb span {
  opacity: .5;
}
.breadcrumb a span {
  opacity: .9;
}

.pagination ul.pagination-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination ul.pagination-list li {
  display: inline-block;
  margin: 0 3px;
}
.pagination ul.pagination-list li a,
.pagination ul.pagination-list li span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 1em;
  text-decoration: none;
  color: var(--main-font-color);
  transition: var(--transition);
}
.pagination ul.pagination-list li a:hover {
  color: var(--color-4); 
  transition: var(--transition);
}
.pagination ul.pagination-list li span {
  color: var(--color-6);
  border-radius: 3px;
}
.pagination ul.pagination-list li.pagination-start span,
.pagination ul.pagination-list li.pagination-prev span,
.pagination ul.pagination-list li.pagination-next span,
.pagination ul.pagination-list li.pagination-end span {
  background: transparent;
  color: var(--color-7);
}

.seo-image {
  width: 100%;
  max-width: 490px;
  height: 250px;
  float: left;
  margin: 0 40px 40px 0;
}
.seo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.seo-text,
.seo-text * {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
}
.seo-text p {
  margin: 0 0 1em;
}
.seo-text h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
  font-weight: 800;
}

.cookie-agreement {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 15px;
  background: var(--color-7);
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  color: var(--color-1);
}
.cookie-agreement a {
  color: var(--color-1);
  transition: var(--transition);
  display: inline-block;
  margin: 0 25px 0 0;
}
.cookie-agreement a:hover {
  color: var(--color-4);
}
.cookie-agreement .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1em;
}

.item-page.errorpage p {
  text-align: center;
}

.image.empty {
  background: var(--color-8) url(/images/logo.png) no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 5px;
  opacity: .1;
  -webkit-animation: loading 3s infinite;
     -moz-animation: loading 3s infinite;
          animation: loading 3s infinite;
}
@-webkit-keyframes loading { 0% { opacity: .1 } 50% { opacity: .3 } 100% { opacity: .1 } }
   @-moz-keyframes loading { 0% { opacity: .1 } 50% { opacity: .3 } 100% { opacity: .1 } }
        @keyframes loading { 0% { opacity: .1 } 50% { opacity: .3 } 100% { opacity: .1 } }

.btn {
  display: inline-block;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1em;
  background: var(--btn-default);
  border: 0;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  color: var(--color-7);
  text-decoration: none;
}
.btn:hover {
  background: var(--btn-default-hover);
}
.btn.yellow,
.btn.yellow-2 {
  background: var(--btn-yellow);
  color: var(--color-2);
}
.btn.yellow:hover {
  background: var(--btn-yellow-hover);
}
.btn.yellow-2:hover {
  color: var(--color-7);
  background: var(--btn-default);
}
.btn.grey {
  background: var(--btn-grey);
  color: var(--color-2);
}
.btn.grey:hover {
  background: var(--btn-grey-hover);
}
.btn.outline {
  background: var(--btn-grey);
  border: 1px solid var(--btn-grey-hover);
  color: var(--color-1);
}
.btn.outline:hover {
  background: var(--btn-default);
  border: 1px solid var(--btn-default);
  color: var(--color-7);
}
label.input-label,
label.file-label {
  display: block;
  margin: 0 0 8px;
}
label.input-label span,
label.file-label span {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-2);
}
label.input-label input,
label.input-label textarea,
label.file-label input {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 1em;
  padding: 16px 24px;
  transition: var(--transition);
  outline: none;
  resize: none;
}
label.file-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
label.file-label input { order: 2 }
label.file-label span { order: 1 }

.form-info {
  margin: 16px 0;
  font-size: 12px;
  line-height: 1.2em;
  color: var(--color-2);
  opacity: .9;
}
.form-info a {
  color: var(--color-2);
}
.form-info .privacy {
  margin-bottom: 0;
  text-align: center;
}

.mobile {
  display: none;
}

.block,
.homepage .block.videos {
  padding: 30px 0;
}
.block#quiz-1 {
  padding-bottom: 0;
}
.block.videos {
  padding: 70px 0 0;
}
.block.videos.black {
  margin-top: 70px;
}
.block .block-header, .block .block-header * {
	margin: 0;
	font-family: var(--font-2);
	color: var(--color-1);
	font-size: 38px;
	line-height: 1.2em;
	font-weight: 600;
}
.block .block-header {
  margin-bottom: 50px;
}
.block.grey {
  background: var(--color-6);
}
.block.green {
  background: var(--color-5);
}
.block.green .block-header,
.block.green .block-header * {
  color: var(--color-7);
}
.before {
  text-align: center;
  font-size: 16px;
  line-height: 1.3em;
  color: var(--color-1);
  opacity: .7;
  margin-bottom: 25px;
}
.after {
  text-align: center;
  margin-top: 25px;
}

.hero-items {}
.hero-item {
  width: 100%;
  height: 440px !important;
  max-height: 440px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.hero-item:before {
  content: '';
  display: block;
  position: absolute;
  right: -95%;
  top: -100%;
  background: var(--color-6);
  width: 150%;
  height: 300%;
  border-radius: 50%;
  z-index: -1;
}
.hero-item .info {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
}
.hero-item .info .title {
  font-family: var(--font-2);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-2);
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero-item .info .subtitle,
.hero-item .info .subtitle * {
  font-family: var(--font-2);
  font-weight: 700;
}
.hero-item .info .subtitle {
  font-size: 57px;
  color: var(--color-4);
  line-height: 57px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero-item .info .subtitle small {
  font-size: 32px;
  line-height: 1em;
}
.hero-item .info .button {
  margin-top: 32px;
}
.hero-item .image {
  width: 850px;
  max-width: 100%;
  height: 440px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-item .image.empty {
  background: transparent;
}
.hero-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.icons-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.icons-item {
  flex: 0 0 calc(100% / 4 - 20px);
  margin: 30px 10px 0;
  text-align: center;
  text-decoration: none;
}
.icons-item .image {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}
.icons-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.icons-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--color-2);
  opacity: .9;
}
.icons-item span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.3em;
  color: var(--color-2);
  opacity: .8;
}

.block.about .icons-item {
  flex: 0 0 calc(100% / 5 - 20px);
}
.block.about .icons-item .image {
  width: 100%;
  max-width: 150px;
  height: 90px;
}
.form-floating > label {
	left: 5px;
}
.block.questions {
  padding: 35px 0;
  background: var(--color-2);
}
.block.questions .block-header {
  margin-bottom: 25px;
  text-align: center;
}
.block.questions .block-header h3 {
	color: #fff;
}
.block.questions form .input-label {
  margin: 0 8px 0 0;
}
.block.questions form input {
  padding: 14px 20px;
  background: rgba(255,255,255,.3);
  border-right: 0;
}
.block.questions form input:hover, .block.questions form input:active, .block.questions form input:focus {
	border-color: #fff;
}
.block.questions form input::placeholder {
  color: #fff;
}
.block.questions p.form-info {
  margin: 0;
  text-align: center;
  line-height: 1.7em;
  color: var(--color-7);
}
.block.questions p.form-info .red {
  color: var(--color-7) !important;
}
.block.questions p.form-info a {
  color: var(--color-7);
  transition: .1s ease;
}
.block.questions p.form-info a:hover {
  color: var(--color-4);
  transition: .1s ease;
}
.block.questions .btn {
	padding: 21px 54px;
}
.form-control:focus {
	color: var(--color-2);
}
.was-validated .privacy-agreement input[type="checkbox"]:invalid {
	box-shadow: 0 0 10px var(--bs-form-invalid-border-color);
}
.questions-form .btn {
  margin-left: .5rem;
}
footer .nav {
  background: var(--color-7);
  margin: 0;
  padding: 0 15px;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .nav a,
footer .nav span {
  display: block;
  font-size: 13px;
  line-height: 1em;
  padding: 25px 20px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-1);
  transition: var(--transition);
}
footer .nav span,
footer .nav a:hover {
  color: var(--color-4);
}
footer .info {
	padding: 25px 0;
}
footer .info .row {
  align-items: center;
}
footer .info .about {}
footer .info .about .logo {
	display: block;
	text-decoration: none;
	width: 300px;
	height: auto;
}
footer .info .about .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
footer .info .about p {
  margin: 30px 0 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.5em;
}
footer .info .about p span {
  display: block;
  color: var(--color-5);
  font-size: 28px;
  margin: 5px 0;
}
footer .company {
  margin: 0 25px;
}
footer .company h2 {
  margin: 0 0 15px;
  font-size: 25px;
  line-height: 1.5em;
}
footer .company p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5em;
}
footer .contacts {
  min-width: 314px;
}
footer .contacts .phone,
footer .contacts .email {
	color: inherit;
  text-align: right;
}
footer .contacts .phone a,
footer .contacts .email a {
  font-size: 16px;
  line-height: 1.3em;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
footer .contacts .phone a {
  font-size: 24px;
  line-height: 1.5em;
}
footer .contacts .phone a:hover,
footer .contacts .email a:hover {
  color: var(--color-4);
}
footer .socials-items {
  justify-content: end;
  margin-right: 50px;
}
footer .copyright {
  padding: 16px 0;
  font-size: 14px;
  line-height: 1em;
}
footer .copyright a {
  color: var(--color-6);
  transition: var(--transition);
}
footer .copyright a:hover {
  color: var(--color-7);
}
footer .info .container,
footer .copyright .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .copyright .captcha {
  flex: 1;
  margin: 0 25px;
  text-align: center;
  font-size: 12px;
}

.item-page {}
.item-page .page-header h1,
.item-page .page-header h2 {
  color: var(--color-1);
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 15px 0;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 1px;
}
.item-page .page-header h1:after,
.item-page .page-header h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: calc(100% + 30px);
  height: 3px;
  background: var(--color-5);
}
.item-page .page-header {
  border-bottom: 1px solid #ddd;
  margin: 0;
  margin-bottom: 15px;
}
.item-page p {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.3em;
  color: var(--color-1);
  opacity: .9;
}
.item-page p,
.item-page a,
.item-page ul {
  color: var(--color-1);
}
.item-page ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}
.item-page ul li {
  display: block;
  margin: 15px 0 15px 25px;
  font-size: 18px;
  line-height: 1.3em;
  color: var(--color-1);
  opacity: .9;
  position: relative;
}
.item-page ul li:before {
  content: '';
  position: absolute;
  left: -25px;
  top: 8px;
  display: block;
  width: 10px;
  height: 10px;
  background: #367c2b;
}

.shadow_block {
  display: block;
  width: 100%;
  height: 410px;
  margin-bottom: 15px;
  position: relative;
  background-color: #aaa;
  background-size: cover !important;
  background-position: center !important;
}
.shadow_block.shadow_block_1 {
  background: url(/images/finance-01.jpg) no-repeat;
}
.shadow_block.shadow_block_2 {
  background: url(/images/finance-02.jpg) no-repeat;
}
.shadow_block.shadow_block_3 {
  background: url(/images/finance-03.jpg) no-repeat;
}
.shadow_block .shadow_block_caption {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
  padding: 0 20px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: var(--transition);
}
.shadow_block:hover .shadow_block_caption {
  background: rgba(0,0,0,0.2);
  transition: var(--transition);
}

.partners-items {}
.partners-items .row {
  align-items: center;
}
.partners-item {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 170px;
  opacity: .5;
  transition: var(--transition-2);
}
.partners-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-2);
  filter: grayscale(100%);
}
.partners-item:hover {
  opacity: 1;
}
.partners-item:hover img {
  filter: grayscale(0%);
}

.sort {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 10px;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--color-5);
}
.sort-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1em;
  margin-right: 10px;
}
.sort-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sort-item {
  display: block;
  font-size: 13px;
  line-height: 1em;
  margin: 0 5px;
  opacity: .4;
  padding: 3px 0 2px;
  border-bottom: 1px dotted var(--color-1);
  cursor: pointer;
  transition: var(--transition);
}
.sort-item:hover {
  opacity: .7;
}
.sort-item.up,
.sort-item.down {
  opacity: 1;
  color: var(--color-5);
}
.sort-item.up:after,
.sort-item.down:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 10px;
  background-size: contain !important;
  background-position: center !important;
  margin-left: 2px;
}
.sort-item.up:after {
  background: url(/images/icons/arrow-up.svg) no-repeat;
}
.sort-item.down:after {
  background: url(/images/icons/arrow-down.svg) no-repeat;
}
.sort-items .div {
  margin: 0 5px;
  font-size: 12px;
  color: var(--color-6);
}

.categories-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.categories-items .row {
  width: 100%;
}
.catalog .categories-items {
  max-width: initial;
}
.categories-item {
  display: block;
  flex: 0 0 calc(100% / 3 - 30px);
  text-align: center;
  text-decoration: none;
}
.categories-item .image {
  display: block;
  height: 225px;
  margin-bottom: 15px;
}
.categories-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  transition: .1s ease;
}
.categories-item:hover .image img {
  transform: scale(1.025);
  transition: .1s ease;
}
.categories-item strong {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-2);
  line-height: 1.2em;
  transition: var(--transition);
}
.categories-item:hover strong {
  color: var(--color-5);
}

.products-items {}
.products-items .row {
  align-items: stretch;
}
.products-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: 1px 1px 3px rgba(90,90,90,.3);
  border: 1px solid transparent;
}
.products-item:hover {
  box-shadow: 3px 3px 10px rgb(90 90 90 / 60%);
  border: 1px solid var(--color-5);
}

.labels {
  position: absolute;
  left: 0px;
  top: 10px;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.labels .label {
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 1em;
  background: var(--color-5);
  color: var(--color-7);
  margin: 4px 0;
  padding: 4px 8px;
  position: relative;
}
.labels .label:before {
  content: '';
  position: absolute;
  display: block;
  width: 5px;
  height: 100%;
  left: -5px;
  top: 0;
  background: var(--color-5);
}
.labels .label:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right: 5px solid #111;
  left: -10px;
  top: calc( 100% - 5px );
  z-index: -1;
}
.labels .label.label-ef-1,
.labels .label.label-ef-1:before {
  background: var(--color-9);
}
.labels .label.label-ef-24,
.labels .label.label-ef-24:before {
  background: var(--color-4);
}
.labels .label.label-1 {
}
.labels .label.label-2 {
}
.labels .label.label-3 {
}
.labels .label.label-4 {
}


.products-item .image {
  display: block;
  width: 100%;
  height: 250px;
  margin: 0 auto;
  text-decoration: none;
}
.products-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
/*  mix-blend-mode: multiply;*/
}
.products-item .name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px;
  height: 52px;
  background: var(--color-7);
  color: var(--color-2);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2em;
}
.products-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  background: #d9e4e477;
  color: var(--color-4);
}
.products-item .extra {
  flex: 1;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.products-item .extra .option {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.products-item .extra .option span {
  font-size: 14px;
  line-height: 1em;
  color: var(--color-1);
}
.products-item .extra .option span:last-of-type {
  color: var(--color-5);
}
.products-item .extra .option .sp {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,.1);
  margin: 0 8px;
}
.products-item .price {
  display: block;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-5);
  text-align: center;
  pointer-events: none;
}
.products-item .price > a {
  text-decoration:none;
  color:inherit;
}

.products-item .btn {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-7);
}

.jshop_pagination {
  text-align: center;
  background: var(--color-7);
  margin: 16px 0;
  padding: 8px;
}
.jshop_pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.jshop_pagination ul li {
  margin: 0 4px;
}
.jshop_pagination ul li a,
.jshop_pagination ul li span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-1);
  opacity: 1;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  font-size: 15px;
  line-height: 15px;
}
.jshop_pagination ul li a:hover,
.jshop_pagination ul li span {
  background: var(--color-5);
  color: var(--color-7);
}
.jshop_pagination ul li.pagination-start span,
.jshop_pagination ul li.pagination-prev span,
.jshop_pagination ul li.pagination-next span,
.jshop_pagination ul li.pagination-end span {
  opacity: .2; 
  background: transparent;
  color: var(--color-1);
}
.jshop_pagination .pagination_result_counter {
  font-size: 13px;
  line-height: 1.3em;
  margin-top: 8px;
}
.maps .maps-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.maps .maps-option {
  font-size: 18px;
  line-height: 1em;
  color: var(--color-2);
  padding: 20px 25px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.maps .maps-option:hover {
  color: var(--color-4);
}
.maps .maps-option:after {
  content: '';
  position: absolute;
  right: -2px;
  top: 6px;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ddd;
}
.maps .maps-option:first-of-type {
  padding-left: 0;
}
.maps .maps-option:last-of-type {
  padding-right: 0;
}
.maps .maps-option:last-of-type:after {
  display: none;
}
.maps .maps-option.active {
  color: var(--color-5);
  cursor: initial;
}
.maps .maps-items {
  height: 400px;
  position: relative;
  background: #eee;
}
.maps .maps-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.maps .maps-item iframe {
  max-width: 100%;
  height: 400px;
}
.maps .maps-item.active {
  opacity: 1;
  visibility: visible;
}
.contact-info {}
.contact-info p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-2);
}
.contact-info p strong {
	color: var(--color-1);
  flex: 0 0 130px;
  font-weight: 400;
  opacity: .8;
}
.contact-info p a {
  color: var(--color-2);
  transition: var(--transition);
}
.contact-info p a:hover {
  color: var(--color-4);
}
.contact-info p .phone {
  text-decoration: none;
  transition: var(--transition);
  font-size: 22px;
  line-height: 1em;
}
.contact-info p .phone:hover {
  color: var(--color-4);
}

.mobile_filters_header {
  display: none;
}
.filters {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  margin-bottom: 15px;
}
.filters .header {
  color: var(--color-2);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--color-5);
}
.filters .mobile_header {
  display: none;
}
.filters .item {
  margin: 15px 0;
}
.filters .item .field {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-6);
  margin-bottom: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
}
.filters .item .field span {
  transition: .1s ease;
}
.filters .item .field:hover span {
  color: var(--color-5);
  transition: .1s ease;
}
.filters .item .field:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url(/images/icons/chevron-down.svg) no-repeat;
  background-size: cover !important;
  margin-right: 8px;
}
.filters .item.active .field:before {
  background: url(/images/icons/chevron-up.svg) no-repeat;
}
.filters .item .values {
  display: none;
}
.filters .item.active .values {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -3px;
}
.filters .item.active .values.has-slider {
  display: block;
}
.filters .values .item {
  margin: 0 3px;
}
.filters .values .item input {
  display: none;
}
.filters .values .item span {
  display: block;
  font-size: 12px;
  line-height: 1em;
  padding: 6px 10px;
  background: var(--color-6);
  color: var(--color-2);
  cursor: pointer;
  border-radius: 3px;
  margin-bottom: 5px;
  transition: var(--transition);
}
.filters .values .item span:hover {
  background: var(--color-4);
  color: var(--color-2);
}
.filters .values .item input:checked + span {
  background: var(--color-5);
  color: var(--color-7);
}
.filters .slider_filter_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto;
  color: var(--color-6);
}
.filters .slider_filter_text input {
  max-width: 90px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 0 5px;
  font-size: 14px;
  line-height: 1em;
  border-radius: 3px;
  transition: .1s ease;
}
.filters .slider_filter_text input:hover {
  border-color: var(--color-5);
  transition: .1s ease;
}
.filters .btn {
  display: block;
  width: 100%;
  margin-top: 15px;
}

.awmodal .input-label {
  margin: 0 0 10px;
}
.awmodal .input-label input,
.awmodal .input-label textarea,
.awmodal .file-label input {
  padding: 8px 16px;
  border: 1px solid var(--color-6);
}
.awmodal .file-label input {
  padding: 8px;
  font-size: 14px;
}
.awmodal .input-label sup {
  display: inline-block;
  margin-left: 2px;
}
.awmodal .button .btn {
  width: 100%;
}
.awmodal .form-info {
  margin: 10px 0;
}
.awmodal .form-info.privacy {
  margin-bottom: 0;
  text-align: center;
  font-size: 12px;
  max-width: 218px;
  margin-left: auto;
  margin-right: auto;
}

.videos-item {
  position: relative;
}
[data-youtube] {
  display: block;
  width: 560px;
  max-width: 100%;
  height: 240px;
  background: #eee;
}
[data-youtube] svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: .1s ease;
}
[data-youtube]:hover svg {
  transform: translate(-50%,-50%) scale(1.1);
  transition: .1s ease;
}
[data-youtube] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.videos-item div {
  width: 420px;
  max-width: 100%;
  height: 240px;
}
.videos-item div iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product .images {
  display: flex;
  width: 636px;
  flex-direction: row;
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
.product .images .main {
  flex: 0 0 495px;
  display: block;
  width: 100%;
  height: 395px;
  margin-right: 10px;
}
.product .images .main a {
  display: block;
  width: 100%;
  height: 395px;
  position: relative;
}
.product .images .main a span {
  display: block;
  width: 65px;
  height: 65px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: var(--color-4);
  color: var(--color-5);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0,0,0,1);
}
.product .images .main a span:hover {
  background: var(--color-5);
  color: var(--color-4);
}
.product .images .main a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product .images .thumbs {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.product .images .thumbs .thumb {
  display: block;
  width: 130px;
  height: 125px;
  margin-bottom: 10px;
  position: relative;
}
.product .images .thumbs .thumb:nth-child(3) {
  margin-bottom: 0;
  position: relative;
}
.product .images .thumb span {
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  color: #ff0000;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0,0,0,1);
}
.product .images .thumb span svg {
  width: 36px;
  height: 36px;
  position: absolute;
  top: -6px;
  left: -6px;
  transition: var(--transition);
}
.product .images .thumb:hover span svg {
  width: 42px;
  height: 42px;
  position: absolute;
  top: -9px;
  left: -9px;
  transition: var(--transition);
}
.product .images .thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product .images .thumbs .more {
  position: absolute;
  bottom: 50px;
  left: calc(100% - 95px);
  z-index: 2;
  display: block;
  width: 60px;
  padding: 10px 0;
  background: rgba(0,0,0,.8);
  color: orange;
  font-size: 11px;
  line-height: 1em;
  text-align: center;
  pointer-events: none;
}
.product .buttons {
  margin: 10px -10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.product .buttons .btn {
  flex: 1;
  margin: 5px 10px 0;
}
.product .price-block {
  margin: 35px 0;
}
.product .price {
  color: #444;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 5px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  pointer-events: none;
}
.product .price > a {
  text-decoration:none;
  color:inherit;
}
.product .description,
.product .fields {
  margin-bottom: 25px;
}
.product .fields li {
  font-size: 17px;
  margin: 10px 0 0 25px;
}
.fancybox__html5video,
.fancybox__iframe {
  max-width: initial;
}

.awmodal .offer-info {
  font-size: 17px;
  line-height: 1.3em;
  margin: 0 0 20px;
  color: #444;
  text-align: center;
}
.awmodal .telegram {
  margin: 15px 40px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.awmodal .telegram .icon {
  flex: 0 0 35px;
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.awmodal .telegram span,
.awmodal .telegram span * {
  font-size: 14px;
  line-height: 1.3em;
  color: #444;
}

.wiki .tabs {}
.wiki .tabs-controls {
  border-bottom: 3px solid var(--color-5);
}
.wiki .tabs-control {
  display: inline-block;
  padding: 13px 24px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  background: #eee;
  cursor: pointer;
  color: #484848;
  border-top: 3px solid #ddd;
  transition: var(--transition);
}
.wiki .tabs-control:hover {
  border-top: 3px solid var(--btn-yellow);
}
.wiki .tabs-control.active {
  background: var(--color-5);
  color: #fff;
  border-top: 3px solid var(--color-5);
}
.wiki .tabs-items {
  position: relative;
}
.wiki .tabs-item {
  padding: 25px 0;
  position: absolute;
  opacity: 0;
  transition: var(--transition);
}
.wiki .tabs-item.active {
  position: relative;
  opacity: 1;
  display: block !important;
}
.wiki .tabs-item h3 {}
.wiki .tabs-item ul {}

.awmodal#thanks ul {
  padding-left: 13px;
  margin-top: 0;
}
.awmodal#thanks ul li {
  margin: 0 0 7px;
  font-size: 14px;
}
.noUi-handle,
.noUi-handle:before,
.noUi-handle:after {
  transition: .1s ease;
}
.noUi-handle:hover {
  border-color: var(--color-5);
  transition: .1s ease;
  cursor: pointer;
}
.noUi-handle:hover:before,
.noUi-handle:hover:after {
  background-color: var(--color-5);
  transition: .1s ease;
}
.vm__wrapper {
  position: fixed;
  z-index: 10;
  left: 25px;
  bottom: 25px;
}
.vm__wrapper .vm__close {
  position: absolute;
  z-index: 11;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;  
  display: block;
  cursor: pointer;
}
.vm__wrapper .vm__close_icon {
  width: 22px;
  height: 22px;
  z-index: 11;
  background: rgba(0,0,0,.1);
  border-radius: 50%;
  transition: .1s linear;
  position: absolute;
  top: 0;
  right: 0;
}
.vm__wrapper .vm__close:hover .vm__close_icon {
  background: rgba(0,0,0,.5);
  transition: .1s linear;
}
.vm__wrapper .vm__close svg {
  width: 22px !important;
  height: 22px !important;
}
.vm__wrapper .vm__inner {
  display: block;
  width: 130px;
  height: 180px;
  max-width: calc( 100vw - 50px );
  max-height: calc( 100vh - 250px );
  border: 3px solid #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 25px rgba(24,24,24,.15);
  overflow: hidden;
  cursor: pointer;
  transition: .1s linear;
  background: rgba(24,24,24,.8);
}
.vm__wrapper.horizontal .vm__inner {
  width: 225px;
  height: 130px;
  max-width: calc( 100vw - 250px );
  max-height: calc( 100vh - 50px );
}
.vm__wrapper.opened .vm__inner {
  width: 318px;
  height: 566px;
  border-color: #367c2b
}
.vm__wrapper.horizontal.opened .vm__inner {
  width: 566px;
  height: 318px;
}
.vm__wrapper:hover .vm__inner {
  width: 140px;
  height: 190px;
  border-color: #367c2b
}
.vm__wrapper.horizontal:hover .vm__inner {
  width: 235px;
  height: 140px;
  border-color: #367c2b;
}
.vm__wrapper.opened:hover .vm__inner {
  width: 318px;
  height: 566px;
}
.vm__wrapper.horizontal.opened:hover .vm__inner {
  width: 566px;
  height: 318px;
}
.vm__wrapper .vm__inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.join-tg {
  width: 100%;
  max-width: 340px;
  margin: 24px auto;
}
.join-tg .image {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 300px;
  margin: 0 auto 24px;
}
.join-tg .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.join-tg p {
  margin: 0 0 16px;
}
.join-tg p > strong {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3em;
}
.join-tg .center {
  text-align: center;
}
.join-tg .btn {
  color: #fff;
  margin: 0 auto;
}
.contact-form .row {
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-form form input,
.contact-form form textarea {
  background: #e5efef;
}
#awmodals .awmodal {
  max-width: 360px;
}
#awmodals #thanks.awmodal {
  max-width: 330px;
}
.socials-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#footer .socials-items {
  justify-content: flex-start;  
}
#footer .socials-items .socials-item:first-child {
  margin-left:  0;
}
.socials-item {
  display: block;
  cursor: pointer;
  margin: 0 8px;
  text-decoration: none;
  color: #333;
}
.socials-item.wh,
.socials-item.wh * {
  color: #0DC143 !important;
}
.socials-item.vb,
.socials-item.vb * {
  color: #794E9B !important;
}
.socials-item.tg,
.socials-item.tg * {
  color: #2098D4 !important;
}
footer {
  margin-top: 50px;
}
.homepage footer {
  margin-top: 0;
}
.contact-info a {
  color: var(--color-1);
  transition: var(--transition);
}
.contact-info a:hover {
  color: var(--color-4);
  transition: var(--transition);
}
.leasing-header {
  text-align: center;
  margin-top: 50px;
}
.leasing-item img {
  width: 100%;
}
.portfolio-item {
  height: 300px;
  display: block;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hover-slider-indicator {
  position: absolute;
  top: auto;
  right: 0;
  bottom: .75rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-slider-indicator-dot {
  background-color: white;
  opacity: .75;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  margin-left: .1rem;
  margin-right: .1rem;
}
.hover-slider-indicator-dot.active {
  background-color: var(--color-5);
  opacity: 1;
}

.tooltip {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.8);
  border-radius: 5px;
  color: #eee;
  font-size: 10px;
  line-height: 1.3em;
  padding: 7px 10px;
  z-index: 9999;
  transform: translate(-50%,-150%);
  pointer-events: none;
  -webkit-box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  box-shadow: 3px 3px 10px rgba(0,0,0,.3);
}
.products-item .controls {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.products-item .controls .compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgba(24,24,24,.5);
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 0;
  outline: none;
}
.products-item:hover .controls .compare {
  opacity: 1;
  visibility: visible;
}
.products-item .controls .compare.active {
  opacity: 1;
  visibility: visible;
  background: var(--color-4);
}

.btn.small {
  padding: 6px 10px 7px;
  font-size: 13px;
  line-height: 1em;
}

.compare-items .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
.compare-items table {
  border-collapse: collapse;
  overflow-x: auto;
  overflow-y: auto;
  max-width: 100%;
  position: relative;
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
}
.compare-items table::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, #d0368a 0%, #708ad4 99%);
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
  border-radius: 100px;
}
.compare-items table tr {
  background: #f6f6f6;
}
.compare-items table tr:nth-child(even) {
  background: #f1f1f1;
}
.compare-items table th,
.compare-items table td {
  padding: 4px;
  font-size: 12px;
  line-height: 1.3em;
  font-weight: 400;
  color: #242424;
  text-align: left;
  border: 1px solid #ccc;
  min-width: 259px;
  white-space: nowrap;
}
.compare-items table th {
  position: sticky;
  left: -1px;
  background: #f6f6f6;
}
.compare-items table tr:nth-child(even) th {
  background: #f1f1f1;
}
.compare-items table .empty {
  border: 0;
  border-right: 1px solid #ccc !important;
  background: #fff;
}
.compare-items table td {
  text-align: center;
}
.compare-items table a {
  display: block;
  color: #242424;
  margin-bottom: 3px;
  transition: var(--transition);
}
.compare-items table a:hover {
  color: var(--color-4);
}
.compare-items table .btn.small {
  padding: 3px 5px;
  font-size: 10px;
  line-height: 1em;
}
.errorpage #main > .container {
  text-align: center;
  padding-top: 50px;
}
#compare-link {
  position: fixed;
  left: 25px;
  bottom: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-4);
  transition: .2s ease-in-out;
  z-index: 2;
  display: none;
}
#compare-link:hover {
  background: var(--color-5);
}
#compare-link.active {
  display: block;
}
#compare-link svg, #compare-link path {
  color: var(--color-7);
  fill: var(--color-7);
}
#compare-link svg {
  position: absolute;
  top: 26px;
  left: 26px;
}
#compare-link span {
  position: absolute;
  top: 40px;
  right: 10px;
  background: var(--color-5);
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}
.search-form {
  display: flex;
  max-width: 400px;
}
.search-form .input-label {
  margin: 0;
}
.block.seo {
  background: #d9e4e4;
  padding: 30px 0;
}
.block.seo * {
  color: #6a6a6a;
}
.seo__header h1 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px;
}
.seo__text h2 {
  font-size: 14px;
  font-weight: 400;  
  margin-top: 0;
  margin-bottom: 5px;
}
.seo__text p {
  
}
.seo__images {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}
.seo__images .image {
  width: 25%;
  height: 200px;
  margin-right: 15px;
}
.seo__images .image:last-child {
  margin-right: 0;
}
.seo__images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}
.text-center {
  text-align: center;
}
.quick-search-no-result {
  text-align: center;
}
.quick-search-no-result p {
  margin: 0 0 10px;
  font-size: 14px;
}
.quick-search-no-result .btn {
  padding: 7px 15px 8px;
}
.text-center .loader-circle {
  margin: 0 auto;
}
@-webkit-keyframes L_circle_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes L_circle_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes L_stroke_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}
@keyframes L_stroke_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}
@-webkit-keyframes L_stroke_fix {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@keyframes L_stroke_fix {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@-webkit-keyframes L_stroke_left_grow {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes L_stroke_left_grow {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes L_stroke_right_grow {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@keyframes L_stroke_right_grow {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.loader-circle .loader-stroke::before, .loader-circle .loader-stroke-right::before, .loader-circle .loader-stroke-left::before {
  content: "";
  display: block;
}

.loader-circle, .loader-circle .loader-stroke, .loader-circle .loader-stroke::before, .loader-circle .loader-stroke-right, .loader-circle .loader-stroke-right::before, .loader-circle .loader-stroke-left, .loader-circle .loader-stroke-left::before {
  width: 2em;
  height: 2em;
  box-sizing: border-box;
  border-radius: 50%;
}

.loader-circle .loader-stroke::before, .loader-circle .loader-stroke-right::before, .loader-circle .loader-stroke-left::before {
  border-style: solid;
  border-width: 0.2142857143em;
  border-color: #588669;
}

.loader-circle .loader-stroke-right, .loader-circle .loader-stroke-left::before {
  position: absolute;
  clip: rect(0 2em 2em 1em);
}
.loader-circle .loader-stroke-right::before, .loader-circle .loader-stroke-left {
  position: absolute;
  clip: rect(0 1em 2em 0);
}
.loader-circle .loader-stroke::before {
  position: absolute;
  clip: rect(0 1.05em 1em 0.95em);
}

.loader-circle {
  -webkit-animation: L_circle_rotate 1568.2352941176ms linear infinite both;
          animation: L_circle_rotate 1568.2352941176ms linear infinite both;
}
.loader-circle .loader-stroke::before,
.loader-circle .loader-stroke-right, .loader-circle .loader-stroke-left {
  -webkit-animation: L_stroke_fix 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: L_stroke_fix 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.loader-circle .loader-stroke {
  -webkit-animation: L_stroke_rotate 5332ms steps(4) infinite both;
          animation: L_stroke_rotate 5332ms steps(4) infinite both;
}
.loader-circle .loader-stroke-right::before {
  -webkit-animation: L_stroke_right_grow 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: L_stroke_right_grow 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.loader-circle .loader-stroke-left::before {
  -webkit-animation: L_stroke_left_grow 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: L_stroke_left_grow 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}


.loader-circle.w-12px .loader-stroke::before,
.loader-circle.w-12px .loader-stroke-right::before, .loader-circle.w-12px .loader-stroke-left::before {
  border-width: 12px;
}
.loader-circle.slow {
  -webkit-animation: L_circle_rotate 5332ms linear infinite both;
          animation: L_circle_rotate 5332ms linear infinite both;
}
.awmodal .form-info.agreement {
  margin-bottom: 0;
  text-align: center;
  font-size: 12px;
  margin-left: auto;
  margin-right: auto;
}

.categories-item .title {
	color: #fff;
	font-weight: bold;
	transition: var(--transition);
	background: var(--color-2);
	display: inline-block;
	padding: 0.5rem 2.5rem;
}
.categories-item:hover .title {
  color: var(--color-3);
}

.color-2 {
	text-color: var(--color-2);
}
.productitem {
  text-decoration: none;
  text-align: center;
}
.productitem .image {
	display: block;
	height: 300px;
	margin-bottom: 15px;
}
.productitem .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.productitem .name {
	color: var(--color-1);
	font-weight: bold;
	transition: var(--transition);
}
.productitem:hover .name {
  color: var(--color-2)
}
.questions-form {
	padding: 50px 0;
	max-width: 700px;
	margin: 0 auto;
}
.btn {
	--bs-btn-border-radius: 0;
}
.btn-primary {
  background: var(--color-2);
  color: #fff;
}
.btn-primary:hover {
	background: var(--color-4);
  color: #fff;
}
.productfull {
	position: relative;
	z-index: 1;
	color: var(--bs-body-color);
}
.productfull .images {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
}
.productfull .images .main-image {
	order: 2;
	flex: 1;
	margin: 0 15px;
	width: 100%;
	/* max-width: 600px; */
	height: 460px;
}
.productfull .images .main-image a, .productfull .images .thumbs-item a {
	display: block;
	width: 100%;
	height: 100%;
}
.productfull .main-image .count {
	display: none;
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 4px 8px;
	background: rgba(195,148,8,.85);
	color: #fff;
	font-size: 14px;
	line-height: 100%;
	white-space: nowrap;
}
.productfull .images .main-image img, .productfull .images .thumbs-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.productfull .images .thumbs-items {
	order: 1;
	flex: 0 0 100px;
	margin: -20px 15px;
}
.productfull .images .thumbs-item {
	width: 100px;
	height: 100px;
	margin: 20px 0;
	position: relative;
}
.privacy-agreement {
  display: flex;
  align-items: center;
}
.questions .privacy-agreement {
  color: #fff;
}
.privacy-agreement input {
  margin-right: 7px;
}
.privacy-agreement span {
  font-size: 12px;
  line-height: 14px;
}
.privacy-agreement a {
	color: inherit;
	transition: var(--transition);
}
.privacy-agreement a:hover {
	color: var(--color-3);
}
#description-tab-pane {
  padding-top: 20px;
}
#description-tab-pane th,
#description-tab-pane td {
  border: 1px solid #ccc;
  padding: 3px 5px
}
.slider a {
  display: block;
}
.slider img {
  width: 100%;
}
footer .privacy {
  margin-right: 0.5rem;
}
.product-tab-content {
  padding: 20px 0;
}
.block.questions form input {
	padding: 10px 20px;
	background: #fff;
	border-right: 0;
	height: 100%;
	min-height: 0;
}
.btn-outline-v2 {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-v2:hover {
  background: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-2);
}
.npc {}
.npc .container {}
.npc .g-0 {
	margin: 0;
}
.npc .p-0 {
	padding: 0;
}
.npc-top {
	padding: 0;
	border-top: 1px solid #e5e5e5;
}
.npc-top .images {
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	border-right: 1px solid #e5e5e5;
}
.npc-top .images .thumbs {
	flex: 0 0 120px;
	margin: 0;
}
.npc-top .images .thumbs .image {
	width: 120px;
	height: 120px;
	margin: .25rem 0;
	border: 3px solid transparent;
	transition: .2s ease-in-out;
	cursor: pointer;
	opacity: .5;
	border-radius: .5rem;
	overflow: hidden;
}
.npc-top .images .thumbs .image:hover,
.npc-top .images .thumbs .image.slick-current {
	border: 3px solid #870f12;
	opacity: 1;
}
.npc-top .images .thumbs .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.npc-top .images .fulls {
	flex: 1;
	width: 100%;
	max-width: calc(100% - 120px - 2rem);
	padding: 1rem;
	margin: 0 auto;
}
.npc-top .images .fulls .image {
	width: 100%;
	max-width: 640px;
	height: auto;
	max-height: 480px;
}
.npc-top .images .fulls .image a {
	display: block;
	width: 640px;
	max-width: 100%;
	height: 480px;
}
.npc-top .images .fulls .image a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.npc-top .image.noimage {
	width: 240px;
	height: 100%;
	margin: 0 auto;
	opacity: .25;
}
.npc-top .image.noimage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.npc-top [data-thumbs-slider] {
	padding: 2.25rem 0;
	position: relative;
}
.npc-top .slick-prev, .npc-top .slick-next {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	font-size: 0;
	background: transparent;
	border: 0;
}
.npc-top .slick-prev {
	top: .5rem;
}
.npc-top .slick-next {
	top: initial;
	bottom: .5rem;
}
.npc-top .slick-prev:before,
.npc-top .slick-next:before {
	position: absolute;
	left: .5rem;
	top: .5rem;
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
}
.npc-top .slick-prev:before {
	border-top: 2px solid #242424;
	border-left: 2px solid #242424;
	transform: rotate(45deg);
}
.npc-top .slick-next:before {
	border-bottom: 2px solid #242424;
	border-right: 2px solid #242424;
	transform: rotate(45deg);
}
.npc-top .info .title {
	padding: 1.5rem;
	border-bottom: 1px solid #e5e5e5;
}
.npc-top .info .title h1 {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: #242424;
	margin: 0;
}
.npc-top .info .prices {
	padding: 1.5rem;
}
.npc-top .info .prices .price {
	font-size: 2.5rem;
	color: #870f12;
	font-weight: 900;
	line-height: 3rem;
}
.npc-top .info .prices .old-price {
	font-size: 1.5rem;
	color: #999;
	font-weight: 400;
	margin: 0 5px;
	text-decoration: line-through;
}
.npc-top .info .buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 1rem;
	margin: 0;
}
.npc-top .info .buttons .btn {
	margin-right: 7px;
}
.npc-top .info .buttons .btn:last-child {
	margin-right: 0;
}
.npc-top .info .buttons button, .npc-top .info .buttons .btn {
	white-space: nowrap;
	text-transform: initial;
	font-size: 1rem;
	line-height: 1rem;
	text-shadow: initial;
}
.btn.btn-outline {
	border: 1px solid #870f12;
	padding: 18px 15px;
	background: #fff;
	text-shadow: 0 0 2px rgba(0,0,0,.5);
	transition: .2s ease-in-out;
	height: 56px;
}
.btn-outline svg {
  margin-top: 2px;
}
.npc-top .info .buttons button {
	padding: 1.25rem 1rem;		
}
.npc-top .info .buttons button.w-50,
.npc-top .info .buttons .btn.w-50 {
	width: calc(100% / 2 - .6rem);
}
.npc-top .info .buttons button.w-100 {
	width: calc(100% - .6rem);
}
.btn.btn-blue {
	background: #24BDE7;
	color: #fff;
}
.btn.btn-yellow {
	background: #F9A11B;
	color: #fff;
}
.npc-top .details {
	padding: 1.5rem;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}
.npc-top .details a {
	text-decoration: none;
	color: #242424;
}
.npc-top .details span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.npc-top .details span svg {
	margin-left: 1rem;
}
.npc-top .advantages {
	padding: 1.5rem;
	margin: 0;
}
.npc-top .advantages-items {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: -1rem -.5rem 0;
}
.npc-top .advantages-item {
	flex: 0 0 calc(50% - 1rem);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin: 1rem .5rem 0;
}
.npc-top .advantages-item .icon {
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	margin-right: .75rem;
}
.npc-top .advantages-item .icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.npc-top .advantages-item span {
	font-size: .85rem;
	line-height: .85rem;
}
#productTabs {
	border: 0;
	width: 100%;
}
#productTabs > li {
	flex-grow: 1;
}
#productTabs > li > .nav-link {
	width: 100%;
	border-radius: 0;
	border: 0;
	border-top: 1px solid #e5e5e5;
	color: #000;
	text-transform: uppercase;
	padding: 11px 0 12px;
	transition: var(--transition);
	text-align: center;
}
#productTabs > li > .nav-link.active {
	border-color: var(--color-2);
	background: var(--color-2);
	color: #fff;
}
.questions-form .form-floating > label {
	padding: 1.25rem .75rem;
}
.block .block-header {
	margin-bottom: 50px;
	background: var(--color-2);
	color: #fff;
	text-align: center;
	font-size: 28px;
	padding: .5rem;
}
@media screen and (max-width: 1199px)
{
	.npc-top .info .buttons svg {
	  width: 100%;
	}
}
@media screen and (max-width: 992px)
{
	footer .company {
		margin: 15px 0;
	}
	footer .contacts .phone, footer .contacts .email {
	  text-align: left;
	}
	footer .info .container, footer .copyright .container {
	  flex-wrap: wrap;
	}
	footer .copyright .container > * {
	  width: 50%;
	  margin-bottom: .5rem;
	}
	footer .privacy {
	  margin-right: 0;
	}
	.npc-top .info .buttons .btn {
	  margin-right: 0;
	  margin-bottom: 7px;
	  width: 200px !important;
	}
	.npc-top .advantages-item {
		flex: 100%;
	}
}
@media screen and (max-width: 767px)
{
	.block {
		padding: 15px 0;
	}
	.block .block-header, .block .block-header * {
		font-size: 24px;
	}
	.item-page p,
	#description-tab-pane * {
		font-size: 14px;
	}
	.npc-top .images .thumbs {
		flex: 0 0 80px;
		width: 80px;
	}
	.npc-top .images .thumbs .image {
		width: 80px;
		height: 80px;
	}
	.npc-top .images .fulls .image a {
		width: 100%;
		height: 320px;
	}
	.npc-top .images .fulls {
		max-width: calc(100% - 20px - 2rem);
	}
	.npc-top .images .fulls .image a img {
		object-fit: contain;
	}
	.npc-top .info .prices .price {
		font-size: 2rem;
	}
	.npc-top .info .buttons {
		flex-direction: column;
	}
	.npc-top .info .buttons button.w-50, .npc-top .info .buttons .btn.w-50 {
		width: 100%;
		text-align: center;
	}
	.npc-top .info .prices {
		text-align: center;
	}
}
@media screen and (max-width: 575px)
{
	.block .block-header {
		margin-bottom: 30px;
		font-size: 24px;
	}
	.block.questions form .d-flex {
	  flex-wrap: wrap;
	}
	.block.questions form .form-control,
	.block.questions form .btn {
	  width: 100%;
	}
	.block.questions form .form-control {
	  border-right: var(--bs-border-width)solid var(--bs-border-color);
	  margin-bottom: 0.5rem;
	}
	.questions-form {
		padding: 40px 20px;
	}
	footer .copyright .container > * {
	  width: 100%;
	}
	footer .copyright .captcha {
	  text-align: left;
	  margin-left: 0;
	  margin-right: 0;
	}
	.productitem .image {
		height: 225px;
	}
	.productfull .images,
	.productfull .images .main-image {
		margin-left: 0;
		margin-right: 0;
	}
	.productfull .images .thumbs-items {
		margin: 0;
	}
	.productfull .images .thumbs-item {
		margin: 0 .25rem;
	}
	.questions-form .btn {
		margin-left: 0;
	  margin-top: .5rem;
	}
}