:root {
  --body-bg: #fff;
  --body-color: rgba(0, 0, 0, 1);
  --greycolor: #f5f5f5;
  --border-color: #d4d4d4;
  --transition: all 0.2s ease-in-out;
  --link-color: blue;
  --link-hover-color: black;
  --color-1: #d1376b;
  --color-2: #921640;
  --color-3: #ffe3e3;
  --color-4: #424242;
  --color-5: #3c3c3c;
  --btn-bg-color: green;
  --btn-bg-hover-color: green;
  --btn-txt-color: #fff;
  --btn-txt-hover-color: #fff;
}

/* Grid START */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.container .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.relative {
  position: relative;
}
.wrapper {
  margin: 0 auto;
  padding: 40px 0 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.jc-center {
  justify-content: center;
}
.jc-right {
  justify-content: right;
}
.jc-space {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.content-center {
  align-content: center;
}
.tl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%,-50%);
}
.center {
  text-align: center;
}
.clear {
  clear: both;
}

@media screen and (max-width: 1199px) {
  .container {
    padding: 0 40px;
  }
  .tablet-off {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 526px) {
  .container {
    padding: 0 15px;
  }
}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,
.col-7,.col-8,.col-9,.col-10,.col-11,.col-12 {
  width: 100%;
}
.col-1 {
  max-width: 8.333333%;
}
.col-2 {
  max-width: 16.666667%;
}
.col-3 {
  max-width: 25%;
}
.col-4 {
  max-width: 33.333333%;
}
.col-5 {
  max-width: 41.666667%;
}
.col-6 {
  max-width: 50%;
}
.col-7 {
  max-width: 58.333333%;
}
.col-8 {
  max-width: 66.666667%;
}
.col-9 {
  max-width: 75%;
}
.col-10 {
  max-width: 83.333333%;
}
.col-11 {
  max-width: 91.666667%;
}
.col-12 {
  max-width: 100%;
}
.column-2 {
  gap: 46px;
}
.column-4,
.column-3 {
  gap: 20px;
}

.column-2 .item {
  width: 100%;
  max-width: 48%;
}
.column-3 .item {
  width: 100%;
  max-width: 32.1%;
}
.column-4 .item {
  width: 100%;
  max-width: 23.7%;
}
.col-9 .column-3 .item {
  max-width: 31.8%;
} 
.left-box {
  padding-right: 24px;
}
.right-box {
  padding-left: 24px;
}

/* Grid END */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  font-size: 16px;
  color: var(--body-color);
  line-height: 130%;
  font-weight: 400;
  overflow-x: hidden;
}
.no-scroll {
    overflow: hidden;
}
main {
  padding: 180px 0 50px;
}

section {
  padding: 50px 0;
}
.p-0 {
  padding: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-0  {
  padding-top: 0;
}

.hidden {
  visibility: hidden;
}

ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  display: block;
  text-decoration: none;
  color: var(--link-color);
  transition: var(--transition);
}
a.line {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}

/* Heading Titles START */

h1, h2, h3, h4, h5, h6 {
  line-height: 130%;
}

.page-header,
.heading__title {
  margin-bottom: 40px;
}

.heading__title.center {
  text-align: center;
}
.heading__title.row {
  justify-content: space-between;
}
.heading__title.row .title {
  width: 100%;
  max-width: 90%;
  padding-right: 20px;
}
.heading__title.row .slick-buttons {
  width: 100%;
  max-width: 80px;
}

/* Heading Titles END */

/* Paragraph START */

p {
  line-height: 140%;
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 12px;
}

/* Paragraph END */

/* Pagination START */
.pagination {
  margin-top: 40px;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
  max-width: 349px;
}
.pagination .button {
  padding: 4px 12px;
  background: var(--color-5);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
.pagination li > a {
  color: var(--body-color);
}
.pagination .button a {
  color: #fff;
}
.pagination .button:hover {
  background: var(--color-2);
}
.pagination .button:hover a {
  color: #fff;
}
.pagination li > span,
.pagination li > a:hover {
  color: var(--color-1);
}
/* Pagination END */


/* Buttons START */

button,
input.button {
  transition: var(--transition);
  cursor: pointer;
}

.custom__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 20px;
  height: 40px;
  width: auto;
  background: var(--color-1);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition-timing-function: cubic-bezier(.485,.005,.56,1);
  transition: all .20s cubic-bezier(.485,.005,.56,1);
}
.custom__btn.flex {
  display: flex;
  max-width: 294px;
}
.custom__btn.white {
  background: #fff;
  color: var(--color-5);
}
.custom__btn.dark {
  background: var(--color-2);
}
.custom__btn:hover {
  background: var(--color-2);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 15px 15px -12px var(--color-1);
}
.custom__btn.white:hover {
  color: #fff;
}

/* Buttons END */


/* Swiper START */

.swiper-pagination {
  position: absolute;
  max-width: 200px;
  bottom: 126px !important;
  left: inherit !important;
  right: 16% !important;
  z-index: 10;
}
.swiper-pagination.bottom-0 {
  bottom: 0 !important;
  left: 50% !important;
  right: inherit !important;
  transform: translateX(-50%) !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: var(--transition);
  opacity: .5;
}
.swiper-pagination.red .swiper-pagination-bullet {
  background: #F7A3B6;
}
.swiper-pagination .swiper-pagination-bullet:hover,
.swiper-pagination.red .swiper-pagination-bullet:hover {
  opacity: .8;
}
.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination.red .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 30px;
  opacity: 1;
}
.swiper-pagination.red .swiper-pagination-bullet-active {
  background: var(--color-1);
}
.slide-button {
  font-size: 16px;
  width: 35px;
  height: 35px;
  background: var(--color-2);
  color: #C2C2C2;
  border-radius: 50%;
  transition: var(--transition);
}
.slide-button:hover {
  color: #fff;
  background: var(--body-color);
}
.slide-button.swiper-button-prev {
  left: -0;
}
.slide-button.swiper-button-next {
  right: 0;
}
.slide-button.swiper-button-prev:after {
  content: "\f060";
}
.slide-button.swiper-button-next:after {
  content: "\f061";
}

