

/* Start:/local/components/ds-st/ad.banner.top/templates/top/style.css?1757629630789*/
.box-ad-top{
    overflow: hidden;
    background: #0080ff;
    padding: 2px;
    height: 35px;
    /*line-height: 50px;*/
    line-height: 30px;
    text-align: center;
}

.box-ad-top span{
    color:#ffffff;
    text-align: left;
    font-size: 13px;
}

.box-ad-top a{
    color:#ffffff;
    /*font-size: 13px;
    padding: 6px 10px;*/
    font-size: 12px;
    padding: 4px 10px;
    border:1px solid #ffffff;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .box-ad-top {
        height: auto;
        text-align: center;
        line-height: 20px;
        padding: 10px;
    }
    .box-ad-top a{
        display: block;
        margin: 7px auto 0px;
        width: 200px;

    }
}
@media screen and (max-width:760px){
    .box-ad-top{
        display: none!important;
    }
}

/* End */


/* Start:/local/templates/tkb-v2/assets/css/style.css?175762962954430*/
@charset "UTF-8";
* {
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  touch-action: manipulation;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

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

[data-src],
[data-srcset] {
  min-width: 1px;
  min-height: 1px;
  opacity: 0;
  transition: opacity 1s;
}

[data-background-image] {
  opacity: 0;
  transition: opacity 1s;
}

[data-loaded=true] {
  opacity: 1 !important;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
button,
textarea,
select {
  font-family: var(--font-family);
  resize: none;
  font-size: var(--font-size);
  font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-site);
  padding-right: var(--gutter-site);
}

.column {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.columns {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  display: flex;
  flex-wrap: wrap;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666666%;
}

.col-3 {
  width: 24.99999999%;
}

.col-4 {
  width: 33.33333332%;
}

.col-5 {
  width: 41.66666665%;
}

.col-6 {
  width: 49.99999998%;
}

.col-7 {
  width: 58.33333331%;
}

.col-8 {
  width: 66.66666664%;
}

.col-9 {
  width: 74.99999997%;
}

.col-10 {
  width: 83.3333333%;
}

.col-11 {
  width: 91.66666663%;
}

.col-12 {
  width: 99.99999996%;
}

.col-2-5 {
  width: 20%;
}

svg:not(:root) {
  overflow: hidden;
}

.symbols {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.absolute-block {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.tab-pane:not(.is-active) {
  display: none;
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  padding: 20px;
  overflow-y: auto;
  z-index: 1000;
}
.modal-main {
  margin: auto;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  position: relative;
}
.modal-main--long {
  max-width: 1160px;
}
.modal-content {
  padding: 40px;
}
.modal-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 30px;
}
.modal-close {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  border: none;
  background-color: transparent;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.modal-close svg {
  stroke: var(--color-text);
  margin: auto;
  pointer-events: none;
}
.modal-footer {
  background-color: var(--color-grey);
  padding: 30px 40px;
  border-radius: 0 0 4px 4px;
}
.modal[aria-hidden=false] .modal-overlay {
  animation: modal-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal-main {
  animation: modal-slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal-overlay {
  animation: modal-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal-main {
  animation: modal-slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@keyframes modal-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-slideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modal-slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.notify {
  display: none;
  right: 0;
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #ccc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
  transition: right 0.3s;
  margin-bottom: 10px;
}
.notify.default {
  background-color: #1FCA23;
}
.notify.error {
  background-color: red;
  color: #fff;
}
.notify.is-show {
  right: 20px;
}
.notify-wrap {
  position: fixed;
  right: 0;
  top: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.splide--visible .splide__track {
  overflow: visible;
}
.splide--visible .splide__slide {
  opacity: 0;
  pointer-events: none;
}
.splide--visible .splide__slide.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.splide__track {
  position: relative;
  overflow: hidden;
}
.splide__list {
  display: flex;
}
.splide__slide {
  flex-shrink: 0;
}
.splide-nav.disabled, .splide-dots.disabled {
  display: none;
}
.splide__arrow {
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  background-color: transparent;
  display: flex;
  z-index: 2;
}
.splide__arrow svg {
  margin: auto;
  width: 12px;
  height: 12px;
}
.splide__arrow--prev {
  left: 10px;
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 10px;
}
.splide__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.splide__pagination li {
  display: flex;
}
.splide__pagination__page {
  width: 30px;
  height: 2px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #E6E7E8;
}
@media (max-width: 499px) {
  .splide__pagination__page {
    width: 15px;
  }
}
.splide__pagination__page.is-active {
  background-color: var(--color-text);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 2px 20px 0;
  background-color: var(--color-purple);
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .btn {
    height: 44px;
  }
}
.btn:hover {
  background-color: var(--color-purple-dark);
  color: #fff;
}
.btn[disabled] {
  background-color: #E6E7E8;
  color: #C3C4C6;
  cursor: not-allowed;
}
.btn--light {
  background-color: var(--color-purple-light);
  color: var(--color-purple);
}
.btn--middle {
  height: 44px;
}
.btn--small {
  text-transform: none;
  height: 40px;
}
.btn--full {
  width: 100%;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.input {
  width: 100%;
  height: 50px;
  display: block;
  background: #FFFFFF;
  border: 1px solid #3C3C3C;
  padding: 0 15px;
}
.input-label {
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  position: absolute;
  left: 15px;
  top: 1px;
  color: var(--color-purple);
  pointer-events: none;
  display: none;
}
.input-group {
  margin-bottom: 15px;
  position: relative;
}
.input-group.error .input-error {
  display: block;
}
.input-group.error .input {
  border-color: #E63756;
}
.input-group.valid .input-label {
  display: block;
}
.input.textarea {
  height: 120px;
  padding-top: 10px;
}
.input-error {
  background-color: #FFE8E8;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: #E63756;
  position: absolute;
  left: 1px;
  right: 1px;
  padding-left: 14px;
  bottom: 1px;
  display: none;
}
.input-footer {
  margin-top: 30px;
}
.input-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox-label {
  display: block;
  user-select: none;
}
.checkbox-label:hover .checkbox-name::before {
  background-color: #F7F4FF;
  border-color: #F7F4FF;
  box-shadow: 0 0 0 1px var(--color-purple);
}
.checkbox-name {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.checkbox-name:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #8D8D8D;
  left: 1px;
  top: 1px;
}
.checkbox:checked + .checkbox-name:before {
  background-color: var(--color-purple);
  box-shadow: 0 0 0 1px var(--color-purple);
}
.checkbox:checked + .checkbox-box__title::before {
  background-color: var(--color-purple);
  box-shadow: 0 0 0 1px var(--color-purple);
}
.checkbox:checked ~ .checkbox-box__text {
  display: block;
}

.select {
  appearance: none;
  -webkit-appearance: none;
}

:root {
  --gutter: 10px;
  --gutter-site: 20px;
  --color-text: #3C3C3C;
  --color-grey: #F4F4F4;
  --color-purple: #85549B;
  --color-purple-dark: #78468F;
  --color-purple-light: #F7F4FF;
  --font-size: 14px;
  --line-height: 20px;
  --font-family: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-height: 50px;
}
@media (max-width: 1199px) {
  :root {
    --header-height: 70px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}

body {
  height: 100vh;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family);
  color: var(--color-text);
  font-weight: 400;
  font-feature-settings: "pnum" on, "lnum" on;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 1024px) {
  body {
    overflow-x: hidden;
  }
}

a {
  color: var(--color-purple);
  text-decoration: none;
  outline: none;
}
a:hover {
  color: var(--color-purple-dark);
  text-decoration: none;
}

h2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}

h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}

.wrapper {
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1400px) {
  .wrapper {
    padding-left: 300px;
  }
}
@media (max-width: 1023px) {
  .wrapper {
    overflow: hidden;
  }
}

.wrap {
  flex: 1 0 auto;
  position: relative;
  padding: 40px 0 60px;
}
@media (max-width: 767px) {
  .wrap {
    padding: 30px 0 40px;
  }
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
}
.overlay:not(.is-show) {
  display: none;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: var(--color-purple);
  overflow-y: scroll;
  z-index: 10;
  transition: transform 0.15s;
}
@media (max-width: 1399px) {
  .sidebar {
    width: 320px;
  }
  .sidebar:not(.is-show) {
    transform: translateX(-100%);
  }
}
.sidebar::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}
.sidebar::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: var(--color-purple);
}
.sidebar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.5);
}
.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 24px 30px 34px;
  color: #fff;
  min-height: 100%;
}
.sidebar-footer {
  margin-top: auto;
}
.sidebar-close {
  right: 10px;
  top: 10px;
  background-color: var(--color-purple);
  border: none;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  display: block;
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.sidebar-category__title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.sidebar-category__list {
  margin-left: -10px;
}
.sidebar-category__list a {
  color: #fff;
  border-radius: 4px;
  fill: #fff;
}
.sidebar-category__list a:hover {
  background-color: var(--color-purple-dark);
}
.sidebar-category__list > li.sub > a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.14653 6.18705C6.95127 5.99179 6.95127 5.6752 7.14653 5.47994C7.34179 5.28468 7.65837 5.28468 7.85363 5.47994L7.14653 6.18705ZM11.6667 10.0002L12.0203 9.64661L12.3739 10.0002L12.0203 10.3537L11.6667 10.0002ZM7.85363 14.5204C7.65837 14.7156 7.34179 14.7156 7.14653 14.5204C6.95127 14.3251 6.95127 14.0085 7.14653 13.8133L7.85363 14.5204ZM7.85363 5.47994L12.0203 9.64661L11.3132 10.3537L7.14653 6.18705L7.85363 5.47994ZM12.0203 10.3537L7.85363 14.5204L7.14653 13.8133L11.3132 9.64661L12.0203 10.3537Z' fill='white'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  right: 10px;
  top: 10px;
  position: absolute;
}
.sidebar-category__list > li.sub > a.is-active::after {
  transform: rotate(-90deg);
}
.sidebar-category__list > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px 10px 10px;
  text-transform: uppercase;
  position: relative;
}
.sidebar-category__list > li ul {
  display: none;
}
.sidebar-category__list > li ul a {
  display: block;
  padding: 8px 10px 8px 30px;
  position: relative;
}
.sidebar-category__list > li ul a.is-current {
  background-color: var(--color-purple-dark);
}
.sidebar-category__list > li ul a::before {
  content: "—";
  position: absolute;
  left: 10px;
  top: 7px;
}

.sidebar-sections {
  display: flex;
  gap: 10px;
}
.sidebar-sections__link {
  border-radius: 4px;
  border: 1px solid var(--color-purple-dark);
  width: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  gap: 20px;
  font-weight: 500;
}
.sidebar-sections__link:hover {
  background-color: var(--color-purple-dark);
  color: #fff;
}
.sidebar-sections__link svg {
  fill: #fff;
}

.logotype {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.logotype--header {
  width: 83px;
}

.header {
  position: relative;
  height: var(--header-height);
  z-index: 8;
}
.header-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: var(--header-height);
  background-color: var(--color-grey);
}
@media (min-width: 1400px) {
  .header-fixed {
    padding-left: 300px;
  }
}
@media (max-width: 1199px) {
  .header-fixed {
    background-color: var(--color-purple);
  }
}
.header-content {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media (max-width: 1399px) {
  .header-content {
    justify-content: space-between;
  }
}
.header-sep {
  width: 1px;
  height: 10px;
  flex-shrink: 0;
  background-color: var(--color-text);
}

.header-menu {
  display: flex;
  gap: 20px;
}
.header-menu a {
  color: var(--color-text);
}

.messenger {
  display: inline-flex;
  gap: 3px;
}
.messenger a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}

.market {
  display: flex;
  align-items: center;
  gap: 5px;
}
.market a {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
}

.header-user {
  display: flex;
  gap: 15px;
}
@media (min-width: 1400px) {
  .header-user {
    margin-left: auto;
  }
}
.header-user__link {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  border: none;
  background-color: transparent;
  stroke: var(--color-text);
}
@media (max-width: 1199px) {
  .header-user__link {
    stroke: #fff;
  }
}
.header-user__link span {
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text);
}

.footer {
  flex: 0 0 auto;
  position: relative;
  background-color: var(--color-grey);
}
.footer-main {
  padding: 40px 0 10px;
}
.footer-list {
  margin-bottom: 30px;
}
.footer-list li {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-list li {
    margin-bottom: 15px;
  }
}
.footer-list li a {
  color: var(--color-text);
}
.footer-list li a:hover {
  text-decoration: underline;
}
.footer-contact {
  margin-bottom: 30px;
}
.footer-contact .messenger {
  margin-left: 5px;
}
.footer-contact li {
  margin-bottom: 15px;
}
.footer-contact li span {
  display: block;
  font-size: 12px;
}
.footer-contact li a {
  color: var(--color-text);
}
.footer-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid #fff;
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .footer-bottom__text {
    text-align: center;
    margin: 5px 0;
  }
}
.footer-bottom a {
  color: var(--color-text);
}
.footer-bottom a.create {
  font-weight: 500;
  color: var(--color-purple);
}