.slide-button.top {
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.slide-button:after {
  font-size: 20px;
  font-family: icon;
}
.swiper-buttons {
  position: relative;
  max-width: 300px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  z-index: 5;
}
.swiper-buttons .slide-button {
  position: relative;
  left: inherit;
  right: inherit;
  bottom: inherit;
  top: inherit;
  margin: 0;
}
.swiper-buttons .swiper-pagination {
  position: relative;
  top: inherit !important;
  left: inherit !important;
  right: inherit !important;
  bottom: inherit !important;
}
/* END */

/* Custom Form START */

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

input, button, textarea, select {
  font-family: var(--body-font);
  outline: none;
  background: none;
  border: none;
  color: var(--body-color);
  width: 100%;
}

input::placeholder {
  opacity: 1 !important;
}

/* Убираем кнопки для всех input[type="number"] */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Для Firefox */
}
.field__group {
  position: relative;
}
.field__group .reguired-field {
  display: none;
  position: absolute;
  top: 3px;
  right: 9px;
  font-size: 11px;
  color: var(--color-1);
}
.field__group.error-field .reguired-field {
  display: block;
}
.field__group .reguired-field i {
  padding-left: 7px;
}
.field__group input,
.field__group select {
  width: 100%;
  height: 55px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
}
.field__group textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}
.field__group input:focus,
.field__group textarea:focus {
  border-color: var(--body-color);
}
.field__group.error-field input {
  background: #ffeaea;
  border-color: #ffeaea;
}

.uploads input {
  height: auto;
  background: none;
}
.input-file {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 14%;
}
.input-file-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 25px;
  vertical-align: middle;
  color: rgb(255 255 255);
  text-align: center;
  border-radius: 4px;
  background-color: #59be6e;
  line-height: 22px;
  height: 50px;
  width: 100%;
  max-width: 50px;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
}
.input-file-text {
  padding: 0 10px;
  line-height: 40px;
  display: inline-block;
}
.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
 
/* Focus */
.input-file input[type=file]:focus + .input-file-btn {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/active */
.input-file:hover .input-file-btn {
  background-color: var(--color-1);
}
.input-file:active .input-file-btn {
  background-color: var(--color-1);
}
 
/* Disabled */
.input-file input[type=file]:disabled + .input-file-btn {
  background-color: #eee;
}

.check {
  position: relative;
  margin-top: 18px;
}
.check input {
  display: none;
}
.check label {
  display: block;
  position: relative;
  font-size: 13px;
  padding-left: 33px;
  cursor: pointer;
}
.check label a {
  display: inline;
}
.check label a:hover {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}
.check label:before {
  position: absolute;
  align-content: center;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  font-family: icon;
  font-size: 12px;
  border: 1px solid var(--color-2);
  border-radius: 4px;
}
.check.border label:before {
  border-color: var(--border-color);
}
.check input:checked + label:before {
  content: "\f00c";
  color: var(--color-1);
}



/* Custom Form END */


/* Icons START */

.fa {
  font-family: icon;
}
.icon {
  display: inline-block;
  margin-right: 10px;
}
/* Icons END */

/* Images START */

.mod-articles-image {
  margin: 0 !important;
}

img {
  display: block;
  width: 100%;
  height: auto;
}
img.center {
  margin: 0 auto;
}
img.object {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Images END */

.webkit__clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Custom List START */

.custom__list ul {
  margin: 16px 0;
}

.custom__list ul > li {
  position: relative;
  padding-left: 32px;
  line-height: 140%;
  font-weight: 500;
}
.custom__list ul > li:not(:last-child) {
  margin-bottom: 16px;
}
.custom__list ul > li:before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--color-1);
  content: "";
}
.custom__list ul > li > a {
  color: var(--color-1);
}
.custom__list ul > li > a:hover {
  color: var(--color-5);
}
.custom__list.type-2 li,
.custom__list.type-4 li {
  align-items: center;
  gap: 16px;
  padding-left: 0;
}
.custom__list.type-2 li:before,
.custom__list.type-4 li:before {
  content: none;
}
.custom__list.type-2 li .title {
  display: inline-block;
  width: 100%;
  max-width: 84.9%;
}
.custom__list.type-2 li .icon,
.custom__list.type-4 li .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--color-1);
  border-radius: 6px;
  padding: 8px;
}
.custom__list.type-2 li .icon img {
  filter: invert(1) brightness(10);
}

.custom__list.type-4 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.custom__list.type-4 ul > li {
  width: 100%;
  max-width: 46.3%;
  margin: 0 !important;
}

.custom__list.type-4 li .icon {
  background: none;
  padding: 0;
}
.custom__list.type-4 .title {
  width: 100%;
  max-width: 100%;
  font-weight: 600;
}

.custom__list.ol li {
  position: relative;
  counter-increment: list-counter;
  font-weight: 500;
  line-height: 140%;
}
.custom__list.ol li:not(:last-child) {
  margin-bottom: 16px;
}
.custom__list.ol li:before {
  display: inline-block;
  content: counter(list-counter);
  position: relative;
  top: -2px;
  width: 35px; 
  min-width: 35px;
  height: 35px;
  margin-right: 12px;
  background: var(--color-2);
  color: #fff;
  border-radius: 12px;
  align-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  z-index: 4;
}

/* Custom List END */


/* Header START */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 50px;
  transition: all 0.2s ease-in-out;
  z-index: 90;
}
.top__header {
  height: 100px;
  align-content: center;
  transition: all 0.2s ease-in-out;
  padding: 0 40px;
  background: #fff;
  border-left: 1px solid var(--color-1);
  border-right: 1px solid var(--color-1);
  border-bottom: 3px solid var(--color-1);
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 12px 15px -12px var(--color-1);
}
#header .logo {
  max-width: 250px;
}
.top__header .contacts {
  padding: 0 20px;
  gap: 16px;
}
.top__header .contacts li,
.top__header .contacts li > a {
  font-size: 14px;
  line-height: 130%;
  color: var(--color-5);
}
#header .buttons {
  gap: 16px;
}
.navigation .row {
  height: 80px;
}
.navigation .nav-item {
  padding: 0 4px;
}
.navigation .nav-item,
.navigation .nav-item a {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-5);
} 
.navigation .nav-item a {
  height: 35px;
  align-content: center;
  padding: 0 10px;
  border-radius: 15px;
}

.navigation .nav-item a:hover,
.top__header .contacts li > a:hover {
  color: var(--color-2);
}
.navigation .nav-item.parent.hover a {
  border-radius: 15px 15px 0 0;
  transition: all 0s ease-in-out;
}

.navigation .nav-item.active a {
  background: var(--color-2);
  color: #fff;
  border-radius: 15px;
}

.navigation .nav-item a:hover {
  background: var(--color-1);
  color: #fff;
}
.navigation .parent.hover a {
  background: var(--color-2);
  color: #fff;
}
.navigation .custom__btn {
  margin-left: 16px;
}
.navigation ul > li.parent {
  position: relative;
}
.navigation ul > li.parent a,
.navigation ul > li.parent.hover a {
  position: relative;
  padding: 0 35px 0 15px;
}
.navigation ul > li.parent a:after {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 14px;
  font-family: icon;
  content: "\f078";
  transform: translateY(-50%);
  transform-origin: center 55%;
  transition: all .20s cubic-bezier(.485,.005,.56,1);
}
.navigation ul > li.parent li a:after {
  content: none;
}
.navigation ul > li.parent li a {
  padding: 0 10px;
}
.navigation ul > li.parent.hover a:before {
  position: absolute;
  width: calc(100% + 32px); 
  height: 16px; 
  bottom: 0;
  left: -16px;
  transition: all 0.2 ease-in-out;
  background-image: 
  url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 16V0A16.001 16.001 0 0 1 0 16h16Z" fill="%23921640"/></svg>'),
  url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 16V0a16 16 0 0 0 16 16H0Z" fill="%23921640"/></svg>');  
  background-repeat: no-repeat, no-repeat;
  background-size: 16px 16px, 16px 16px;
  background-position: bottom left, bottom right;
}
.navigation ul > li.parent.hover:hover a:before {
  content: "";
}
.navigation ul > li.parent.hover li a:before,
.navigation ul > li.parent.hover li a:hover {
  content: none !important;
}
.mod-menu__sub {
  display: inline-block;
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -30%;
  width: max-content;
  z-index: -1;
  max-width: 1170px;
  background: var(--color-2);
  border-radius: 16px;
  box-shadow: 0px 40px 40px 0px #48484824;
  padding: 0;
  -webkit-transform: rotateX(-20deg);
  transform: rotateX(-20deg);
  -webkit-transform-origin: center -20px;
  transform-origin: center -20px;
  transition: opacity .3s,-webkit-transform .3s;
  transition: transform .3s,opacity .3s;
  transition: transform .3s,opacity .3s,-webkit-transform .3s;
}
.navigation ul > li.parent a {
  transition: all 0s ease-in-out;
}
.navigation ul > li.parent:hover .mod-menu__sub {
  padding: 5px;
  opacity: 1;
  overflow: visible;
  height: auto;
  -webkit-transform:rotateX(0);
  transform: rotateX(0);
  z-index: 5;
}
.mod-menu__sub li > a {
  color: #fff;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.mod-menu__sub li > a:hover {
  color: #c7c7c7 !important;
}

.mod-menu__toggle-sub {
  display: none;
}
.bottom-extention {
  display: none;
}
#mobile__menu,
.open-menu {
  display: none;
}

#header.sticky {
  background: none;
}

#header.sticky .top__header {
  position: relative;
  top: 0;
  height: 80px;
  background: #fff;
  padding: 0 15px;
}
#header.sticky .container {
  position: relative;
  margin-top: -80px;
  max-width: 960px;
}
#header.sticky .top__header .col-8 {
  position: relative;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
#header.sticky .buttons {
  justify-content: right;
}
#header.sticky .navigation .custom__btn {
  display: none;
}
#header.sticky .navigation .nav-item a {
  font-size: 16px;
}
/* Header END */

/* Modal Auth START */

.modal .control {
  margin-bottom: 10px;
}
.modal .custom__btn {
  height: 50px !important;
  border-radius: 6px !important;
  min-width: 160px !important;
}
.modal-content {
  padding: 30px !important;
  background: linear-gradient(to right, #ffe3e8 0%, #fbe8ec 19%, #fff 60%, #ffeae7 100%) !important;
}
.modal .control input {
  height: 50px !important;
  background: #fff !important;
}
.modal-window__close {
  background: var(--color-1) !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  top: -20px !important;
  right: -20px !important;
}
.modal-window__close::before, 
.modal-window__close::after {
  background: #fff !important;
}
.heading-modal__title {
  font-weight: 500 !important;
  font-size: 23px !important;
}
.modal .modal-button {
  background: var(--color-1) !important;
}
.modal .check-box label {
  display: block !important;
  font-size: 12px !important;
  line-height: 130% !important;
  color: #4e4e4e !important;
  padding-left: 35px !important;
}
.modal .check-box label::after {
  width: 20px !important;
  height: 20px !important;
}
.modal .check-box label::before {
  width: 14px !important;
  height: 14px !important;
  left: 4px !important;
}
.modal .modal-content {
  max-width: 590px !important;
}

#login-modal label {
  display: none;
}
#login-modal .modal-content {
  max-width: 430px !important;
}
#login-modal .buttons {
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
#login-modal .form-check label {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  font-size: 14px;
  color: var(--color-4);
  cursor: pointer;
}
#login-modal .form-check label:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 23px;
  height: 23px;
  border-radius: 4px;
  border: 1px solid #a2a2a2;
  content: "";
}
#login-modal .form-check label:before {
  position: absolute;
  top: 55%;
  right: 4px;
  font-size: 19px;
  transform: translateY(-50%);
  font-family: icon;
  color: var(--color-1);
  content: "\f00c";
  opacity: 0;
}
#login-modal .form-check input {
  display: none;
}
#login-modal .form-check input:checked + label:before {
  opacity: 1;
}
#login-modal .form-check input:checked + label:after {
  border-color: var(--color-1);
}
#login-modal .mod-login__options li {
  text-align: right;
}
#login-modal .mod-login__options li > a {
  font-size: 13px;
  color: var(--color-4);
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}
#login-modal .mod-login__options li > a:hover {
  color: var(--color-1);
}
.mod-login-logout__login-greeting a {
  color: var(--body-color);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}