.head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .head {
    margin-bottom: 20px;
  }
}
.head .title {
  margin-bottom: 0;
}
.head-return {
  display: flex;
  fill: var(--color-text);
}

.title {
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}

.more {
  display: flex;
  font-size: 14px;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  color: var(--color-text);
  fill: var(--color-text);
  margin-left: auto;
}
@media (max-width: 767px) {
  .more span {
    display: none;
  }
}

.category {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .category {
    margin-bottom: 15px;
  }
}
.category-image {
  height: 400px;
  display: block;
  background: 50% no-repeat;
  background-size: cover;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .category-image {
    height: 165px;
  }
}
.category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  color: var(--color-text);
  fill: var(--color-text);
}
@media (max-width: 767px) {
  .category-title svg {
    display: none;
  }
}
.category-title:hover {
  fill: var(--color-purple);
}

.offset-top {
  margin-top: 60px;
}
.offset-top--min {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .offset-top {
    margin-top: 40px;
  }
}

.element {
  position: relative;
  min-height: calc(100% - 30px);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .element:hover {
    z-index: 2;
  }
  .element:hover::before {
    display: block;
  }
  .element:hover .element-footer {
    display: block;
  }
}
.element::before {
  content: "";
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -80px;
  border-radius: 4px;
  display: none;
  z-index: -1;
}
.element-image {
  position: relative;
  display: block;
  padding-bottom: 88%;
  margin-bottom: 10px;
}
.element-image__content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
}
.element-image__content img {
  margin: auto;
  max-height: 100%;
}
.element-title {
  margin-bottom: 5px;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .element-title {
    font-size: 12px;
    line-height: 18px;
  }
}
.element-title a {
  color: var(--color-text);
}
.element-price {
  display: flex;
  gap: 5px;
  white-space: nowrap;
}
.element-footer {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  width: 100%;
  display: none;
  z-index: 1;
}
.element-buy {
  display: flex;
  gap: 10px;
}
.element-buy .btn {
  flex-grow: 1;
  flex-basis: 0;
}