.mod-login-logout__login-greeting a .icon {
  font-size: 27px;
  color: var(--color-1);
  font-weight: 300;
}
.mod-login-logout__login-greeting a:hover {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
  color: var(--color-1);
}
a[title="Перейти в кабинет"] .name {
    display: block;
    max-width: 120px;            /* задаём нужную ширину */
    white-space: nowrap;          /* не переносить текст */
    overflow: hidden;             /* скрыть лишнее */
    text-overflow: ellipsis;      /* показывать ... */
    
}


/* END */

/* Registratrion Page START */

.com-users-registration,
.com-users-remind__form,
.com-users-reset {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--color-1);
  border-radius: 20px;
}
.com-users-remind__form legend,
.com-users-reset legend {
  font-weight: 600;
  margin-bottom: 16px;
}
.com-users-registration .field-spacer {
  display: none;
}
.com-users-registration .control-group,
.com-users-remind__form .control-group,
.com-users-reset .control-group {
  margin-bottom: 16px;
}
.com-users-registration .control-group label,
.com-users-remind__form .control-group label,
.com-users-reset .control-group label {
  display: block;
  color: var(--color-4);
  margin-bottom: 5px;
}
.com-users-registration .control-group label .star {
  color: var(--color-1);
}
.com-users-registration .control-group label .form-control-feedback {
  font-size: 13px;
  display: inline-block;
  margin-left: 8px;
  color: var(--color-1);
}
.com-users-registration .control-group .controls {
  position: relative;
}
.com-users-registration .control-group input,
.com-users-remind__form .control-group input,
.com-users-reset .control-group input {
  width: 100%;
  height: 40px;
  font-size: 15px;
  border: 1px solid #a2a2a2;
  padding: 0 15px;
  border-radius: 3px;
  color: #272727;
}
.com-users-registration .small.text-muted {
  position: absolute;
  top: -20px;
  right: 0;
  color: var(--color-1);
  font-size: 11px;
}
.com-users-registration .input-password-toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}
.com-users-registration .input-password-toggle:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  transform: translate(-50%,-50%);
  content: "\f06e";
  font-family: icon;
  color: var(--color-4);
}
.com-users-registration .password-group meter {
  float: left;
  margin-top: 5px;
}
.com-users-registration .password-group #password-0 {
  font-size: 13px;
  padding-top: 2px;
  margin-left: 16px;
  display: inline-block;
  color: var(--color-1);
}
.com-users-registration__submit button,
.com-users-remind__form .com-users-remind__submit button,
.com-users-reset .com-users-reset__submit button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 20px;
  height: 40px;
  width: auto;
  background: var(--color-1);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition-timing-function: cubic-bezier(.485,.005,.56,1);
  transition: all .20s cubic-bezier(.485,.005,.56,1);
}
.com-users-registration__submit button:hover,
.com-users-remind__form .com-users-remind__submit button:hover,
.com-users-reset .com-users-reset__submit button:hover {
  background: var(--color-2);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 15px 15px -12px var(--color-1);
}
.registration-complete p {
  font-size: 18px;
  line-height: 140%;
}
.registration-complete .custom__btn {
  display: flex;
  max-width: 260px;
  margin: 30px auto 0;
}

#jshop_module_wishlist div[role="tooltip"],
.mod-login-logout div[role="tooltip"],
div[role="tooltip"][id="tip-111"] {
    display: none !important;
}



/* END */

/* Banners START */

#banners .swiper-slide .col-7 {
  padding: 35px 80px 80px 120px;
  background: var(--color-1);
  color: #fff;
}
#banners .swiper-slide .col-5:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  content: "";
  background: var(--color-1);
  border-radius: 0 30px 30px 0;
  z-index: 3;
}
#banners .swiper-slide .col-5 {
  position: relative;
  z-index: 2;
}
#banners .swiper-slide figure {
  height: 100%;
}
#banners .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#banners .swiper-slide .title {
  font-size: 33px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}
#banners .swiper-slide .intro__txt,
#banners .swiper-slide .intro__txt p {
  font-size: 23px;
  line-height: 120%;
}
#banners .swiper-slide .buttons {
  margin-top: 40px;
  gap: 24px;
}
#banners .swiper-buttons {
  bottom: 30px;
  max-width: 50%;
  padding-left: 120px;
  z-index: 10;
}
#banners .swiper-buttons .swiper-pagination {
  text-align: left;
}

.sale__banners .col-6:last-child {
  background: var(--color-1);
  padding: 40px;
  color: #fff;
}
.sale__banners .buttons {
  margin-top: 40px;
}
.sale__banners .buttons button {
  margin-right: 16px;
}
.sale__banners .mod-articles-image {
  height: 100%;
}
.sale__banners .mod-articles-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.stat__banner {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 40px 90px;
  color: #fff;
  overflow: hidden;
}
.stat__banner:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
  background: linear-gradient(45deg, #d1376bad, #d1376b96);
}
.stat__banner .inner {
  position: relative;
  z-index: 5;
}
.stat__banner .title {
  font-size: 54px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 40px;
}
.stat__banner .description {
  font-size: 24px;
}
.stat__banner .custom__btn {
  margin-top: 40px;
}
.stat__banner.type-list .title {
  font-weight: 600;
  font-size: 34px;
  text-align: center;
}
.stat__banner.type-list li:not(:last-child) {
  margin-bottom: 24px;
}
.stat__banner.type-list li {
  position: relative;
  font-size: 23px;
  padding-left: 45px;
  font-weight: 500;
}
.stat__banner.type-list li:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '\f14a';
  font-family: icon;
}

/* Banners END */

/* Advantages START */

.advantag__item {
  text-align: center;
}
.advantag__item .icon {
  margin: 0 auto 35px;
  height: 50px;
}
.advantag__item .icon img {
  width: auto;
  height: 100%;
}

/* Advantages END */

/* Module category articles START */

.category__item {
  border-radius: 20px;
  overflow: hidden;
}
.category__item .col-6:first-child {
  background: var(--color-3);
  padding: 16px;
}
.category__item .col-6:last-child .category-image,
.category__item .col-6:last-child .category-image a {
  width: 100%;
  height: 100%;
}

.category__item .col-6:last-child .category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.category__item .title {
  font-weight: 600;
  font-size: 19px;
  line-height: 130%;
  color: var(--color-5);
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.category__item .title:hover,
.category__item .category-articles li > a:hover {
  color: var(--color-1);
}
.category__item .category-articles li:not(:last-child) {
  margin-bottom: 10px;
} 
.category__item .category-articles li > a {
  color: var(--color-5);
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}

/* Module category articles END */

/* Module Advantages type-2 START */

.advantages_items-type-2,
.advantages_items-type-3 {
  background: var(--color-3);
  border-radius: 20px;
  text-align: center;
  padding: 16px;
}
.advantages_items-type-2 .inner {
  background: #fff;
  border-radius: 16px;
  min-height: 210px;
  padding: 16px;
  align-content: center;
}
.advantages_items-type-2 .icon,
.advantages_items-type-3 .icon {
  margin: 0 auto 20px;
  height: 54px;
  width: auto;
}
.advantages_items-type-2 .icon img,
.advantages_items-type-3 .icon img {
  width: auto;
  height: 100%;
}
.advantages_items-type-3 {
  padding: 24px 34px;
  position: relative;
}
.advantages_items-type-3:after {
  position: absolute;
  top: -5px;
  left: -5px;
  content: "";
  background: var(--color-1);
  width: 95%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

/* Module Advantages type-2 END */

/* Module START WORKING */

.start__working {
  text-align: center;
}

.start__working .digit {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
  font-weight: 600;
  border-radius: 50%;
  background: var(--color-1);
  color: #fff;
}
.start__working:not(:last-child) .digit:after {
  position: absolute;
  top: 50%;
  right: -193%;
  transform: translateY(-50%);
  content: "";
  height: 3px;
  width: 160%;
  background: var(--color-1);
}
.start__working .description {
  font-weight: 500;
}
.start-working-us .custom__btn {
  display: flex;
  margin: 40px auto 0;
}

/* Module START WORKING END */

/* Photo Gallery START */

.photo__gallery .photo-gallery__item {
  position: relative;
  border: 1px solid var(--color-1);
  border-radius: 20px;
  height: 265px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.photo__gallery .photo-gallery__item figure {
  position: relative;
  z-index: 2;
  height: 265px;
  overflow: hidden;
}
.photo__gallery .photo-gallery__item .description {
  position: absolute;
  padding: 16px;
  background: #0009;
  bottom: -100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  left: 0;
  color: #fff;
  z-index: 3;
}
.photo__gallery .photo-gallery__item:hover .description {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.photo__gallery .photo-gallery__item h4 {
  margin-bottom: 16px;
} 
.photo__gallery .inner-wrapper .slide-button.swiper-button-next {
  right: -17px;
}
.photo__gallery .inner-wrapper .slide-button.swiper-button-prev {
  left: -17px;
}

/* Photo Gallery END */

/* Module Clients slider START */

#clients-slider {
  background: var(--color-1);
  color: #fff;
}


.clients__module .swiper-slide {
  position: relative;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  max-height: 145px;
  overflow: hidden;
}

.clients__module .swiper-slide figure {
  height: 100%;
  max-height: 145px;
}
.clients__module .swiper-slide figure img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

/* Module Clients slider END */

/* Module Reviews slider START */


.review__item {
  padding: 16px;
}
.review__item .inner {
  position: relative;
  border-radius: 20px;
  background: var(--greycolor);
  border: 1px solid var(--color-1);
}
.review__item .inner:after {
  position: absolute;
  top: -7px;
  right: -7px;
  content: "";
  background: var(--color-1);
  width: 90%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}
.review__item .review__content {
  padding: 24px;
}
.review__item figure {
  overflow: hidden;
  border-radius: 20px;
}
.review__item .review__content .avatar {
  font-size: 40px;
  text-align: center;
  color: var(--color-1);
}
.review__item .review__content .col-10 {
  padding-left: 16px;
}
.review__item .review__content .name {
  font-size: 18px;
  font-weight: 600;
}
.review__item .review__content .public__date {
  font-size: 14px;
  font-weight: 400;
  color: #6c6c6c;
}
.review__item .review__content .review__txt {
  margin-top: 24px;
  padding: 20px 0;
  position: relative;
  font-style: italic;
}
.review__item .review__content .review__txt:after,
.review__item .review__content .review__txt:before {
  position: absolute;
  font-family: icon;
  font-size: 16px;
  color: var(--color-1);
}
.review__item .review__content .review__txt:before {
  top: 0;
  left: 0;
  content: "\f10d";
}
.review__item .review__content .review__txt:after {
  bottom: 0;
  right: 0;
  content: "\f10e";
}
/* Module Reviews slider END */

/* FAQ START */

.faq__wrapper .item {
  position: relative;
  background: var(--color-3);
  border-radius: 20px;
  padding: 27px 60px;
  transition: all 0.5s ease-in-out;
}
.faq__wrapper .item:not(:last-child) {
  margin-bottom: 24px;
}
.faq__wrapper .item .heading {
  font-size: 19px;
  font-weight: 600;
  line-height: 130%;  
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.faq__wrapper .item .heading .queston {
  padding-right: 24px;
  width: 100%;
  max-width: 96%;
}
.faq__wrapper .item .heading .icon {
  transition: all 0.2s ease-in-out;
  width: 30px;
  height: 30px;
  margin: 0 0 0 auto;
  font-size: 28px;
  color: var(--color-1);
}
.faq__wrapper .item.active .heading .icon {
  transform: rotate(180deg);
  transform-origin: 35% 48%;
}
.faq__wrapper .item .answer {  
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  font-weight: 400;
  -webkit-transition: transform 0.4s ease 0s, opacity 0.2s ease 0s, visibility 0.2s ease 0s;
  transition: transform 0.4s ease 0s, opacity 0.2s ease 0s, visibility 0.2s ease 0s;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
}
.faq__wrapper .item.active .heading {
  background: var(--color-6);
}
.faq__wrapper .item.active .answer {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  visibility: visible;
  height: auto;
  margin-top: 16px;  
  z-index: 10;
}
#faq-module.inner__faq .faq__wrapper .item .heading .queston {
  max-width: 96.9%;
}

/* END */

/* Team START */

.team__item {
  background: var(--color-1);
  padding: 24px;
  border-radius: 20px;
}
.team__item figure {
  border-radius: 20px;
  height: 340px;
  background: #fff;
  padding: 16px;
  overflow: hidden;
}
.team__item .team__content {
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
}
.team__item .team__content .name {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.team__item .team__content .job {
  display: block;
  text-align: center;
  font-size: 15px;
  margin-top: 4px;
  color: var(--color-4);
}
.team__item .team__content .description {
  margin-top: 16px;
}

/* Team END */

/* Share Block START */

.share-block {
  margin: 20px 0;
}
.share-block .row {
  gap: 10px;
}
.share-block .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-4);
}
.share-block a {
  font-size: 20px;
  color: #777;
}
.share-block a:hover {
  color: var(--color-1);
}

/* END */

/* News START */
.news__slider.swiper {
  padding: 24px 0;
}
.news__teaser figure {
  border-radius: 20px;
  border: 1px solid var(--color-1);
  overflow: hidden;
}
.news__teaser .inner {
  margin-top: 20px;
  padding: 0 16px;
}
.news__teaser .title {
  font-size: 19px;
  min-height: 50px;
}
.news__teaser .description {
  margin-top: 16px;
}
.news__teaser .bottom {
  margin-top: 16px;
}
.news__teaser .bottom .text-right {
  text-align: right;
}
.news__teaser .mod-articles-date {
  color: var(--color-4);
  font-size: 16px;
  font-weight: 300;
}
.blog-item.news__teaser {
  margin-bottom: 30px;
}
.blog-item.news__teaser .createdby,
.blog-item.news__teaser .hits {
  display: none;
}
.news__article .article-info {
  gap: 16px;
  font-size: 14px;
  margin-bottom: 24px;
}
.news__article .article-info .icon {
  margin-right: 5px;
}
.news__article .item-image {
  display: block;
  border: 1px solid var(--color-1);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  float: left;
  margin: 0 35px 24px 0 !important;
  overflow: hidden;
}


/* News END */

/* Static page START */



/* Static page END */

/* Footer START */

#footer {
  border-top: 2px solid var(--color-1);
  border-radius: 20px;
  background: var(--greycolor);
  overflow: hidden;
}

#footer .left {
  padding: 40px 50px;
}
#footer .column {
  gap: 24px;
}
.logo__footer {
  width: 100%;
  max-width: 35%;
}