.stickers {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  gap: 5px;
  z-index: 1;
  pointer-events: none;
}

.sticker {
  padding: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}
.sticker--new {
  background-color: #F7F4FF;
}
.sticker--hit {
  background-color: #FFF4E2;
}

.price {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .price {
    font-size: 14px;
  }
}
.price--old {
  font-size: 14px;
  color: #8E8E8E;
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .price--old {
    font-size: 12px;
  }
}

.search {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 18px 40px;
  gap: 30px;
  z-index: 11;
  transition: 0.15s;
}
@media (max-width: 767px) {
  .search {
    padding: 18px;
  }
}
.search-overlay {
  z-index: 10;
}
.search:not(.is-show) {
  transform: translateY(-100%);
}
.search-form {
  position: relative;
  width: 100%;
}
.search-form__input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #7D7D7D;
}
.search-form__button {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background-color: transparent;
  stroke: var(--color-text);
  cursor: pointer;
}
.search-close {
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  stroke: var(--color-text);
  cursor: pointer;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 20px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: -10px;
  }
}
.breadcrumbs li {
  font-size: 12px;
  line-height: 16px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "—";
  margin: 0 4px;
}

.category-item {
  margin: 35px 0;
  text-align: center;
}
.category-item__icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-grey);
  border-radius: 50%;
  display: flex;
  margin: 0 auto 15px;
}
.category-item__icon svg {
  margin: auto;
  fill: #7D7D7D;
}
.category-item__title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  font-weight: 500;
}
@media (max-width: 767px) {
  .category-item__title {
    font-size: 14px;
    line-height: 20px;
  }
}
.category-item__list {
  margin-top: 15px;
}
.category-item__list li {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .category-item__list li {
    font-size: 12px;
  }
}
.category-item__list li a {
  color: var(--color-text);
}
.category-item__list li a:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  gap: 20px;
}
.pagination-more {
  display: flex;
  line-height: 20px;
  gap: 5px;
  white-space: nowrap;
  color: var(--color-text);
  font-weight: 500;
  stroke: var(--color-text);
}
.pagination-item {
  line-height: 20px;
  display: flex;
  color: var(--color-text);
  position: relative;
  font-weight: 500;
}
.pagination-item.current::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  height: 1px;
  width: 100%;
  background-color: #585858;
}
.pagination-block {
  padding: 30px 0 15px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-grey);
}

.filter-block {
  margin-bottom: 30px;
}

.filter-header {
  position: relative;
  background-color: var(--color-grey);
  padding: 15px 20px;
  display: flex;
  gap: 10px 24px;
  justify-content: space-between;
}
@media (max-width: 499px) {
  .filter-header {
    flex-direction: column;
  }
}
.filter-header__title {
  display: flex;
  align-items: center;
  line-height: 20px;
  cursor: pointer;
  gap: 5px;
  font-weight: 500;
  color: var(--color-purple);
}
.filter-header__title.is-active svg {
  transform: rotate(180deg);
}
.filter-header__title svg {
  fill: var(--color-purple);
  transform: rotate(90deg);
}

.filter-sort {
  position: relative;
}
.filter-sort__title {
  font-weight: 500;
  display: flex;
  gap: 5px;
}
.filter-sort__title span {
  cursor: pointer;
  color: var(--color-purple);
  display: flex;
  gap: 5px;
}
.filter-sort__title span::after {
  content: "▼";
  font-size: 8px;
}
.filter-sort__popup {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background-color: #FFFFFF;
  min-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.filter-sort__popup:not(.is-show) {
  display: none;
}
.filter-sort__popup a {
  display: block;
  position: relative;
  font-weight: 500;
  padding: 15px;
  color: var(--color-text);
}
.filter-sort__popup a.current {
  color: var(--color-purple);
  background: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 9L5 12L14 1' stroke='%2378468F'/%3E%3C/svg%3E") calc(100% - 15px) 50% no-repeat;
}
.filter-sort__popup a:not(:first-child) {
  border-top: 1px solid var(--color-grey);
}

.filter {
  border: 1px solid var(--color-grey);
  padding: 20px 20px 0;
}
@media (min-width: 1024px) {
  .filter:not(.is-show) {
    display: none;
  }
  .filter-overlay {
    display: none;
  }
}
@media (max-width: 1023px) {
  .filter {
    width: 100%;
    padding: 40px 20px 20px;
    max-width: 300px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s;
    z-index: 10;
  }
  .filter:not(.is-show) {
    transform: translateX(-100%);
  }
}
.filter-close {
  right: 10px;
  top: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
  z-index: 1;
}
.filter-buttons {
  display: flex;
  gap: 5px 10px;
  padding-bottom: 20px;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .filter-buttons {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.filter-column {
  padding-bottom: 20px;
}
.filter-column__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-column__title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 0 12px;
  border-color: transparent transparent transparent #E6E7E8;
}
.filter-column__list li {
  margin-top: 10px;
}

.card {
  display: flex;
  gap: 30px 40px;
}
@media (max-width: 1023px) {
  .card {
    flex-direction: column;
  }
}
.card-column {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
}

.card-slider__item {
  display: flex;
}
.card-slider__item img {
  width: 100%;
  margin: auto;
  max-height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-price {
  display: flex;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  border-left: 2px solid var(--color-purple);
  padding-left: 15px;
}

.card-available {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.0007' cy='10' r='6.66667' fill='white'/%3E%3Cpath d='M7.08333 9.16667L9.47727 11.5606C9.53585 11.6192 9.63082 11.6192 9.6894 11.5606L16.25 5' stroke='%23C5955C' stroke-width='1.2'/%3E%3Cpath d='M16.0504 8.80494C16.3235 10.1873 16.1149 11.6214 15.4595 12.8687C14.804 14.116 13.7412 15.1012 12.4478 15.6603C11.1545 16.2195 9.70869 16.3189 8.35102 15.9419C6.99335 15.565 5.8057 14.7345 4.98573 13.5886C4.16576 12.4428 3.76292 11.0507 3.84427 9.644C3.92561 8.23732 4.48623 6.90093 5.43282 5.85722C6.37941 4.81352 7.65487 4.12545 9.04694 3.90754C10.439 3.68962 11.8637 3.95501 13.084 4.65952' stroke='%23C5955C' stroke-linecap='round'/%3E%3C/svg%3E") 0 50% no-repeat;
  padding-left: 25px;
  font-weight: 500;
  margin-left: auto;
}

.card-info {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  position: relative;
  fill: #C3C4C6;
}
.card-info svg {
  margin: auto;
}
.card-info:hover .card-info__popup {
  display: block;
}
.card-info__popup {
  position: absolute;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  line-height: 16px;
  padding: 10px;
  z-index: 2;
  width: 200px;
  left: 0;
  top: calc(100% + 5px);
  pointer-events: none;
  display: none;
}

.card-table {
  width: 100%;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .card-table {
    display: block;
  }
  .card-table thead {
    display: flex;
    width: 100%;
  }
  .card-table thead tr {
    display: flex;
    width: 100%;
  }
}
.card-table__label {
  background: #FFF4E2;
  border-radius: 2px;
  padding: 4px 10px;
  color: #C5955C;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  display: inline-flex;
}
@media (max-width: 767px) {
  .card-table__label {
    font-size: 10px;
  }
}
.card-table th {
  color: #7D7D7D;
  font-weight: 500;
  font-size: 12px;
  text-align: left;
  padding: 10px 15px 10px 0;
  border-bottom: 1px solid var(--color-grey);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .card-table th {
    width: 33.33%;
  }
}
.card-table th:last-child {
  padding-right: 0;
  width: 130px;
}
@media (max-width: 767px) {
  .card-table th:last-child {
    display: none;
  }
}
.card-table td {
  vertical-align: middle;
  padding: 10px 15px 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--color-grey);
}
@media (max-width: 767px) {
  .card-table td {
    width: 33.33%;
    border: none;
    padding: 0;
  }
}
.card-table td:not(:first-child) {
  font-weight: 600;
  white-space: nowrap;
}
.card-table td:last-child {
  padding-right: 0;
}
@media (max-width: 767px) {
  .card-table td:last-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .card-table tbody {
    display: flex;
    flex-direction: column;
  }
}
.card-table__sku.disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .card-table__sku {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--color-grey);
    gap: 15px 0;
    padding: 15px 0;
  }
  .card-table__sku .value {
    width: 100%;
  }
}