#footer .mod-menu {
  padding-top: 4px;
}
#footer .mod-menu li:not(:last-child) {
  margin-bottom: 12px;
}
#footer .mod-menu li > a {
  color: var(--body-color);
  text-decoration: underline;
  text-decoration-style: dotted;
  font-size: 14px;
}
#footer .mod-menu li > a:hover {
  color: var(--color-1);
}


.footer__contacts li:not(:last-child) {
  margin-bottom: 12px;
}
.footer__contacts li,
.footer__contacts li > a {
  color: var(--color-4);
}
.footer__contacts .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  align-content: center;
  font-size: 20px;
  color: var(--color-1);
}
.social ul {
  gap: 12px;
  margin-top: 16px;
}
.social ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  width: 35px;
  height: 35px;
}
.social ul > li > a .icon {
  margin: 0;
}

.telegram a {
  color: #3390ec;
}
.whatsapp a {
  color: #25d366;
}
.facebook a {
  color: #1877F2; /* Facebook Blue */
}

.instagram a {
  color: #E4405F; /* Instagram (основной фирменный цвет) */
}

.youtube a {
  color: #FF0000; /* YouTube Red */
}

.tiktok a {
  color: #000000; /* TikTok Black */
}
.social ul > li > a:hover {
  color: var(--color-1);
}
.copyright {
  margin-top: 24px;
  color: var(--color-4);
  text-align: right;
  font-size: 13px;
}

/* Footer END */

/* Services Categories START */

.category__description {
  padding: 50px 0;
}
.category__description .category-image {
  border: 1px solid var(--color-1);
  border-radius: 20px;
  overflow: hidden;
}
.category__description .right {
  padding-left: 90px;
}
.visually-hidden {
  display: none;
}
.service__item {
  position: relative;
}
.service__item .mod-articles-image {
  border: 1px solid var(--color-1);
  border-radius: 20px;
  max-height: 310px;
  overflow: hidden;
}
.service__item {
  margin-bottom: 30px;
}
.service__item .inner {
  margin-top: 20px;
  padding: 0 16px;
}
.service__item .title {
  font-size: 19px;
  min-height: 50px;
}
.service__item .custom__btn {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
}
.service__item .webkit__clamp h1,
.service__item .webkit__clamp h2,
.service__item .webkit__clamp h3,
.service__item .webkit__clamp h4 {
  display: none;
}