.value {
  width: 132px;
  border: 1px solid #E6E7E8;
  position: relative;
  padding: 10px 40px;
}
.value:hover {
  border-color: var(--color-purple);
  background-color: #F7F4FF;
}
.value-input {
  width: 100%;
  height: 20px;
  border: none;
  text-align: center;
  border-left: 1px solid #E6E7E8;
  border-right: 1px solid #E6E7E8;
  font-weight: 500;
  background: transparent;
}
.value-button {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  border: none;
  cursor: pointer;
  background: transparent 50% no-repeat;
}
.value-button.minus {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='2' viewBox='0 0 12 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L1 0.999999' stroke='%233C3C3C' stroke-linecap='round'/%3E%3C/svg%3E");
}
.value-button.plus {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 5L10 15' stroke='%233C3C3C' stroke-linecap='round'/%3E%3Cpath d='M15 10L5 10' stroke='%233C3C3C' stroke-linecap='round'/%3E%3C/svg%3E");
}

.card-size {
  cursor: pointer;
  display: inline-flex;
  color: var(--color-purple);
  user-select: none;
}

.card-total {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .card-total {
    flex-direction: column;
  }
}
.card-total__value {
  background: #F7F4FF;
  border-radius: 10px;
  font-size: 12px;
  padding: 0 5px;
}
.card-total__list {
  display: flex;
  border: 1px solid #E6E7E8;
  padding: 10px 15px;
  width: 100%;
}
.card-total__list li {
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  gap: 5px;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
.card-total__list li:not(:first-child) {
  border-left: 1px solid var(--color-grey);
  margin-left: 20px;
  padding-left: 20px;
}
.card-total__buy {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .card-total__buy {
    width: 100%;
  }
}

.card-description {
  background: var(--color-grey);
  padding: 20px 30px 30px;
}

.card-tabs {
  display: flex;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 30px;
  gap: 30px;
}
.card-tabs--white {
  border-bottom-color: var(--color-grey);
}
.card-tabs li {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 15px;
  margin-bottom: -1px;
  border-bottom: 1px solid transparent;
  color: #7D7D7D;
}
.card-tabs li a {
  color: inherit;
}
.card-tabs li.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-purple);
}
.card-tabs-select {
  margin-bottom: 30px;
  border: none;
  width: 100%;
  display: block;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.80762 5.26953L0.926464 1.81215C0.492246 1.29109 0.862771 0.5 1.54104 0.5L6.45831 0.5C7.13658 0.5 7.5071 1.29109 7.07289 1.81215L4.19173 5.26953C4.09178 5.38947 3.90757 5.38947 3.80762 5.26953Z' fill='%233C3C3C'/%3E%3C/svg%3E") 100% 50% no-repeat;
  border-bottom: 1px solid #3C3C3C;
}