.service-full__page .mod-articles-image {
  display: block;
  border: 1px solid var(--color-1);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  float: left;
  margin: 0 35px 24px 0 !important;
  overflow: hidden;
}


/* Services Categories END */

/* Joomshop Modules START */

.shop-category-item {
  text-align: center;
  transition: var(--transition);
}
.shop-category-item img {
  border-radius: 20px;
  border: 1px solid var(--color-1);
  transition: var(--transition);
}
.shop-category-item .title {
  display: block;
  margin-top: 30px;
  font-size: 23px;
  color: var(--color-5);
  transition: var(--transition);
}
.shop-category-item:hover img {
  box-shadow: 0 15px 15px -12px var(--color-5);
}

#jshop_module_cart {
  display: inline-block;
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -50%;
  width: 320px;
  z-index: -1;
  background: var(--color-1);
  border-radius: 20px;
  padding: 0;
  -webkit-transform: rotateX(-20deg);
  transform: rotateX(-20deg);
  -webkit-transform-origin: center -20px;
  transform-origin: center -20px;
  transition: opacity .3s,-webkit-transform .3s;
  transition: transform .3s,opacity .3s;
  transition: transform .3s,opacity .3s,-webkit-transform .3s;
}

#jshop_module_cart.show {
  padding: 16px;
  opacity: 1;
  overflow: visible;
  height: auto;
  box-shadow: 0px 12px 15px 0px #00000059;
  -webkit-transform: translateX(-50%) rotateX(0);
  transform: translateX(-50%) rotateX(0);
  z-index: 5;
}
.cart-open {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 27px;
  color: var(--color-1);
}
.cart-open .pcs {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-1);
  font-size: 10px;
  font-weight: 500;
  padding: 2px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  align-content: center;
  color: #fff;
}
.closet__cart {
  display: none;
}
.cart-module__product {
  background: #fff;
  padding: 12px;
  box-shadow: 0px 4px 4px 0px #43434342;
  border-radius: 16px;
  margin-bottom: 12px;
}
.cart-module__product .name {
  font-size: 14px;
  font-weight: 600;
}

.cart-module__product .price-and-pcs  {
  font-size: 14px;
  margin-top: 6px;
}
.cart-module__product .summ {
  text-align: right;
  font-weight: 600;
  color: var(--color-2);
}
.cart-module__product .summ span {
  font-weight: 400;
  color: var(--body-color);
}
.module_cart_total .name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.module_cart_total .value {
  display: block;
  margin-top: 3px;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}
.module_cart_total .custom__btn {
  font-size: 14px;
  font-weight: 600;
}

/* Wishlist Module START */

.wishlist__counter {
  position: relative;
  font-size: 27px;
  color: var(--color-1);
}
.wishlist__counter .icon {
  margin: 0;
}
.wishlist__counter .count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-1);
  font-size: 10px;
  padding: 2px;
  color: #fff;
}
.wishlist__counter .hover-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  width: 150px;
  font-size: 14px;
  text-align: right;
  transition: all 0.2s ease-in-out;
  background: var(--color-1);
  border-radius: 12px;
  color: #fff;
  padding: 6px;
}
.wishlist__counter .hover-info .price {
  font-weight: 600;
}
.wishlist__counter .hover-info {
  display: none;
}


/* END */

/* Joomshop Modules END */

/* Joomshopping Template START */

#mxcpr {
  display: none;
}

.malina__product {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d3d3d3;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.malina__product:hover {
  border-color: var(--color-1);
  box-shadow: 0px 12px 15px -12px #000;
}
.malina__product .image {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid var(--color-1);
  overflow: hidden;
  margin-bottom: 16px;
}
.malina__product .image .image_block {
  position: relative;
  z-index: 3;
}
.malina__product .product-top__info {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
}
.malina__product .product-top__info .product_label {
  background: var(--color-2);
  font-size: 15px;
  font-weight: 500;
  padding: 4px 7px;
  border-radius: 4px;
  color: #fff;
}

.product_label.label_id_1 {
  background: #008a09 !important;
}
.product_label.label_id_2 {
  background: var(--color-1) !important;
}
.product_label.label_id_3 {
  background: #ff538d !important;
}

.malina__product .btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  width: 30px;
  height: 30px;
}
.malina__product .btn-wishlist .full,
.malina__product .btn-wishlist.btn-success .empty {
  display: none;
}
.malina__product .btn-wishlist.btn-success .full {
  display: block;
  color: var(--color-1);
}
.malina__product .btn-wishlist:hover {
  color: var(--color-1);
}
.malina__product .prices__block {
  font-weight: 600;
}
.malina__product .prices__block {
  font-size: 23px;
  font-weight: 700;
  color: var(--color-1);
}
.malina__product .prices__block .old_price {
  font-size: 20px;
  text-align: right;
  text-decoration: line-through;
  color: var(--color-4);
}
.malina__product .name,
.malina__product .name a {
  margin: 12px 0;
  font-size: 19px;
  color: var(--body-color);
}
.malina__product .name {
  min-height: 41px;
  -webkit-line-clamp: 2;
}

.malina__product .product__info {
  font-size: 16px;
  color: var(--color-4);
}
.malina__product .product__info .jshop_code_prod {
  display: inline-block;
  text-align: right;
}
.malina__product .buttons {
  margin-top: 16px;
}
.malina__product .buttons .custom__btn {
  font-size: 14px;
  font-weight: 600;
}

.wishlist__product .manufacturer_code {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-4);
  text-align: right;
}