@media (min-width: 1024px) {
  .card-params--columns {
    columns: 2;
    column-gap: 130px;
  }
}
.card-params li {
  display: flex;
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .card-params li {
    flex-direction: column;
  }
}
.card-params li span:first-child {
  color: #7D7D7D;
}
@media (max-width: 767px) {
  .card-params li span:first-child {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .card-params li span:first-child {
    white-space: nowrap;
    width: 140px;
    display: flex;
    flex-shrink: 0;
  }
  .card-params li span:first-child::after {
    content: "";
    height: 1px;
    width: 100%;
    background-image: linear-gradient(90deg, #c4c4c4, #c4c4c4 75%, transparent 75%, transparent 100%);
    -webkit-background-size: 4px 1px;
    background-size: 4px 1px;
    margin-top: 14px;
  }
}

.basket {
  width: 100%;
  margin-bottom: 20px;
}
.basket th {
  color: #7D7D7D;
  font-size: 14px;
  font-weight: 500;
  padding: 0 25px 10px 0;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .basket th {
    padding: 0;
  }
  .basket th:not(:first-child) {
    display: none;
  }
}
.basket th:last-child {
  padding-right: 0;
}
.basket tr {
  border-bottom: 1px solid #F4F4F4;
}
.basket td {
  vertical-align: top;
  padding: 10px 25px 10px 0;
}
.basket td:nth-child(2) {
  width: 100%;
}
.basket td:last-child {
  padding-right: 0;
}
@media (max-width: 767px) {
  .basket tr {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: -1px;
    position: relative;
  }
  .basket tr td {
    padding: 0;
  }
  .basket tr td:nth-child(2) {
    width: calc(100% - 70px);
    padding-right: 30px;
  }
  .basket tr td:nth-child(3) {
    width: 100%;
    padding-left: 70px;
  }
  .basket tr td:nth-child(4), .basket tr td:nth-child(5) {
    padding-left: 70px;
  }
}
.basket-image {
  width: 100px;
}
@media (max-width: 767px) {
  .basket-image {
    width: 60px;
  }
}
@media (min-width: 768px) {
  .basket-params {
    margin-top: 10px;
  }
}
.basket-params li {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .basket-params li {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.basket-params li span {
  color: #7D7D7D;
}
.basket-price {
  white-space: nowrap;
  font-weight: 600;
}
@media (min-width: 768px) {
  .basket-price {
    margin-top: 10px;
  }
}
.basket-delete {
  display: flex;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  stroke: #7D7D7D;
}
@media (max-width: 767px) {
  .basket-delete {
    position: absolute;
    right: 0;
    top: 10px;
    margin-top: 0;
  }
}
.basket-footer {
  display: flex;
  justify-content: space-between;
}
.basket-footer__link {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--color-text);
  stroke: #7D7D7D;
}
@media (max-width: 767px) {
  .basket-footer__link {
    font-size: 12px;
  }
}

.basket-total {
  display: flex;
  gap: 15px 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .basket-total {
    flex-direction: column;
  }
}
.basket-total__price {
  border-bottom: 1px solid var(--color-purple);
  width: 100%;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-purple);
  padding-top: 6px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .basket-total__price {
    padding: 0 0 10px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .basket-total__order {
    width: 250px;
    flex-shrink: 0;
  }
}

.layout {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .layout {
    flex-direction: column;
  }
}
.layout-content {
  width: 100%;
}
.layout-aside {
  width: 340px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .layout-aside {
    width: 100%;
  }
}

.order-box {
  background-color: #F4F4F4;
  padding: 20px;
  position: sticky;
  top: 70px;
}
.order-box__list {
  margin-bottom: 10px;
}
.order-box__list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.order-box__list li:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid #fff;
}
.order-box__list li span {
  font-weight: 500;
}
.order-box__total {
  font-size: 18px;
  color: var(--color-purple);
  font-weight: 500;
}

.order-item {
  margin-bottom: 10px;
}
.order-item.is-checked .order-header::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #62DA58 url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.333334 6.33333L3 8.33333L9 1' stroke='white'/%3E%3C/svg%3E") 50% no-repeat;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 20px;
}
.order-item.is-checked .order-edit {
  display: block;
}
.order-header {
  display: flex;
  align-items: center;
  background-color: var(--color-grey);
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  gap: 10px;
}
.order-header span {
  width: 40px;
  height: 30px;
  font-size: 14px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-edit {
  margin-left: auto;
  color: var(--color-purple);
  font-size: 14px;
  cursor: pointer;
  display: none;
}
.order-content {
  padding: 20px 0 30px;
  display: none;
}
.order-basket {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .order-basket .basket-image {
    width: 100px;
  }
}
.order-footer {
  border-top: 1px solid var(--color-grey);
  padding-top: 20px;
  display: flex;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 499px) {
  .order-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.order-check {
  margin-left: 15px;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L9 17L18 6' stroke='%233C3C3C'/%3E%3C/svg%3E") 0 50% no-repeat;
  padding-top: 2px;
  padding-left: 34px;
}

.coupon-form {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 320px;
}
.coupon-input {
  flex-grow: 1;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #7D7D7D;
  background-color: #fff;
  display: block;
}
.coupon-btn {
  background-color: #F7F4FF;
  width: 40px;
  height: 40px;
  display: flex;
  fill: var(--color-text);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.coupon-btn svg {
  margin: auto;
}

.checkbox-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #E6E7E8;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.checkbox-box__title {
  background-color: var(--color-grey);
  padding: 10px 10px 10px 30px;
  position: relative;
}
.checkbox-box__title::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #8D8D8D;
  left: 11px;
  top: 11px;
  border-radius: 50%;
}
.checkbox-box__image {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox-box__image img {
  max-height: 40px;
}
.checkbox-box__text {
  background-color: var(--color-grey);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-purple);
  padding: 4px;
  text-align: center;
  display: none;
}

.form-layout {
  display: flex;
  gap: 30px 110px;
}
@media (max-width: 1023px) {
  .form-layout {
    flex-direction: column;
  }
}
.form-layout__content {
  width: 100%;
}
.form-layout__aside {
  width: 430px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .form-layout__aside {
    width: auto;
    order: -1;
  }
}

.form-info {
  background-color: var(--color-grey);
  position: sticky;
  top: 70px;
  padding: 40px;
}
@media (min-width: 768px) {
  .form-info {
    font-size: 16px;
    line-height: 24px;
  }
}

.form-reg {
  display: flex;
  justify-content: center;
  font-weight: 500;
  gap: 10px;
}

.box {
  margin-bottom: 20px;
  background-color: var(--color-grey);
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: calc(100% - 20px);
}
@media (max-width: 499px) {
  .box {
    font-size: 12px;
    line-height: 18px;
  }
}
.box-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
}
.box-header {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  gap: 10px;
}
.box-header--collapse {
  cursor: pointer;
  position: relative;
}
.box-header--collapse::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6464 8.64645C16.8417 8.45118 17.1583 8.45118 17.3536 8.64645C17.5488 8.84171 17.5488 9.15829 17.3536 9.35355L16.6464 8.64645ZM12 14L12.3536 14.3536L12 14.7071L11.6464 14.3536L12 14ZM6.64645 9.35355C6.45118 9.15829 6.45118 8.84171 6.64645 8.64645C6.84171 8.45118 7.15829 8.45118 7.35355 8.64645L6.64645 9.35355ZM17.3536 9.35355L12.3536 14.3536L11.6464 13.6464L16.6464 8.64645L17.3536 9.35355ZM11.6464 14.3536L6.64645 9.35355L7.35355 8.64645L12.3536 13.6464L11.6464 14.3536Z' fill='%233C3C3C'/%3E%3C/svg%3E") 50% no-repeat;
}
.box-header--collapse.is-active::after {
  transform: rotate(-180deg);
}
@media (max-width: 499px) {
  .box-header {
    font-size: 14px;
  }
}
.box-header__title {
  display: flex;
  gap: 5px 10px;
}
@media (max-width: 767px) {
  .box-header__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.box-header__link {
  display: flex;
  margin-left: auto;
}
.box-header__label {
  padding: 4px;
  height: 24px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
@media (max-width: 499px) {
  .box-header__label {
    order: -1;
  }
}
.box-header__label.new {
  background-color: #FFF4E2;
}
.box-header__label.ready {
  background-color: #D5F2E1;
}
.box-header__label.cancel {
  background-color: #FFE3EC;
}
.box-info {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #7D7D7D;
  margin-bottom: 5px;
}
.box-content {
  flex-grow: 1;
  padding: 20px 0;
  border-top: 1px solid #FFFFFF;
  margin-top: 15px;
}
.box-content--collapse {
  display: none;
}
.box-list {
  display: flex;
  flex-direction: column;
  gap: 10px 15px;
}
.box-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.box-list-style li {
  padding-left: 24px;
  margin-bottom: 15px;
  position: relative;
}
.box-list-style li b {
  font-weight: 500;
  color: var(--color-purple);
}
.box-list-style li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-purple);
  font-weight: 600;
}
.box-footer {
  border-top: 1px solid #fff;
  padding-top: 15px;
}
.box-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
}
@media (max-width: 499px) {
  .box-footer__list {
    font-size: 12px;
  }
}
.box-footer__list a {
  font-weight: 500;
}
.box-footer__list a.black {
  color: var(--color-text);
}
.box-footer__list a.red {
  color: #E63756;
}
.box-table {
  width: 100%;
}
@media (max-width: 1023px) {
  .box-table {
    margin-top: 30px;
  }
}
.box-table th {
  text-align: left;
  font-weight: 500;
  padding-bottom: 5px;
}
.box-table td {
  padding: 5px 20px 5px 0;
  vertical-align: top;
}
.box-table td:last-child {
  padding-right: 0;
}
.box-table td:nth-child(2) {
  width: 100%;
}
.box-table__image {
  width: 50px;
}
.box-table__price {
  white-space: nowrap;
}
.box-table__params li {
  font-size: 12px;
  line-height: 16px;
  margin-top: 5px;
}
.box-table__params li span:first-child {
  color: #7D7D7D;
}

.box-layout {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .box-layout {
    flex-direction: column;
  }
}
.box-layout__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .box-layout__aside {
    width: 320px;
    flex-shrink: 0;
    padding-left: 30px;
    border-left: 1px solid #fff;
  }
}
@media (max-width: 1023px) {
  .box-layout__aside {
    padding-top: 20px;
    border-top: 1px solid #fff;
  }
}

.box-page {
  position: relative;
  background-color: var(--color-grey);
  min-height: calc(100% - 20px);
  margin-bottom: 20px;
  padding: 15px 20px;
}
.box-page__header {
  display: flex;
  justify-content: space-between;
  gap: 15px 20px;
}
@media (max-width: 767px) {
  .box-page__header {
    flex-direction: column;
  }
}
.box-page__title {
  font-size: 16px;
  font-weight: 500;
}
.box-page__title span {
  font-size: 14px;
  display: block;
  margin-top: 5px;
  color: #7D7D7D;
}
.box-page__content {
  border-top: 1px solid #fff;
  margin-top: 15px;
  padding-top: 20px;
}
.box-page__label {
  color: #7D7D7D;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}

.lk-column {
  margin-bottom: 40px;
}

.delivery-box {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #E6E7E8;
  padding: 15px;
  height: 100px;
}
.delivery-box img {
  margin: auto;
  max-height: 100%;
}

.marker-line {
  background-color: #F7F4FF;
}

.purple {
  color: var(--color-purple);
}

.review {
  display: flex;
  gap: 10px 20px;
  margin-bottom: 20px;
}
@media (max-width: 499px) {
  .review {
    flex-direction: column;
  }
}
.review-aside {
  width: 80px;
  flex-shrink: 0;
}
.review-content {
  width: 100%;
}
.review-content a {
  font-weight: 500;
}
.review-image {
  width: 80px;
  height: 80px;
  border: 5px solid var(--color-grey);
  border-radius: 50%;
  overflow: hidden;
}
.review-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.review-text {
  color: #7D7D7D;
  margin-bottom: 10px;
}
.review-full {
  width: 500px;
  display: none;
}

.production-row {
  display: flex;
  align-items: center;
  gap: 0 110px;
}
@media (max-width: 767px) {
  .production-row {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .production-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.production-content {
  width: 100%;
  padding: 20px 0;
}
.production-content__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .production-content__title {
    font-size: 18px;
    line-height: 26px;
  }
}
.production-content__text {
  color: #7D7D7D;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .production-content__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.production-image {
  width: 430px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .production-image {
    width: 350px;
  }
}

.production-item {
  margin-bottom: 20px;
}
.production-item__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  background-color: var(--color-grey);
  margin-bottom: 20px;
}
.production-item__image img {
  margin: auto;
}
@media (min-width: 768px) {
  .production-item__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.production-list {
  position: relative;
  margin-bottom: 20px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .production-list {
    font-size: 16px;
    line-height: 24px;
  }
}
.production-list::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%23F4F4F4'/%3E%3Cpath d='M13 22L17 25L26 14' stroke='%2385549B'/%3E%3C/svg%3E");
}
.production-list::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 0;
  top: 20px;
  height: 1px;
  background-color: var(--color-grey);
}

.wishes {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-grey);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-grey);
  gap: 20px;
}
@media (max-width: 767px) {
  .wishes {
    flex-direction: column;
  }
}
.wishes-content {
  width: 100%;
}
.wishes-aside {
  width: 310px;
  flex-shrink: 0;
  border-left: 1px solid var(--color-grey);
  padding-left: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .wishes-aside {
    width: auto;
    border: none;
    border-top: 1px solid var(--color-grey);
    padding: 30px 0 0 0;
  }
}
.wishes-icon {
  fill: var(--color-text);
  margin: 0 auto 20px;
}
.wishes-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}
.wishes-text {
  color: #7D7D7D;
  margin-bottom: 20px;
}
.wishes-label {
  padding: 4px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  width: fit-content;
  margin-bottom: 10px;
  background-color: #FFF4E2;
}