.wishlish_buttons a {
  width: 100%;
  max-width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
.custom__btn .icon.right {
  margin-left: 7px;
}

.step-order__box {
  margin-bottom: 40px;
}
.step-order__box .jshop_order_step {
  width: 100%;
  max-width: 20%;
  text-align: center;
}

.step-order__box .jshop_order_step .digit {
  position: relative;
   width: 85px;
   height: 85px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   font-weight: 600;
   padding: 16px; 
   margin: 0 auto 20px;
   border: 3px solid var(--color-1);
}
.step-order__box .jshop_order_step:not(:last-child) .digit:after {
  position: absolute;
  top: 50%;
  right: -172%;
  transform: translateY(-50%);
  height: 3px;
  width: 150%;
  content: "";
  background: var(--border-color);
}
.step-order__box .jshop_order_step.active .digit:after {
  background: var(--color-1);
}
.step-order__box .jshop_order_step  span {
  font-weight: 500;
}
.step-order__box .jshop_order_step.active .digit {
  background: var(--color-1);
  color: #fff;
}

.cart__wrapper .jshop.cart tbody {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color-2);
}
.cart__wrapper .jshop.cart .top {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 12px;
  background: var(--color-2);
  color: #fff;
}
.cart__wrapper .jshop.cart .top th {
  width: 100%;
  text-align: center;
}
.cart__wrapper .jshop.cart .top th:nth-child(1) {
  max-width: 11.8%;
}
.cart__wrapper .jshop.cart .top th:nth-child(2) {
  max-width: 24.2%;  
}
.cart__wrapper .jshop.cart .top th:nth-child(3),
.cart__wrapper .jshop.cart .top th:nth-child(4),
.cart__wrapper .jshop.cart .top th:nth-child(5),
.cart__wrapper .jshop.cart .top th:nth-child(6) {
  max-width: 16%;
}

.cart__wrapper .jshop.cart tr th {
  font-size: 14px;
  font-weight: 500;
}
.cart__wrapper .jshop.cart .jshop_prod_cart {
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
}
.cart__wrapper .jshop.cart .jshop_prod_cart.odd {
  background: var(--greycolor);
}
.cart__wrapper .jshop.cart .jshop_prod_cart td {
  display: block;
  align-content: center;
}
.cart__wrapper .jshop.cart .jshop_img_description_center {
  max-width: 11.8%;
  border-radius: 12px;
  box-shadow: 0px 12px 15px -12px #0000006b;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .product_name {
  width: 100%;
  max-width: 24.2%;
  padding: 0 16px;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .product_name a {
  color: var(--body-color);
  font-weight: 600;
  font-size: 14px;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .product_name .jshop_code_prod {
  font-size: 13px;
  font-size: 300;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .single_price {
  color: var(--color-1);
  font-weight: 600;
  font-size: 14px;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .quantity input {
  text-align: center;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .total_price {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-1);
}
.cart__wrapper .jshop.cart .jshop_prod_cart .remove a {
  color: var(--color-4);
  font-size: 22px;
}
.cart__wrapper .jshop.cart .jshop_prod_cart .remove a:hover {
  color: var(--color-1);
}

.cart__wrapper .jshop.cart .jshop_prod_cart .single_price,
.cart__wrapper .jshop.cart .jshop_prod_cart .quantity,
.cart__wrapper .jshop.cart .jshop_prod_cart .total_price,
.cart__wrapper .jshop.cart .jshop_prod_cart .remove {
  padding: 0 16px;
  width: 100%;
  max-width: 16%;
  text-align: center;
}

.qty-box {
    display: inline-flex;
    align-items: center;
}

.qty-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    border-top: 1px solid var(--color-1);
    border-bottom: 1px solid var(--color-1);
    background: var(--color-1);
    color: #fff;
    cursor: pointer;
}
.qty-btn.plus {
  border-right: 1px solid var(--color-1);
  border-radius: 0 5px 5px 0;
}
.qty-btn.minus {
  border-left: 1px solid var(--color-1);
  border-radius: 5px 0 0 5px;
}
.qty-btn:hover {
    background: var(--color-2);
}
.qty-input {
    width: 30px;
    height: 30px;
    border-top: 1px solid var(--color-1);
    border-bottom: 1px solid var(--color-1);
    text-align: center;
}

.module__box {
  background: var(--color-3);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 24px;
}

.cart__full-total .box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  overflow: hidden;
}
.cart__full-total .box .tax {
  width: 100%;
  max-width: 100%;
}
.cart__full-total .box .tax span {
  width: 100% !important;
  font-size: 13px;
  font-weight: 300;
}
.cart__full-total .box:not(:last-child) {
  margin-bottom: 16px;
}
.cart__full-total .box .name,
.cart__full-total .box .value {
  display: block;
  width: 50%;
}
.cart__full-total .box .value {
  text-align: right;
  font-weight: 600;
}

.cart__full-total .box.total {
  padding: 10px;
  background: #fff;
  border-radius: 16px;
}
.cart__full-total .box.discount {
  height: 42px;
  background: var(--color-1);
  color: #fff;
  padding: 10px;
  border-radius: 16px;
  padding-left: 40px;
} 
.cart__full-total .box.discount .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 42px;
  width: 40px;
  font-size: 20px;
  margin-right: 3px;
}
.cart__full-total .box.total .value {
  color: var(--color-1);
  font-size: 20px;
}
.discount__btn {
  width: 100%;
  max-width: 100%;
  height: 55px;
  border-radius: 20px;
  margin-bottom: 24px;
  cursor: pointer;
}
#modal-sale {
  flex-direction: column;
}
#modal-sale .modal-content {
  max-width: 390px !important;
}
#modal-sale .dynamic-content {
  order: 1;
  display: none;
}
#modal-sale .cart_block_discount {
  order: 2;
}
#modal-sale .cart_block_discount input.inputbox {
  height: 55px;
  font-size: 17px;
  margin: 16px 0;
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  border: 2px solid var(--color-1);
}

.cart__wrapper .custom__btn.btn-arrow-left {
  height: 50px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}
.cart__wrapper .custom__btn.confirm__btn {
  height: 60px;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  background: var(--color-4);

}

/* Joomshopping Template END */

/* Authorization Module START */

.authorization__button {
  font-family: icon;
  font-size: 27px;
  width: 100%;
  max-width: 32px;
  color: var(--color-1);
}
.authorization__button:hover,
.cart-open:hover {
  color: var(--color-2);
}

/* Authorization Module END */