.information {
  display: flex;
  align-items: center;
  gap: 10px;
}
.information img {
  flex-shrink: 0;
}
.information-row {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media (min-width: 768px) {
  .information-row.column-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .information-row.column-2 .information {
    flex-basis: 50%;
  }
}

.filler {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px 110px;
}
@media (max-width: 767px) {
  .filler {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .filler:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.filler-row {
  max-width: 880px;
  margin: 0 auto;
}
.filler-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}
.filler-image {
  width: 340px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .filler-image {
    width: 80%;
  }
}
.filler-content {
  width: 100%;
}
.filler-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: #7D7D7D;
}
@media (min-width: 768px) {
  .filler-content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.filler-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }
  .xl-col-1 {
    width: 8.33333333%;
  }
  .xl-col-2 {
    width: 16.66666666%;
  }
  .xl-col-3 {
    width: 24.99999999%;
  }
  .xl-col-4 {
    width: 33.33333332%;
  }
  .xl-col-5 {
    width: 41.66666665%;
  }
  .xl-col-6 {
    width: 49.99999998%;
  }
  .xl-col-7 {
    width: 58.33333331%;
  }
  .xl-col-8 {
    width: 66.66666664%;
  }
  .xl-col-9 {
    width: 74.99999997%;
  }
  .xl-col-10 {
    width: 83.3333333%;
  }
  .xl-col-11 {
    width: 91.66666663%;
  }
  .xl-col-12 {
    width: 99.99999996%;
  }
  .xl-hidden {
    display: none;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 1024px;
  }
  .lg-col-1 {
    width: 8.33333333%;
  }
  .lg-col-2 {
    width: 16.66666666%;
  }
  .lg-col-3 {
    width: 24.99999999%;
  }
  .lg-col-4 {
    width: 33.33333332%;
  }
  .lg-col-5 {
    width: 41.66666665%;
  }
  .lg-col-6 {
    width: 49.99999998%;
  }
  .lg-col-7 {
    width: 58.33333331%;
  }
  .lg-col-8 {
    width: 66.66666664%;
  }
  .lg-col-9 {
    width: 74.99999997%;
  }
  .lg-col-10 {
    width: 83.3333333%;
  }
  .lg-col-11 {
    width: 91.66666663%;
  }
  .lg-col-12 {
    width: 99.99999996%;
  }
  .lg-hidden {
    display: none;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 768px;
  }
  .md-col-1 {
    width: 8.33333333%;
  }
  .md-col-2 {
    width: 16.66666666%;
  }
  .md-col-3 {
    width: 24.99999999%;
  }
  .md-col-4 {
    width: 33.33333332%;
  }
  .md-col-5 {
    width: 41.66666665%;
  }
  .md-col-6 {
    width: 49.99999998%;
  }
  .md-col-7 {
    width: 58.33333331%;
  }
  .md-col-8 {
    width: 66.66666664%;
  }
  .md-col-9 {
    width: 74.99999997%;
  }
  .md-col-10 {
    width: 83.3333333%;
  }
  .md-col-11 {
    width: 91.66666663%;
  }
  .md-col-12 {
    width: 99.99999996%;
  }
  .md-hidden {
    display: none;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 500px;
  }
  .sm-col-1 {
    width: 8.33333333%;
  }
  .sm-col-2 {
    width: 16.66666666%;
  }
  .sm-col-3 {
    width: 24.99999999%;
  }
  .sm-col-4 {
    width: 33.33333332%;
  }
  .sm-col-5 {
    width: 41.66666665%;
  }
  .sm-col-6 {
    width: 49.99999998%;
  }
  .sm-col-7 {
    width: 58.33333331%;
  }
  .sm-col-8 {
    width: 66.66666664%;
  }
  .sm-col-9 {
    width: 74.99999997%;
  }
  .sm-col-10 {
    width: 83.3333333%;
  }
  .sm-col-11 {
    width: 91.66666663%;
  }
  .sm-col-12 {
    width: 99.99999996%;
  }
  .sm-hidden {
    display: none;
  }
}
@media (max-width: 499px) {
  .xs-col-1 {
    width: 8.33333333%;
  }
  .xs-col-2 {
    width: 16.66666666%;
  }
  .xs-col-3 {
    width: 24.99999999%;
  }
  .xs-col-4 {
    width: 33.33333332%;
  }
  .xs-col-5 {
    width: 41.66666665%;
  }
  .xs-col-6 {
    width: 49.99999998%;
  }
  .xs-col-7 {
    width: 58.33333331%;
  }
  .xs-col-8 {
    width: 66.66666664%;
  }
  .xs-col-9 {
    width: 74.99999997%;
  }
  .xs-col-10 {
    width: 83.3333333%;
  }
  .xs-col-11 {
    width: 91.66666663%;
  }
  .xs-col-12 {
    width: 99.99999996%;
  }
  .xs-hidden {
    display: none;
  }
}
@media (min-width: 1400px) {
  .xl-visible {
    display: none;
  }
  .xl-flex {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .lg-visible {
    display: none;
  }
  .lg-flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .md-visible {
    display: none;
  }
  .md-flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sm-visible {
    display: none;
  }
  .sm-flex {
    display: flex;
  }
}
@media (min-width: 500px) {
  .xs-visible {
    display: none;
  }
  .xs-flex {
    display: flex;
  }
}
/* End */


/* Start:/local/templates/tkb-v2/assets/css/jquery.fancybox.css?175762962914585*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* End */


/* Start:/local/templates/tkb-v2/assets/js/sweetAlert/sweetalert.css?175762962922879*/
body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }
  @media all and (max-width: 540px) {
    .sweet-alert {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      left: 15px;
      right: 15px; } }
  .sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block; }
  .sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal; }
  .sweet-alert fieldset {
    border: none;
    position: relative; }
  .sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s; }
    .sweet-alert .sa-error-container.show {
      padding: 10px 0;
      max-height: 100px;
      webkit-transition: padding 0.2s, max-height 0.2s;
      transition: padding 0.25s, max-height 0.25s; }
    .sweet-alert .sa-error-container .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: white;
      line-height: 24px;
      text-align: center;
      margin-right: 3px; }
    .sweet-alert .sa-error-container p {
      display: inline-block; }
  .sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    .sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
      content: "";
      width: 20px;
      height: 6px;
      background-color: #f06e57;
      border-radius: 3px;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: 50%;
      margin-left: -9px; }
    .sweet-alert .sa-input-error::before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sweet-alert .sa-input-error::after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .sweet-alert .sa-input-error.show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
  .sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .sweet-alert input:focus {
      outline: none;
      box-shadow: 0px 0px 3px #c4e6f5;
      border: 1px solid #b4dbed; }
      .sweet-alert input:focus::-moz-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus:-ms-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus::-webkit-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
    .sweet-alert input::-moz-placeholder {
      color: #bdbdbd; }
    .sweet-alert input:-ms-input-placeholder {
      color: #bdbdbd; }
    .sweet-alert input::-webkit-input-placeholder {
      color: #bdbdbd; }
  .sweet-alert.show-input input {
    display: block; }
  .sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative; }
  .sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden; }
  .sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer; }
    .sweet-alert button:focus {
      outline: none;
      box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .sweet-alert button:hover {
      background-color: #7ecff4; }
    .sweet-alert button:active {
      background-color: #5dc2f1; }
    .sweet-alert button.cancel {
      background-color: #C1C1C1; }
      .sweet-alert button.cancel:hover {
        background-color: #b9b9b9; }
      .sweet-alert button.cancel:active {
        background-color: #a8a8a8; }
      .sweet-alert button.cancel:focus {
        box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }
    .sweet-alert button[disabled] {
      opacity: .6;
      cursor: default; }
    .sweet-alert button.confirm[disabled] {
      color: transparent; }
      .sweet-alert button.confirm[disabled] ~ .la-ball-fall {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s; }
    .sweet-alert button::-moz-focus-inner {
      border: 0; }
  .sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important; }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px; }
  .sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box; }
    .sweet-alert .sa-icon.sa-error {
      border-color: #F27474; }
      .sweet-alert .sa-icon.sa-error .sa-x-mark {
        position: relative;
        display: block; }
      .sweet-alert .sa-icon.sa-error .sa-line {
        position: absolute;
        height: 5px;
        width: 47px;
        background-color: #F27474;
        display: block;
        top: 37px;
        border-radius: 2px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          left: 17px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          right: 16px; }
    .sweet-alert .sa-icon.sa-warning {
      border-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-body {
        position: absolute;
        width: 5px;
        height: 47px;
        left: 50%;
        top: 10px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-dot {
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-left: -3px;
        left: 50%;
        bottom: 10px;
        background-color: #F8BB86; }
    .sweet-alert .sa-icon.sa-info {
      border-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 29px;
        left: 50%;
        bottom: 17px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 19px;
        background-color: #C9DAE1; }
    .sweet-alert .sa-icon.sa-success {
      border-color: #A5DC86; }
      .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
        content: '';
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        position: absolute;
        width: 60px;
        height: 120px;
        background: white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sweet-alert .sa-icon.sa-success::before {
        -webkit-border-radius: 120px 0 0 120px;
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 60px 60px;
        transform-origin: 60px 60px; }
      .sweet-alert .sa-icon.sa-success::after {
        -webkit-border-radius: 0 120px 120px 0;
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0px 60px;
        transform-origin: 0px 60px; }
      .sweet-alert .sa-icon.sa-success .sa-placeholder {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(165, 220, 134, 0.2);
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        box-sizing: content-box;
        position: absolute;
        left: -4px;
        top: -4px;
        z-index: 2; }
      .sweet-alert .sa-icon.sa-success .sa-fix {
        width: 5px;
        height: 90px;
        background-color: white;
        position: absolute;
        left: 28px;
        top: 8px;
        z-index: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .sweet-alert .sa-icon.sa-success .sa-line {
        height: 5px;
        background-color: #A5DC86;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 2; }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
          width: 25px;
          left: 14px;
          top: 46px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
          width: 47px;
          right: 8px;
          top: 38px;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    .sweet-alert .sa-icon.sa-custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%); } }

@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

/* End */


/* Start:/local/templates/tkb-v2/assets/css/custom.css?17576296294253*/
.modal-map{
    max-width: 800px;
}
.color-link-black{
    color: var(--color-text);
}
.privacy p,
.privacy p a{
    font-size: 10px;
}


.privacy-page h5{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.sub-3 ul{
    margin-left: 20px;
}

.bx-pagination .bx-pagination-container ul li.bx-active span{
    background:var(--color-purple);
}

.bx-pagination .bx-pagination-container ul li span{
    border-radius: 0;
}

div.bx-blue .btn.btn-default{
    border-color: var(--color-purple);
    background-color: var(--color-purple);
}
div.bx-blue .btn.btn-default:hover {
    border-color: rgba(133, 84, 155, 0.41);
    background-color: rgba(133, 84, 155, 0.41);
}

.bx-soa-pp-delivery-cost{
    display: none;
}

.bx-soa-pp-company .bx-soa-pp-list{
    display: none;
}

/*.sidebar-category__list > li ul li.sub-3 a::before*/
.sidebar-category__list > li ul li.sub-3 a.sublink::after{
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.14653 6.18705C6.95127 5.99179 6.95127 5.6752 7.14653 5.47994C7.34179 5.28468 7.65837 5.28468 7.85363 5.47994L7.14653 6.18705ZM11.6667 10.0002L12.0203 9.64661L12.3739 10.0002L12.0203 10.3537L11.6667 10.0002ZM7.85363 14.5204C7.65837 14.7156 7.34179 14.7156 7.14653 14.5204C6.95127 14.3251 6.95127 14.0085 7.14653 13.8133L7.85363 14.5204ZM7.85363 5.47994L12.0203 9.64661L11.3132 10.3537L7.14653 6.18705L7.85363 5.47994ZM12.0203 10.3537L7.85363 14.5204L7.14653 13.8133L11.3132 9.64661L12.0203 10.3537Z' fill='white'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px;
    position: absolute;
}

.sidebar-category__list > li ul li.sub-3 a.is-active::after {
    transform: rotate(-90deg);
}


.up-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: none;
    cursor: pointer;
    background-color: var(--color-purple);
    color: var(--color-purple-light);
    font-size: 15px;
    z-index: 1000;
    padding: 10px 15px;
}

.up-btn:hover{
    background-color: var(--color-purple-dark);
}

.market{
    gap: 8px;
}

.header-menu{
    gap: 10px;
}
.header-user{
    gap: 10px;
}

.mb-20{
    margin-bottom: 20px;
}

.card-params li{
    break-inside: avoid;
}

.filter-header__title .filter-sort__title{
    color: var(--color-text);
}

.filter-sort__popup.pagencount {
    left: 100px;
    right: unset;
    min-width: 80px;
    /*text-align: center;*/
    top: calc(100% + -5px);
}

.pos-rel{
    position: relative;
}

.act{
    font-weight: 600;

}

.market-box .market{

}


.alert-cart{
    border: none;
    border-radius: 1px;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 20px;
    color: #8A6D3B;
    background-color: #FCF8E3;
    border-color: #FAEBCC;
    position: relative;

}

.alert-cart .icon-warning {
    position: absolute;
    left: 16px;
    width: 22px;
    height: 20px;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjIgMjAiPjxzdHlsZT4uc3Qwe2ZpbGw6I2RlYTcxMn08L3N0eWxlPjxwYXRoIGlkPSJGb3JtYV8xIiBjbGFzcz0ic3QwIiBkPSJNMjEuNyAxNi43TDEyLjkgMS4xQzEyLjMuMSAxMS0uMyAxMCAuM2MtLjQuMi0uNy41LS45LjhMLjMgMTYuN2MtLjQuNy0uNCAxLjUgMCAyLjIuNC43IDEuMSAxLjEgMS45IDEuMWgxNy43Yy44IDAgMS41LS40IDEuOS0xLjEuMy0uNy4zLTEuNS0uMS0yLjJ6bS0xMC43LjhjLS44IDAtMS40LS42LTEuNS0xLjQgMC0uOC42LTEuNCAxLjQtMS41LjggMCAxLjQuNiAxLjUgMS40IDAgLjgtLjYgMS41LTEuNCAxLjV6bTEuNC02LjJjMCAuOC0uNiAxLjQtMS40IDEuNHMtMS40LS42LTEuNC0xLjRWNC43YzAtLjQuMy0uNy43LS43aDEuNWMuNCAwIC43LjMuNy43bC0uMSA2LjZ6Ii8+PC9zdmc+);
}



.table table{
    width: 100%;
    margin: 30px 0;
}

.table table th {
    background: #FAFAFA;
    /*font-family: 'pt';*/
    font-size: 12px;
    color: #afafaf;
    padding: 0 10px;
    line-height: 22px;
    font-weight: normal;
}

.table table td {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding: 10px;
    white-space: nowrap;
    border-bottom: 1px solid #E8F0F9;
}

.disabled_{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.red{
    color: red;
    opacity: 1;
}
/* End */
/* /local/components/ds-st/ad.banner.top/templates/top/style.css?1757629630789 */
/* /local/templates/tkb-v2/assets/css/style.css?175762962954430 */
/* /local/templates/tkb-v2/assets/css/jquery.fancybox.css?175762962914585 */
/* /local/templates/tkb-v2/assets/js/sweetAlert/sweetalert.css?175762962922879 */
/* /local/templates/tkb-v2/assets/css/custom.css?17576296294253 */
