

/* Start:/local/components/emi/change-city/templates/.default/style.css?1725435330365*/
.start-city .tingle-modal-box__footer{
    display: flex;
    justify-content: center;
}
.start-city .tingle-modal-box__footer button{
    margin: 0 10px;
}

.chooseCity .tingle-modal-box__footer{
    display: flex;
    justify-content: center;
}

.open-location{
    cursor: pointer;
}

button.tingle-modal__close{
    background-color: unset;
}
/* End */


/* Start:/local/js/emi/popup/tingle.css?17256080475683*/
.tingle-modal * {
    box-sizing: border-box;
  }
  
  .tingle-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(24, 22, 22, 0.8);
    opacity: 0;
    /*cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;*/
  }
  
  @supports (backdrop-filter: blur(12px)) {
    .tingle-modal {
      backdrop-filter: blur(12px);
    }
  }
  
  /* confirm and alerts
  -------------------------------------------------------------- */
  
  .tingle-modal--confirm .tingle-modal-box {
    text-align: center;
  }
  
  /* modal
  -------------------------------------------------------------- */
  
  .tingle-modal--noOverlayClose {
    cursor: default;
  }
  
  .tingle-modal--noClose .tingle-modal__close {
    display: none;
  }
  
  .tingle-modal__close {
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 1000;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
  }
  
  .tingle-modal__close svg * {
    fill: currentColor;
  }
  
  .tingle-modal__closeLabel {
    display: none;
  }
  
  .tingle-modal__close:hover {
    color: #fff;
  }
  
  .tingle-modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity;
  }
  
  .tingle-modal-box__content {
    padding: 3rem 3rem;
  }
  
  .tingle-modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
  }
  
  .tingle-modal-box__footer::after {
    display: table;
    clear: both;
    content: "";
  }
  
  .tingle-modal-box__footer--sticky {
    position: fixed;
    bottom: -200px; /* TODO : find a better way */
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s;
  }
  
  /* state
  -------------------------------------------------------------- */
  
  .tingle-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
  }
  
  .tingle-modal--visible .tingle-modal-box__footer {
    bottom: 0;
  }
  
  .tingle-modal--visible {
    visibility: visible;
    opacity: 1;
  }
  
  .tingle-modal--visible .tingle-modal-box {
    animation: scale .2s cubic-bezier(.68, -.55, .265, 1.55) forwards;
  }
  
  .tingle-modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh;
  }
  
  /* btn
  -------------------------------------------------------------- */
  
  .tingle-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
  }
  
  .tingle-btn--primary {
    background-color: #3498db;
  }
  
  .tingle-btn--danger {
    background-color: #e74c3c;
  }
  
  .tingle-btn--default {
    background-color: #34495e;
  }
  
  .tingle-btn--pull-left {
    float: left;
  }
  
  .tingle-btn--pull-right {
    float: right;
  }
  
  /* responsive
  -------------------------------------------------------------- */
  
  @media (max-width : 540px) {
    .tingle-modal {
      top: 0px;
      display: block;
      padding-top: 60px;
      width: 100%;
    }
  
    .tingle-modal-box {
      width: auto;
      border-radius: 0;
    }
  
    .tingle-modal-box__content {
      overflow-y: scroll;
    }
  
    .tingle-modal--noClose {
      top: 0;
    }
  
    .tingle-modal--noOverlayClose {
      padding-top: 0;
    }
  
    .tingle-modal-box__footer .tingle-btn {
      display: block;
      float: none;
      margin-bottom: 1rem;
      width: 100%;
    }
  
    .tingle-modal__close {
      top: 0;
      right: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 60px;
      border: none;
      background-color: #2c3e50;
      box-shadow: none;
      color: #fff;
    }
  
    .tingle-modal__closeLabel {
      display: inline-block;
      vertical-align: middle;
      font-size: 1.6rem;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    }
  
    .tingle-modal__closeIcon {
      display: inline-block;
      margin-right: .8rem;
      width: 1.6rem;
      vertical-align: middle;
      font-size: 0;
    }
  }
  
  /* animations
  -------------------------------------------------------------- */
  
  @keyframes scale {
    0% {
      opacity: 0;
      transform: scale(.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
/* End */


/* Start:/local/components/emi/location/templates/.default/style.css?172476876345*/
.location__wrapper.hide{
  display: none;
}
/* End */


/* Start:/local/components/emi/sale.location.selector.search/templates/.default/style.css?17248452896633*/

.bx-sls .dropdown-block {
	border: 1px solid #bdbdbd;
	border-radius: 2px;
	/*-webkit-box-shadow: inset 0 1px 2px #ebebeb;
	box-shadow: inset 0 1px 2px #ebebeb;*/
	padding: 0 22px 0 30px;
	position: relative;
	background-color: #fff;
}

.bx-sls .dropdown-block-ui {
	font-size: 16px;
	padding: 0 22px 0 30px;
	position: relative;
	background-color: #fff;
	margin-top: 5px;
}

.bx-sls .dropdown-arrow {
	background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/dropdown-errow.png) no-repeat center center;
	height: 100%;
	top: 0;
	right: 0;
	position: absolute;
	width: 22px;
}

.bx-sls .bx-ui-sls-container {
	overflow: hidden;
	min-height:20px;
}

.bx-sls .bx-ui-sls-pane {
	border: 1px solid #bdbdbd;
	border-radius: 2px;
	-webkit-box-shadow: 0 2px 3px #c7c7c7;
	box-shadow: 0 2px 3px #c7c7c7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: none;
	max-height: 200px;
	overflow-y: auto;
	left: 0;
	top: 40px;
	padding: 5px 5px 3px 5px;
	position: absolute;
	width: 100%;
}

.bx-sls .dropdown-active .bx-ui-sls-pane {
	display: block;
}

.bx-sls .bx-ui-sls-variants {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bx-sls .dropdown-item {
	border-radius: 2px;
	padding: 7px 4px 7px 10px;
	margin-bottom: 2px;
}

.bx-sls .dropdown-item:hover {
	background-color: #f1f3f5;
	cursor: pointer;
}
/*
.bx-sls .dropdown-img {
	border: none;
	display: inline-block;
	height: 12px;
	margin: 3px 12px 0 0;
	vertical-align: top;
	width: 16px;
}
*/
.bx-sls .dropdown-item-text {
	/*makeup:color: #212121;*/
	color: #aba8ac;
	display: inline-block;
	/*max-width: 220px;*/ /*silly limitation*/
	vertical-align: top;
}

.bx-sls .dropdown-item-text span{
	color: #25282c;
}

.bx-sls .dropdown-list-title {
	border-bottom: 1px solid #e5e5e5;
	height: 37px;
	/*line-height: 37px*/
	padding-left: 8px;
}

.bx-sls .dropdown-icon {
	background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/lens.png) no-repeat center center;
	height: 14px;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 14px;
}

.bx-sls .quick-locations{
	margin-bottom: 5px;
}
.bx-sls .quick-location-tag {
	background-color: #f2f5f8;
	border: 1px solid #cad3dc;
	border-radius: 3px;
	color: #1e55b9;
	display: inline-block;
	font-size: 15px;
	height: 27px;
	/*line-height: 26px;*/
	margin: 0 3px;
	padding: 0 14px;
	text-decoration: none;
	margin-bottom: 10px;
}
.bx-sls .quick-location-tag:hover{
	background-color: #fafafa;
}

.bx-sls .dropdown-fade2white{
	width: 46px;
	height: 31px;
	position: absolute;
	top: 2px;
	right: 0;

	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(30%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}

.bx-sls .bx-ui-sls-clear{
	background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -3386px no-repeat scroll;
	width: 30px;
	height: 30px;
	cursor: pointer;
	cursor: hand;
	margin-top: 2px;

	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
}
.bx-sls .bx-ui-sls-clear:hover{
	background-position: 6px -3418px;
}

.bx-sls .bx-ui-sls-loader{
	background-image: url(/bitrix/panel/main/images/waiter-white.gif) !important;
	background-repeat: no-repeat !important;
	background-position: right -1px !important;

	width: 30px;
	height: 30px;

	position: absolute;
	top: 3px;
	right: 2px;
	display: none;
}

.bx-sls .bx-ui-sls-go-edit{
	display: none;
}

.bx-sls .bx-ui-sls-pane{
	max-height: 300px;
}

.bx-sls input::-ms-clear {
	display: none;
}

.bx-sls input[type="text"]{
	position: relative;
}

.bx-sls .bx-ui-sls-fake,
.bx-sls .bx-ui-sls-route {
	position: absolute !important;
	top: 0;
	left: 0;
	opacity: 1 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	/*background-position: right 1px;
	background-repeat: no-repeat;*/
	/*font-family: var(--ui-font-family-primary, var(--ui-font-family-helvetica));*/
	width: 100%;
	outline: none;
	z-index:10;
}
.bx-sls .bx-ui-sls-route{
	/*color: #aba8ac !important;*/
	z-index:5;
}

.bx-sls .bx-ui-sls-pane{
	background-color: #fff;
	z-index: 999;
	border: 1px solid #87919c;
}

.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant,
.bx-sls .bx-ui-sls-error{
	padding: 10px 10px;
}
.bx-sls .bx-ui-sls-error{
	color: #ff2222;
	padding-left: 30px;
	position: relative;
}
.bx-sls .bx-ui-sls-error div{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 25px;
	height: 25px;
	background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -2895px no-repeat scroll;
}
.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant:hover,
.bx-sls .bx-ui-sls-variant-active{
	background-color: #E0E8EA;
}

.adm-sls-edit-link{
	margin-top: 10px;
}

/* CSS-modes below: admin, public; */
.bx-admin-mode .bx-sls-go-edit{
	margin-left: 10px;
	display: none;
}

.bx-admin-mode .dropdown-block {
	border-color: #87919c #959ea9 #9ea7b1;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
	height: 25px;
}

.bx-sls.bx-admin-mode .bx-ui-sls-fake,
.bx-sls.bx-admin-mode .bx-ui-sls-route {
	height: 25px;
}

.bx-admin-mode .dropdown-icon {
	top: 7px;
}

.bx-admin-mode .dropdown-fade2white {
	height: 22px;
}

.bx-admin-mode .dropdown-fade2white {
	right: 1px;
}

.bx-admin-mode .bx-ui-sls-clear {
	background-position: 6px -3389px;
	height: 22px;
}

.bx-admin-mode .bx-ui-sls-clear:hover{
	background-position: 6px -3421px;
}

.bx-admin-mode .bx-ui-sls-loader {
	background-position: right -4px !important;
	height: 21px;
}

.bx-admin-mode .bx-ui-sls-pane {
	top: 27px;
}

.chooseCity .bx-ui-sls-input-block{
    /* display: flex; */
    /*align-items: center;*/
    border: 1px solid rgba(24, 22, 22, 0.1);
    border-radius: 200px;
    padding: 12px 12px 12px 20px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.chooseCity .bx-ui-sls-input-block input {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #181616;
}
/* End */


/* Start:/local/components/emi/search-title/templates/.default/style.css?1726562034415*/
.search-result {
    top: var(--header-height);
}

.search-result.is-open {
    left: 0;
}

div.search-result__price {
    margin-top: 1em;
}

input.js-search-input:-webkit-autofill,
input.js-search-input:-webkit-autofill:hover,
input.js-search-input:-webkit-autofill:focus,
input.js-search-input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px #181616 inset !important;
    -webkit-text-fill-color: #ffffff;
}
/* End */


/* Start:/local/components/emi/emi-registration/templates/sms/style.css?172681555242*/
.text-danger{
    margin-bottom: 10px;
}


/* End */


/* Start:/local/components/emi-front/modal-subscribe/templates/.default/style.css?173286905541*/
.admission__wrapper{
    display: none;
}
/* End */


/* Start:/local/templates/emi-new/template_styles.css?1751552542202*/
#adminPanel{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}    

.basic-block{
    min-height: 300px;
}

.basic-block p{
    margin-top: 3em;
    font-size: 20px;
}
/* End */


/* Start:/local/templates/emi-new/css/swiper-bundle.min.css?172430995218432*/
/**
 * Swiper 11.1.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 15, 2024
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/emi-new/css/simplebar.css?17243099524284*/
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: rgba(24, 22, 22, 0.1);
  border-radius: 12px;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
  width: 100%;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 6px;
  background: rgba(24, 22, 22, 0.05);
  border-radius: 12px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* End */


/* Start:/local/templates/emi-new/css/magnific-popup.css?17243099528611*/
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
   * Remove all paddings around the image on small screen
   */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/*# sourceMappingURL=magnific-popup.css.map */


/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.custom-gallery {

    video,
    img {
        display: block;
        width: 100%;
        height: auto;
        border: 0;
        aspect-ratio: 348/196;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    img {
        object-fit: cover;
        object-position: center;
    }

    /* .mfp-close {
        display: none;
    } */

    .mfp-container {
        padding: 0 24px;
    }

    @include media-breakpoint(xxxl-up) {

        .mfp-container {
            padding: 0 108px;
        }
    }
}
/* End */


/* Start:/local/templates/emi-new/css/nouislider.min.css?17243099523888*/
/*! nouislider - 13.1.1 - 2/14/2019 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;left:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;transform-origin:0 0}html:not([dir=rtl]) .noUi-horizontal .noUi-origin{left:auto;right:0}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}html:not([dir=rtl]) .noUi-horizontal .noUi-handle{right:-17px;left:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}
/* End */


/* Start:/local/templates/emi-new/css/air-datepicker.css?172430995219619*/
.air-datepicker-cell.-year-.-other-decade-,.air-datepicker-cell.-day-.-other-month-{color:var(--adp-color-other-month)}.air-datepicker-cell.-year-.-other-decade-:hover,.air-datepicker-cell.-day-.-other-month-:hover{color:var(--adp-color-other-month-hover)}.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-{color:var(--adp-color-other-month)}.-selected-.air-datepicker-cell.-year-.-other-decade-,.-selected-.air-datepicker-cell.-day-.-other-month-{color:#fff;background:var(--adp-background-color-selected-other-month)}.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-{background:var(--adp-background-color-selected-other-month-focused)}.-in-range-.air-datepicker-cell.-year-.-other-decade-,.-in-range-.air-datepicker-cell.-day-.-other-month-{background-color:var(--adp-background-color-in-range);color:var(--adp-color)}.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-{background-color:var(--adp-background-color-in-range-focused)}.air-datepicker-cell.-year-.-other-decade-:empty,.air-datepicker-cell.-day-.-other-month-:empty{background:none;border:none}.air-datepicker-cell{border-radius:var(--adp-cell-border-radius);box-sizing:border-box;cursor:pointer;display:flex;position:relative;align-items:center;justify-content:center;z-index:1}.air-datepicker-cell.-focus-{background:var(--adp-cell-background-color-hover)}.air-datepicker-cell.-current-{color:var(--adp-color-current-date)}.air-datepicker-cell.-current-.-focus-{color:var(--adp-color)}.air-datepicker-cell.-current-.-in-range-{color:var(--adp-color-current-date)}.air-datepicker-cell.-disabled-{cursor:default;color:var(--adp-color-disabled)}.air-datepicker-cell.-disabled-.-focus-{color:var(--adp-color-disabled)}.air-datepicker-cell.-disabled-.-in-range-{color:var(--adp-color-disabled-in-range)}.air-datepicker-cell.-disabled-.-current-.-focus-{color:var(--adp-color-disabled)}.air-datepicker-cell.-in-range-{background:var(--adp-cell-background-color-in-range);border-radius:0}.air-datepicker-cell.-in-range-:hover,.air-datepicker-cell.-in-range-.-focus-{background:var(--adp-cell-background-color-in-range-hover)}.air-datepicker-cell.-range-from-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius)}.air-datepicker-cell.-range-to-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0}.air-datepicker-cell.-range-to-.-range-from-{border-radius:var(--adp-cell-border-radius)}.air-datepicker-cell.-selected-{color:#fff;border:none;background:var(--adp-cell-background-color-selected)}.air-datepicker-cell.-selected-.-current-{color:#fff;background:var(--adp-cell-background-color-selected)}.air-datepicker-cell.-selected-.-focus-{background:var(--adp-cell-background-color-selected-hover)}
.air-datepicker-body{transition:all var(--adp-transition-duration) var(--adp-transition-ease)}.air-datepicker-body.-hidden-{display:none}.air-datepicker-body--day-names{display:grid;grid-template-columns:repeat(7, var(--adp-day-cell-width));margin:8px 0 3px}.air-datepicker-body--day-name{color:var(--adp-day-name-color);display:flex;align-items:center;justify-content:center;flex:1;text-align:center;text-transform:uppercase;font-size:.8em}.air-datepicker-body--day-name.-clickable-{cursor:pointer}.air-datepicker-body--day-name.-clickable-:hover{color:var(--adp-day-name-color-hover)}.air-datepicker-body--cells{display:grid}.air-datepicker-body--cells.-days-{grid-template-columns:repeat(7, var(--adp-day-cell-width));grid-auto-rows:var(--adp-day-cell-height)}.air-datepicker-body--cells.-months-{grid-template-columns:repeat(3, 1fr);grid-auto-rows:var(--adp-month-cell-height)}.air-datepicker-body--cells.-years-{grid-template-columns:repeat(4, 1fr);grid-auto-rows:var(--adp-year-cell-height)}
.air-datepicker-nav{display:flex;justify-content:space-between;border-bottom:1px solid var(--adp-border-color-inner);min-height:var(--adp-nav-height);padding:var(--adp-padding);box-sizing:content-box}.-only-timepicker- .air-datepicker-nav{display:none}.air-datepicker-nav--title,.air-datepicker-nav--action{display:flex;cursor:pointer;align-items:center;justify-content:center}.air-datepicker-nav--action{width:var(--adp-nav-action-size);border-radius:var(--adp-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none}.air-datepicker-nav--action:hover{background:var(--adp-background-color-hover)}.air-datepicker-nav--action:active{background:var(--adp-background-color-active)}.air-datepicker-nav--action.-disabled-{visibility:hidden}.air-datepicker-nav--action svg{width:32px;height:32px}.air-datepicker-nav--action path{fill:none;stroke:var(--adp-nav-arrow-color);stroke-width:2px}.air-datepicker-nav--title{border-radius:var(--adp-border-radius);padding:0 8px}.air-datepicker-nav--title i{font-style:normal;color:var(--adp-nav-color-secondary);margin-left:.3em}.air-datepicker-nav--title:hover{background:var(--adp-background-color-hover)}.air-datepicker-nav--title:active{background:var(--adp-background-color-active)}.air-datepicker-nav--title.-disabled-{cursor:default;background:none}
.air-datepicker-buttons{display:grid;grid-auto-columns:1fr;grid-auto-flow:column}.air-datepicker-button{display:inline-flex;color:var(--adp-btn-color);border-radius:var(--adp-btn-border-radius);cursor:pointer;height:var(--adp-btn-height);border:none;background:rgba(255,255,255,0)}.air-datepicker-button:hover{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover)}.air-datepicker-button:focus{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover);outline:none}.air-datepicker-button:active{background:var(--adp-btn-background-color-active)}.air-datepicker-button span{outline:none;display:flex;align-items:center;justify-content:center;width:100%;height:100%}
.air-datepicker-time{display:grid;grid-template-columns:max-content 1fr;grid-column-gap:12px;align-items:center;position:relative;padding:0 var(--adp-time-padding-inner)}.-only-timepicker- .air-datepicker-time{border-top:none}.air-datepicker-time--current{display:flex;align-items:center;flex:1;font-size:14px;text-align:center}.air-datepicker-time--current-colon{margin:0 2px 3px;line-height:1}.air-datepicker-time--current-hours,.air-datepicker-time--current-minutes{line-height:1;font-size:19px;font-family:"Century Gothic",CenturyGothic,AppleGothic,sans-serif;position:relative;z-index:1}.air-datepicker-time--current-hours:after,.air-datepicker-time--current-minutes:after{content:"";background:var(--adp-background-color-hover);border-radius:var(--adp-border-radius);position:absolute;left:-2px;top:-3px;right:-2px;bottom:-2px;z-index:-1;opacity:0}.air-datepicker-time--current-hours.-focus-:after,.air-datepicker-time--current-minutes.-focus-:after{opacity:1}.air-datepicker-time--current-ampm{text-transform:uppercase;align-self:flex-end;color:var(--adp-time-day-period-color);margin-left:6px;font-size:11px;margin-bottom:1px}.air-datepicker-time--row{display:flex;align-items:center;font-size:11px;height:17px;background:linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat}.air-datepicker-time--row:first-child{margin-bottom:4px}.air-datepicker-time--row input[type=range]{background:none;cursor:pointer;flex:1;height:100%;width:100%;padding:0;margin:0;-webkit-appearance:none}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none}.air-datepicker-time--row input[type=range]::-ms-tooltip{display:none}.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type=range]:hover::-ms-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type=range]:focus{outline:none}.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type=range]:focus::-ms-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-webkit-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type=range]::-moz-range-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-moz-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type=range]::-ms-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-ms-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{margin-top:calc(var(--adp-time-thumb-size)/2*-1)}.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.air-datepicker-time--row input[type=range]::-moz-range-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.air-datepicker-time--row input[type=range]::-ms-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.air-datepicker-time--row input[type=range]::-ms-fill-lower{background:rgba(0,0,0,0)}.air-datepicker-time--row input[type=range]::-ms-fill-upper{background:rgba(0,0,0,0)}
.air-datepicker{--adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--adp-font-size: 14px;--adp-width: 246px;--adp-z-index: 100;--adp-padding: 4px;--adp-grid-areas: "nav" "body" "timepicker" "buttons";--adp-transition-duration: .3s;--adp-transition-ease: ease-out;--adp-transition-offset: 8px;--adp-background-color: #fff;--adp-background-color-hover: #f0f0f0;--adp-background-color-active: #eaeaea;--adp-background-color-in-range: rgba(92, 196, 239, .1);--adp-background-color-in-range-focused: rgba(92, 196, 239, .2);--adp-background-color-selected-other-month-focused: #8ad5f4;--adp-background-color-selected-other-month: #a2ddf6;--adp-color: #4a4a4a;--adp-color-secondary: #9c9c9c;--adp-accent-color: #4eb5e6;--adp-color-current-date: var(--adp-accent-color);--adp-color-other-month: #dedede;--adp-color-disabled: #aeaeae;--adp-color-disabled-in-range: #939393;--adp-color-other-month-hover: #c5c5c5;--adp-border-color: #dbdbdb;--adp-border-color-inner: #efefef;--adp-border-radius: 4px;--adp-border-color-inline: #d7d7d7;--adp-nav-height: 32px;--adp-nav-arrow-color: var(--adp-color-secondary);--adp-nav-action-size: 32px;--adp-nav-color-secondary: var(--adp-color-secondary);--adp-day-name-color: #ff9a19;--adp-day-name-color-hover: #8ad5f4;--adp-day-cell-width: 1fr;--adp-day-cell-height: 32px;--adp-month-cell-height: 42px;--adp-year-cell-height: 56px;--adp-pointer-size: 10px;--adp-poiner-border-radius: 2px;--adp-pointer-offset: 14px;--adp-cell-border-radius: 4px;--adp-cell-background-color-hover: var(--adp-background-color-hover);--adp-cell-background-color-selected: #5cc4ef;--adp-cell-background-color-selected-hover: #45bced;--adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);--adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);--adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);--adp-btn-height: 32px;--adp-btn-color: var(--adp-accent-color);--adp-btn-color-hover: var(--adp-color);--adp-btn-border-radius: var(--adp-border-radius);--adp-btn-background-color-hover: var(--adp-background-color-hover);--adp-btn-background-color-active: var(--adp-background-color-active);--adp-time-track-height: 1px;--adp-time-track-color: #dedede;--adp-time-track-color-hover: #b1b1b1;--adp-time-thumb-size: 12px;--adp-time-padding-inner: 10px;--adp-time-day-period-color: var(--adp-color-secondary);--adp-mobile-font-size: 16px;--adp-mobile-nav-height: 40px;--adp-mobile-width: 320px;--adp-mobile-day-cell-height: 38px;--adp-mobile-month-cell-height: 48px;--adp-mobile-year-cell-height: 64px}.air-datepicker-overlay{--adp-overlay-background-color: rgba(0, 0, 0, .3);--adp-overlay-transition-duration: .3s;--adp-overlay-transition-ease: ease-out;--adp-overlay-z-index: 99}
.air-datepicker{background:var(--adp-background-color);border:1px solid var(--adp-border-color);box-shadow:0 4px 12px rgba(0,0,0,.15);border-radius:var(--adp-border-radius);box-sizing:content-box;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(4, max-content);grid-template-areas:var(--adp-grid-areas);font-family:var(--adp-font-family),sans-serif;font-size:var(--adp-font-size);color:var(--adp-color);width:var(--adp-width);position:absolute;transition:opacity var(--adp-transition-duration) var(--adp-transition-ease),transform var(--adp-transition-duration) var(--adp-transition-ease);z-index:var(--adp-z-index)}.air-datepicker:not(.-custom-position-){opacity:0}.air-datepicker.-from-top-{transform:translateY(calc(var(--adp-transition-offset) * -1))}.air-datepicker.-from-right-{transform:translateX(var(--adp-transition-offset))}.air-datepicker.-from-bottom-{transform:translateY(var(--adp-transition-offset))}.air-datepicker.-from-left-{transform:translateX(calc(var(--adp-transition-offset) * -1))}.air-datepicker.-active-:not(.-custom-position-){transform:translate(0, 0);opacity:1}.air-datepicker.-active-.-custom-position-{transition:none}.air-datepicker.-inline-{border-color:var(--adp-border-color-inline);box-shadow:none;position:static;left:auto;right:auto;opacity:1;transform:none}.air-datepicker.-inline- .air-datepicker--pointer{display:none}.air-datepicker.-is-mobile-{--adp-font-size: var(--adp-mobile-font-size);--adp-day-cell-height: var(--adp-mobile-day-cell-height);--adp-month-cell-height: var(--adp-mobile-month-cell-height);--adp-year-cell-height: var(--adp-mobile-year-cell-height);--adp-nav-height: var(--adp-mobile-nav-height);--adp-nav-action-size: var(--adp-mobile-nav-height);position:fixed;width:var(--adp-mobile-width);border:none}.air-datepicker.-is-mobile- *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.air-datepicker.-is-mobile- .air-datepicker--pointer{display:none}.air-datepicker.-is-mobile-:not(.-custom-position-){transform:translate(-50%, calc(-50% + var(--adp-transition-offset)))}.air-datepicker.-is-mobile-.-active-:not(.-custom-position-){transform:translate(-50%, -50%)}.air-datepicker.-custom-position-{transition:none}.air-datepicker-global-container{position:absolute;left:0;top:0}.air-datepicker--pointer{--pointer-half-size: calc(var(--adp-pointer-size) / 2);position:absolute;width:var(--adp-pointer-size);height:var(--adp-pointer-size);z-index:-1}.air-datepicker--pointer:after{content:"";position:absolute;background:#fff;border-top:1px solid var(--adp-border-color-inline);border-right:1px solid var(--adp-border-color-inline);border-top-right-radius:var(--adp-poiner-border-radius);width:var(--adp-pointer-size);height:var(--adp-pointer-size);box-sizing:border-box}.-top-left- .air-datepicker--pointer,.-top-center- .air-datepicker--pointer,.-top-right- .air-datepicker--pointer,[data-popper-placement^=top] .air-datepicker--pointer{top:calc(100% - var(--pointer-half-size) + 1px)}.-top-left- .air-datepicker--pointer:after,.-top-center- .air-datepicker--pointer:after,.-top-right- .air-datepicker--pointer:after,[data-popper-placement^=top] .air-datepicker--pointer:after{transform:rotate(135deg)}.-right-top- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer,[data-popper-placement^=right] .air-datepicker--pointer{right:calc(100% - var(--pointer-half-size) + 1px)}.-right-top- .air-datepicker--pointer:after,.-right-center- .air-datepicker--pointer:after,.-right-bottom- .air-datepicker--pointer:after,[data-popper-placement^=right] .air-datepicker--pointer:after{transform:rotate(225deg)}.-bottom-left- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer,[data-popper-placement^=bottom] .air-datepicker--pointer{bottom:calc(100% - var(--pointer-half-size) + 1px)}.-bottom-left- .air-datepicker--pointer:after,.-bottom-center- .air-datepicker--pointer:after,.-bottom-right- .air-datepicker--pointer:after,[data-popper-placement^=bottom] .air-datepicker--pointer:after{transform:rotate(315deg)}.-left-top- .air-datepicker--pointer,.-left-center- .air-datepicker--pointer,.-left-bottom- .air-datepicker--pointer,[data-popper-placement^=left] .air-datepicker--pointer{left:calc(100% - var(--pointer-half-size) + 1px)}.-left-top- .air-datepicker--pointer:after,.-left-center- .air-datepicker--pointer:after,.-left-bottom- .air-datepicker--pointer:after,[data-popper-placement^=left] .air-datepicker--pointer:after{transform:rotate(45deg)}.-top-left- .air-datepicker--pointer,.-bottom-left- .air-datepicker--pointer{left:var(--adp-pointer-offset)}.-top-right- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer{right:var(--adp-pointer-offset)}.-top-center- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer{left:calc(50% - var(--adp-pointer-size)/2)}.-left-top- .air-datepicker--pointer,.-right-top- .air-datepicker--pointer{top:var(--adp-pointer-offset)}.-left-bottom- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer{bottom:var(--adp-pointer-offset)}.-left-center- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer{top:calc(50% - var(--adp-pointer-size)/2)}.air-datepicker--navigation{grid-area:nav}.air-datepicker--content{box-sizing:content-box;padding:var(--adp-padding);grid-area:body}.-only-timepicker- .air-datepicker--content{display:none}.air-datepicker--time{grid-area:timepicker}.air-datepicker--buttons{grid-area:buttons}.air-datepicker--buttons,.air-datepicker--time{padding:var(--adp-padding);border-top:1px solid var(--adp-border-color-inner)}.air-datepicker-overlay{position:fixed;background:var(--adp-overlay-background-color);left:0;top:0;width:0;height:0;opacity:0;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),left 0s,height 0s,width 0s;transition-delay:0s,var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration);z-index:var(--adp-overlay-z-index)}.air-datepicker-overlay.-active-{opacity:1;width:100%;height:100%;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),height 0s,width 0s}

/* End */


/* Start:/local/templates/emi-new/css/style.css?1751532952204798*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

@font-face {
  font-weight: 400;
  font-family: "TildaSans";
  font-style: normal;
  src: url("/local/templates/emi-new/css/../fonts/TildaSans-400.woff2") format("woff2"), url("/local/templates/emi-new/css/../fonts/TildaSans-400.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-weight: 500;
  font-family: "TildaSans";
  font-style: normal;
  src: url("/local/templates/emi-new/css/../fonts/TildaSans-500.woff2") format("woff2"), url("/local/templates/emi-new/css/../fonts/TildaSans-500.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-weight: 700;
  font-family: "TildaSans";
  font-style: normal;
  src: url("/local/templates/emi-new/css/../fonts/TildaSans-700.woff2") format("woff2"), url("/local/templates/emi-new/css/../fonts/TildaSans-700.woff") format("woff");
  font-display: swap;
}

:root {
  --vw: 1vw;
  --vw100: 100vw;
  --lvh: 1vh;
  --svh: 1vh;
  --dvh: 1vh;
}

@supports (top: 1dvh) {
  :root {
    --lvh: 1lvh !important;
    --svh: 1svh !important;
    --dvh: 1dvh !important;
  }
}

body {
  font-family: "TildaSans", "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #181616;
  width: var(--vw100);
  min-width: 360px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

@media only screen and (min-width: 1366px) {
  body {
    font-size: 18px;
    line-height: 21px;
    padding-top: var(--header-height);
  }
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: transparent;
  width: 0px;
}

::-webkit-scrollbar-thumb {
  background: transparent;
  width: 0px;
}

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

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

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: top;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: inherit;
}

button {
  border: none;
  cursor: pointer;
  padding: 0;
  background: transparent;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

dl,
dd,
dt,
blockquote {
  margin: 0;
}

dialog {
  background: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

video,
iframe {
  --ratio: 16/9;
  --aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  aspect-ratio: var(--aspect-ratio);
}

input {
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
  width: 100%;
}

address {
  font-style: normal;
}

svg {
  pointer-events: none;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  display: unset;
}

.container {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 24px;
  width: 100%;
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .container {
    padding: 0 108px;
  }
}

.scroll-disabled {
  overflow: hidden;
}

.info-block {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 1000;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal {
  border-radius: 200px;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal .ymaps-2-1-79-balloon__layout {
  border-radius: 200px;
  background: #E58A9A;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal .ymaps-2-1-79-balloon__content {
  background: #E58A9A;
  margin-right: 0;
  padding: 2px 12px;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal .ymaps-2-1-79-balloon__content>ymaps {
  width: -moz-max-content;
  width: max-content;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal .ymaps-2-1-79-balloon__tail::after {
  background: #E58A9A;
}

.ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_normal .ymaps-2-1-79-balloon__close {
  display: none;
}

.ballon-text {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 140%;
  color: #E58A9A;
  font-weight: bold;
}

@media (min-width: 937px) {
  .ballon-text {
    color: #ffffff;
    font-weight: 400;
  }
}

.h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .h1 {
    font-size: 78px;
    line-height: 94px;
  }
}

.h2 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
}

.h2--white {
  color: #ffffff;
}

@media only screen and (min-width: 1366px) {
  .h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

.carousel-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 6px !important;
  background: #C5C4C4;
  opacity: 1;
  will-change: auto;
  transition: all 0.5s ease;
}

.carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 18px;
  background: #181616;
  border-radius: 100px;
}

.card-item {
  background: #ffffff;
  border: 1px solid rgba(24, 22, 22, 0.1);
  padding: 12px;
}

.card-item__head {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-item__btn svg {
  margin-right: 6px;
}

.card-item__basket {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.card-item__basket button {
  margin-top: 0;
}

.card-item__counter {
  display: flex;
  order: 2;
  padding-left: 6px;
  margin-left: auto;
}

.card-item__counter div {
  display: flex;
}

.card-item__counter label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
}

.card-item__counter input {
  display: flex;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  width: 20px;
  text-align: center;
}

.card-item__counter button {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #181616;
  cursor: pointer;
}

.card-item__counter button img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .card-item__counter button {
    width: 24px;
    height: 24px;
    transition: all 0.5s ease;
  }

  .card-item__counter button img {
    width: 14px;
    height: 14px;
  }

  .card-item__counter button:hover {
    background: rgba(24, 22, 22, 0.8);
  }
}

.card-item__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.card-item__img img {
  height: 100%;
  max-width: 200px;
  max-height: 220px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-item__panel {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.card-item__panel mark {
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  color: #ffffff;
  background: #959595;
  width: fit-content;
  margin-bottom: 8px;
}

.card-item__panel mark.mark--new {
  background: #B2D3A8;
}

.card-item__panel mark.mark--sale,
.card-item__panel mark.mark--for_sale {
  background: #E58A9A;
}

.card-item__panel mark.mark--hit,
.card-item__panel mark.mark--hit_sale {
  background: #E0BF7A;
}

.card-item__panel mark.mark--action {
  background: cornflowerblue;
}

.card-item__panel mark.mark--top_10 {
  background: cadetblue;
}

.card-item__panel mark.mark--pedicure {
  background: #a093a4;
}

.card-item__info {
  margin-top: 26px;
}

.card-item__info>a {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #181616;
  display: inline-block;
  margin-top: 16px;
}

@media only screen and (min-width: 1366px) {
  .card-item__info>a {
    font-size: 18px;
    line-height: 22px;
    transition: color 0.5s ease;
  }

  .card-item__info>a:hover {
    color: #EE9EAD;
  }
}

.card-item__price {
  display: flex;
  align-items: center;
}

.card-item__price p:nth-child(1) {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #181616;
}

.card-item__price p:nth-child(2) {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 12px;
  position: relative;
}

.card-item__price p:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #C5C4C4;
  bottom: 7px;
  left: 0;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .card-item__price p:nth-child(1) {
    font-size: 22px;
    line-height: 26px;
  }
}

.card-item__rating {
  display: flex;
  margin-top: 8px;
}

.card-item__rating p {
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  padding-right: 9px;
  margin-right: 9px;
  color: #C5C4C4;
}

.card-item__rating p::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
}

.card-item__rating p::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  background: #C5C4C4;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.card-item__rating a {
  font-weight: 500;
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .card-item__rating a {
    transition: color 0.5s ease;
  }

  .card-item__rating a:hover {
    color: #E58A9A;
  }
}

.card-item__favorites {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.card-item__favorites svg {
  width: 32px;
  height: 32px;
}

.card-item__favorites svg path {
  fill: #ffffff;
  transition: all 0.5s ease;
}

.card-item__favorites.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

.review-item {
  padding: 20px;
  border: 1px solid rgba(24, 22, 22, 0.1);
}

.review-item__img img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}

@media only screen and (min-width: 1366px) {
  .review-item__img img {
    width: 64px;
    height: 64px;
  }
}

.review-item__info {
  margin-left: 24px;
}

.review-item__info p {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}

.review-item__info time {
  color: #C5C4C4;
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 17px;
}

@media only screen and (min-width: 1366px) {
  .review-item__info p {
    font-size: 20px;
  }
}

.review-item__author {
  display: flex;
  align-items: center;
}

.review-item__rating {
  display: flex;
  margin-top: 12px;
}

.review-item__rating li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.review-item__rating li:first-child {
  margin-left: 0;
}

.review-item__rating li.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

.review-item__rating svg {
  width: 16px;
  height: 16px;
}

@media only screen and (min-width: 1366px) {
  .review-item__rating {
    margin-top: 20px;
  }

  .review-item__rating svg {
    width: 20px;
    height: 20px;
  }
}

.review-item__text {
  margin-top: 12px;
}

@media only screen and (min-width: 1366px) {
  .review-item__text {
    margin-top: 20px;
  }
}

.review-item__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 12px;
}

.review-item__gallery a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-item__gallery svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}

.review-item__gallery img {
  width: 44px;
  height: 44px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (min-width: 1366px) {
  .review-item__gallery {
    margin-top: 20px;
  }

  .review-item__gallery img {
    width: 64px;
    height: 64px;
  }

  .review-item__gallery svg {
    width: 22px;
    height: 22px;
  }
}

.review-item__link {
  display: inline-block;
  font-size: 16px;
  line-height: 120%;
  color: #E58A9A;
  margin-top: 12px;
}

@media only screen and (min-width: 1366px) {
  .review-item__link {
    font-size: 18px;
    line-height: 140%;
    margin-top: 20px;
    transition: color 0.5s ease;
  }

  .review-item__link:hover {
    color: #EE9EAD;
  }
}

.review-item__moderate {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  margin-top: 20px;
}

.review-item__moderate span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.review-item__moderate time {
  color: #C5C4C4;
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 17px;
}

.review-item__moderate p {
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .review-item__moderate {
    margin-top: 40px;
  }

  .review-item__moderate span {
    font-size: 20px;
    line-height: 100%;
  }

  .review-item__moderate p {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1920px) {
  .review-item__moderate {
    padding: 0px 80px;
  }
}

.bread-crumbs {
  background: #F3F3F3;
  padding: 8px 0;
}

.bread-crumbs .swiper-slide {
  width: auto;
}

.bread-crumbs .swiper-slide:first-child a {
  padding-left: 0;
}

.bread-crumbs .swiper-slide:first-child a::after {
  display: none;
}

.bread-crumbs .swiper-slide:last-child a {
  pointer-events: none;
}

.bread-crumbs a {
  font-size: 14px;
  line-height: 17px;
  position: relative;
  color: #181616;
}

.store-breadcrumb-item:not(:first-child) a {
  padding-left: 24px;
}

.store-breadcrumb-item:not(:first-child) a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 1px;
  background: #C5C4C4;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1366px) {
  .bread-crumbs {
    position: fixed;
    width: 100%;
    top: var(--header-height);
    z-index: 12;
  }

  .bread-crumbs a {
    transition: color 0.5s ease;
  }

  .bread-crumbs a:hover {
    color: #EE9EAD;
  }
}

/*
@media only screen and (min-width: 1920px) {
  .bread-crumbs a {
    padding-left: 28px;
  }
  .bread-crumbs a::after {
    width: 12px;
  }
}
*/
.btn-primary {
  font-weight: 500;
  padding: 8px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 36px;
}

@media only screen and (min-width: 1366px) {
  .btn-primary {
    padding: 13px 24px;
    min-height: 48px;
  }
}

.btn-primary--white {
  border: 1px solid #ffffff;
  color: #ffffff;
}

@media only screen and (min-width: 1366px) {
  .btn-primary--white {
    transition: all 0.5s ease;
  }

  .btn-primary--white:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #181616;
  }
}

.btn-primary--background {
  background: #181616;
  color: #ffffff;
}

.btn-primary--width-100 {
  width: 100%;
  max-width: 100%;
}

.btn-secondary {
  font-weight: 500;
  padding: 8px;
  border-radius: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.btn-secondary--width-100 {
  width: 100%;
}

.btn-secondary--background {
  background: #181616;
  color: #ffffff;
}

.w-100 {
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 1366px) {
  .btn-secondary--background {
    transition: background 0.5s ease;
  }

  .btn-secondary--background:hover {
    background: #EE9EAD;
  }
}

.btn-secondary--border {
  background: #ffffff;
  border: 1px solid #181616;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .btn-secondary--border {
    transition: all 0.5s ease;
  }

  .btn-secondary--border:hover {
    background: #EE9EAD;
    border-color: #EE9EAD;
    color: #ffffff;
  }
}

@media only screen and (min-width: 1366px) {
  .btn-secondary {
    padding: 14px;
    min-height: 48px;
  }
}

.header {
  padding: 12px 0;
  background: #181616;
}

@media only screen and (min-width: 768px) {
  .header {
    padding: 16px 0;
  }
}

@media only screen and (min-width: 1366px) {
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 13;
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
}

.header__logo img {
  width: 88px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .header__logo img {
    width: 144px;
    height: 39px;
  }
}

@media only screen and (min-width: 1920px) {
  .header__logo img {
    width: 175px;
    height: 48px;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 20px;
}

.header__btn svg path {
  transition: all 0.5s ease;
}

.header__btn.is-active svg path {
  stroke: #E58A9A;
}

@media only screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 24px;
}

.header__call svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .header__call {
    display: none;
  }
}

.header__contacts {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__contacts {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }

  .header__contacts a {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__contacts a svg {
    width: 16px;
    height: 17px;
    margin-right: 5px;
  }

  .header__contacts a svg path {
    transition: stroke 0.5s ease;
  }

  .header__contacts a:nth-child(1) {
    font-weight: bold;
  }

  .header__contacts a:nth-child(2) {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__contacts {
    margin-left: 24px;
  }

  .header__contacts a:hover {
    color: #EE9EAD;
  }

  .header__contacts a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__contacts {
    margin-left: 40px;
  }
}

.header__catalog {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__catalog {
    display: flex;
    flex-grow: 1;
    margin: 0 20px;
  }

  .header__catalog>button {
    display: none;
  }

  .header__catalog form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px;
    width: 100%;
  }

  .header__catalog form button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__catalog form button svg {
    width: 24px;
    height: 24px;
  }

  .header__catalog fieldset {
    display: flex;
    width: 100%;
  }

  .header__catalog label {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header__catalog input {
    display: flex;
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    font-weight: 500;
    color: #ffffff;
  }

  .header__catalog input::-moz-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }

  .header__catalog input::placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1366px) {
  .header__catalog {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px 5px 5px;
    align-items: center;
    margin: 0 32px;
  }

  .header__catalog>button {
    display: flex;
    width: 40px;
    height: 40px;
    background: #E58A9A;
    border-radius: 50%;
    position: relative;
    transition: background 0.5s ease;
    margin-right: 16px;
  }

  .header__catalog>button span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    height: 2px;
    border-radius: 50%;
    transition: all 0.5s ease;
  }

  .header__catalog>button span:nth-child(1) {
    width: 10px;
    transform: translate(-50%, calc(-50% - 6px));
  }

  .header__catalog>button span:nth-child(2) {
    width: 16px;
    transform: translate(-50%, -50%);
  }

  .header__catalog>button span:nth-child(3) {
    width: 10px;
    transform: translate(-50%, calc(-50% + 6px));
  }

  .header__catalog>button.is-active {
    background: #C5C4C4;
  }

  .header__catalog>button.is-active span:nth-child(1) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header__catalog>button.is-active span:nth-child(2) {
    width: 0;
  }

  .header__catalog>button.is-active span:nth-child(3) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header__catalog>button:hover {
    background: #C5C4C4;
  }

  .header__catalog form {
    border: none;
    border-radius: 0;
    padding: 0;
    width: calc(100% - 40px - 16px);
  }

  .header__catalog form button svg path {
    transition: stroke 0.5s ease;
  }

  .header__catalog form button:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__catalog {
    margin-left: 110px;
    margin-right: 40px;
  }
}

.header__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .header__navigation {
    display: flex;
    max-width: 442px;
    margin-right: 32px;
  }

  .header__navigation ul {
    display: flex;
    flex-wrap: wrap;
  }

  .header__navigation li {
    margin-right: 20px;
  }

  .header__navigation li:last-child {
    margin-right: 0;
  }

  .header__navigation a {
    font-weight: 500;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__navigation a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__navigation {
    margin-right: 40px;
  }

  .header__navigation li {
    margin-right: 24px;
  }
}

.header__links {
  margin-left: auto;
}

.header__links li:not(.header__lc) {
  display: none;
}

.header__links .header__lc a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__links .header__lc svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .header__links {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .header__links li:not(.header__lc) {
    display: flex;
  }

  .header__links li {
    margin-right: 20px;
  }

  .header__links li:last-child {
    margin-right: 0;
  }

  .header__links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .header__links a svg {
    width: 24px;
    height: 24px;
  }

  .header__links a svg path {
    transition: stroke 0.5s ease;
  }

  .header__links a span {
    position: absolute;
    width: 18px;
    height: 18px;
    bottom: -7px;
    right: -10px;
    background: #E58A9A;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__links a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__links a {
    width: 32px;
    height: 32px;
  }

  .header__links a svg {
    width: 32px;
    height: 32px;
  }

  .header__links a span {
    bottom: -3px;
    right: -5px;
  }

  .header__links li {
    margin-right: 24px;
  }

  .header__links .header__lc svg {
    width: 32px;
    height: 32px;
  }
}

.footer {
  background: #181616;
  padding: 40px 0;
  padding-bottom: 90px;
}

@media only screen and (min-width: 1366px) {
  .footer {
    padding: 40px 0;
  }
}

.footer__logo {
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
}

.footer__logo img {
  width: 168px;
  height: 46px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__tel {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
  color: #ffffff;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .footer__tel {
    transition: color 0.5s ease;
  }

  .footer__tel:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__tel {
    font-size: 40px;
    line-height: 48px;
  }
}

.footer__mail {
  margin-top: 7px;
  color: #ffffff;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .footer__mail {
    transition: color 0.5s ease;
  }

  .footer__mail:hover {
    color: #EE9EAD;
  }
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
}

.footer__links button {
  margin-top: 12px;
  max-width: 312px;
}

@media only screen and (min-width: 640px) {
  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    align-items: flex-start;
  }

  .footer__links button {
    max-width: 185px;
    margin-left: auto;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__links {
    grid-template-columns: 1fr;
    height: -moz-max-content;
    height: max-content;
  }

  .footer__links button {
    margin-left: 0;
    margin-top: 0;
  }
}

.footer__contacts {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.footer__contacts div {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .footer__contacts {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contacts div {
    margin-top: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__contacts {
    grid-gap: 32px;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__contacts {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }

  .footer__contacts div {
    margin-top: 0;
  }
}

.footer__navigation {
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: column;
  grid-gap: 20px;
  margin-top: 24px;
}

.footer__navigation p {
  display: none;
}

.footer__navigation button {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  text-align: left;
  position: relative;
  padding-right: 30px;
}

.footer__navigation button::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-accordion-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
}

.footer__navigation button.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.footer__navigation ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
  padding-top: 12px;
}

.footer__navigation a {
  font-size: 18px;
  line-height: 140%;
  color: #C5C4C4;
}

.footer__navigation nav {
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.footer__navigation nav.is-hide {
  max-height: 0 !important;
}

@media only screen and (min-width: 768px) {
  .footer__navigation {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
  }

  .footer__navigation button {
    display: none;
  }

  .footer__navigation p {
    display: block;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
  }

  .footer__navigation nav {
    max-height: 100% !important;
  }

  .footer__navigation nav.is-hide {
    max-height: 100% !important;
  }
}

@media only screen and (min-width: 960px) {
  .footer__navigation {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__navigation {
    grid-gap: 40px;
  }

  .footer__navigation li {
    width: 240px;
  }

  .footer__navigation a {
    transition: color 0.5s ease;
  }

  .footer__navigation a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__navigation {
    margin-top: 90px;
  }

  .footer__navigation ul {
    padding-top: 24px;
    grid-gap: 12px;
  }
}

.footer__wrap ul:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px 24px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__wrap ul:nth-child(1) a {
  display: flex;
  width: 128px;
  height: 40px;
  opacity: 0.5;
}

.footer__wrap ul:nth-child(1) a img {
  width: 128px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__wrap ul:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
}

.footer__wrap ul:nth-child(2) li {
  margin-right: 20px;
}

.footer__wrap ul:nth-child(2) li:last-child {
  margin-right: 0;
}

.footer__wrap ul:nth-child(2) a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__wrap ul:nth-child(2) a svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 640px) {
  .footer__wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer__wrap ul:nth-child(1) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 960px) {
  .footer__wrap ul:nth-child(1) {
    grid-gap: 50px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__wrap {
    order: 2;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .footer__wrap ul:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-top: -5px;
    padding: 0;
    border: 0;
  }

  .footer__wrap ul:nth-child(1) a {
    transition: opacity 0.5s ease;
  }

  .footer__wrap ul:nth-child(1) a:hover {
    opacity: 1;
  }

  .footer__wrap ul:nth-child(2) {
    justify-content: flex-end;
  }

  .footer__wrap ul:nth-child(2) a {
    transition: opacity 0.5s ease;
  }

  .footer__wrap ul:nth-child(2) a:hover {
    opacity: 0.5;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__wrap ul:nth-child(1) {
    grid-gap: 30px;
  }
}

.footer__copy {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
}

.footer__copy a {
  display: inline-block;
  max-width: -moz-max-content;
  max-width: max-content;
}

.footer__copy a:nth-child(1) {
  color: #C5C4C4;
}

.footer__copy a:nth-child(2) {
  margin-top: 12px;
  opacity: 0.5;
}

.footer__copy a:nth-child(2) img {
  width: 182px;
  height: 27px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 640px) {
  .footer__copy {
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
    margin-top: 24px;
  }

  .footer__copy a:nth-child(2) {
    margin-top: -8px;
    margin-left: auto;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__copy {
    order: 1;
    grid-template-columns: 1fr;
    grid-gap: 5px;
    margin-top: 0;
  }

  .footer__copy a:nth-child(1) {
    transition: color 0.5s ease;
  }

  .footer__copy a:nth-child(1):hover {
    color: #EE9EAD;
  }

  .footer__copy a:nth-child(2) {
    margin: 0;
    transition: opacity 0.5s ease;
  }

  .footer__copy a:nth-child(2):hover {
    opacity: 1;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__copy a:nth-child(2) {
    width: 236px;
    height: 35px;
    margin-top: 14px;
  }

  .footer__copy a:nth-child(2) img {
    width: 236px;
    height: 35px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__footer {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    grid-gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media only screen and (min-width: 1920px) {
  .footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__footer {
    grid-template-columns: 0.7fr 1.2fr;
    grid-gap: 40px;
  }
}

.panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #181616;
  z-index: 12;
  padding: 8px 0;
  height: 60px;
  overflow: hidden;
}

.panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
  padding: 0 24px;
}

.panel li.is-active span:not(.panel__count) {
  color: #E58A9A;
}

.panel li.is-active svg path {
  stroke: #E58A9A;
  fill: #E58A9A;
}

.panel li.is-active svg rect {
  stroke: #E58A9A;
}

.panel li.is-active .panel__count {
  background: #E58A9A;
  color: #ffffff;
}

.panel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.panel span:not(.panel__count) {
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.panel div {
  position: relative;
}

.panel button {
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.panel svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .panel {
    display: none;
  }
}

.panel__count {
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -7px;
  right: -10px;
  background: #ffffff;
  border-radius: 50%;
  color: #181616;
  font-size: 10px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -5px;
  right: -10px;
}

.menu {
  position: fixed;
  width: 100%;
  height: calc(100% - 60px);
  left: 0;
  bottom: 60px;
  background: #ffffff;
  z-index: 13;
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  will-change: clip-path;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  pointer-events: none;
}

.menu.is-active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.menu__wrapper {
  padding: 24px;
  overflow: auto;
  height: 100%;
}

.menu__contacts {
  display: flex;
  flex-direction: column;
}

.menu__contacts a {
  display: flex;
  align-items: center;
  color: #181616;
  max-width: -moz-max-content;
  max-width: max-content;
}

.menu__contacts a svg {
  width: 16px;
  height: 17px;
  margin-right: 5px;
}

.menu__contacts a svg path {
  stroke: #181616;
}

.menu__contacts a:nth-child(1) {
  font-weight: bold;
}

.menu__contacts a:nth-child(2) {
  margin-top: 5px;
}

.menu__navigation {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 22, 22, 0.1);
}

.menu__navigation ul {
  display: flex;
  flex-direction: column;
}

.menu__navigation li {
  margin-top: 16px;
}

.menu__navigation li:first-child {
  margin-top: 0;
}

.menu__navigation a {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: #181616;
  max-width: -moz-max-content;
  max-width: max-content;
}

.search-result {
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px - var(--header-height));
  z-index: 12;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .search-result {
    height: calc(100vh - var(--header-height));
  }
}

.search-result.is-open {
  pointer-events: all;
}

.search-result.is-open .search-result__backdrop {
  opacity: 1;
}

.search-result.is-open .search-result__wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.3s;
}

.search-result__backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(24, 22, 22, 0.4);
  transition: opacity 0.5s ease;
  opacity: 0;
}

.search-result__wrapper {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 24px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  will-change: clip-path;
}

@media only screen and (min-width: 960px) {
  .search-result__wrapper {
    border-radius: 4px;
    width: var(--search-result-width);
    left: var(--search-result-left);
  }
}

@media only screen and (min-width: 1366px) {
  .search-result__wrapper {
    width: 550px;
    left: calc(var(--search-result-left) - 56px);
  }
}

@media only screen and (min-width: 1616px) {
  .search-result__wrapper {
    width: calc(var(--search-result-width) + 68px);
  }
}

.search-result__form label {
  display: flex;
}

.search-result__form input {
  width: 100%;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 40px;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 140%;
  color: #181616;
}

.search-result__form input::-moz-placeholder {
  font-size: 18px;
  line-height: 140%;
  color: rgba(24, 22, 22, 0.4);
}

.search-result__form input::placeholder {
  font-size: 18px;
  line-height: 140%;
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 768px) {
  .search-result__form {
    display: none;
  }
}

.search-result__type {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.search-result__type p:nth-child(1) {
  color: #E58A9A;
}

.search-result__type p:nth-child(2) {
  margin-top: 4px;
}

.search-result__result {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 22, 22, 0.05);
}

.search-result__result>p {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 12px;
}

.search-result__result ul {
  display: flex;
  flex-direction: column;
}

.search-result__result li {
  margin-top: 12px;
}

.search-result__result li:first-child {
  margin-top: 0;
}

.search-result__content {
  display: flex;
}

.search-result__content>a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 22, 22, 0.05);
  width: 79px;
  height: 97px;
}

.search-result__content img {
  width: 78px;
  height: 78px;
  -o-object-fit: contain;
  object-fit: contain;
}

.search-result__info {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}

.search-result__info>a {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  display: inline-block;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .search-result__info>a {
    transition: color 0.5s ease;
  }

  .search-result__info>a:hover {
    color: #EE9EAD;
  }
}

.search-result__rating {
  display: flex;
  margin-top: 4px;
  margin-bottom: 16px;
}

.search-result__rating p {
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  padding-right: 9px;
  margin-right: 9px;
  color: #C5C4C4;
}

.search-result__rating p::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-result__rating p::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  background: #C5C4C4;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.search-result__rating a {
  font-weight: 500;
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .search-result__rating a {
    transition: color 0.5s ease;
  }

  .search-result__rating a:hover {
    color: #EE9EAD;
  }
}

.search-result__price {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.search-result__price p:nth-child(1) {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.search-result__price p:nth-child(2) {
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 12px;
  position: relative;
}

.search-result__price p:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #C5C4C4;
  bottom: 7px;
  left: 0;
  pointer-events: none;
}

.search-result__scroller {
  height: 315px;
  padding-right: 12px;
}

.page-head {
  margin: 40px 0 0;
}

@media only screen and (min-width: 1366px) {
  .page-head {
    margin-top: 120px;
  }
}

.catalog-modal {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .catalog-modal {
    display: block;
    position: fixed;
    overflow: auto;
    width: 100%;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    left: 0;
    z-index: 13;
    pointer-events: none;
  }

  .catalog-modal .simplebar-content {
    display: flex;
  }

  .catalog-modal.is-show {
    pointer-events: all;
  }

  .catalog-modal.is-show .catalog-modal__content {
    transition-delay: 0.3s;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .catalog-modal.is-show .catalog-modal__backdrop {
    opacity: 1;
  }
}

@media only screen and (min-width: 1920px) {
  .catalog-modal {
    padding: 50px 108px;
    display: flex;
    align-items: center;
  }
}

.catalog-modal__wrapper>div {
  width: 700px;
  height: 510px;
}

@media only screen and (min-width: 1920px) {
  .catalog-modal__wrapper {
    display: flex;
    align-items: center;
    max-width: 1920px;
    padding: 50px 108px;
    margin: 0 auto;
  }
}

.catalog-modal__content {
  background: #ffffff;
  width: 100%;
  height: 610px;
  padding: 50px 24px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  will-change: clip-path;
  overflow: auto;
}

@media only screen and (min-width: 1920px) {
  .catalog-modal__content {
    padding: 0;
  }
}

.catalog-modal__heading a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #C5C4C4;
  transition: color 0.5s ease;
}

.catalog-modal__heading a:hover {
  color: #181616;
}

.catalog-modal__heading a.is-active {
  color: #181616;
}

.catalog-modal__heading li {
  margin-top: 18px;
}

.catalog-modal__heading li:first-child {
  margin-top: 0;
}

.catalog-modal__tabs {
  margin-left: 40px;
}

.catalog-modal__tabs>li {
  display: none;
}

.catalog-modal__tabs>li.is-active {
  display: block;
}

.catalog-modal__tabs ul li {
  margin-top: 18px;
}

.catalog-modal__tabs ul li:first-child {
  margin-top: 0;
}

.catalog-modal__tabs a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #C5C4C4;
  transition: color 0.5s ease;
  position: relative;
  padding-left: 44px;
}

.catalog-modal__tabs a::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-nav-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.catalog-modal__tabs a:hover {
  color: #181616;
}

.catalog-modal__tabs a:hover::after {
  opacity: 1;
}

.catalog-modal__list {
  display: none;
}

@media only screen and (min-width: 1920px) {
  .catalog-modal__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
    margin-left: 24px;
  }
}

.catalog-modal__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(24, 22, 22, 0.4);
  transition: opacity 0.5s ease;
  opacity: 0;
}

.lc-modal {
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px - var(--header-height));
  z-index: 12;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  overflow: auto;
  min-height: -moz-min-content;
  min-height: min-content;
}

.lc-modal legend {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media only screen and (min-width: 1366px) {
  .lc-modal {
    height: calc(100vh - var(--header-height));
  }

  .lc-modal legend {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.lc-modal.is-open {
  pointer-events: all;
}

.lc-modal.is-open .lc-modal__backdrop {
  opacity: 1;
}

.lc-modal.is-open .lc-modal__wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media only screen and (min-width: 1366px) {
  .lc-modal.is-open .lc-modal__wrapper {
    transition-delay: 0.3s;
  }
}

.lc-modal__wrapper {
  padding: 40px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  will-change: clip-path;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

@media only screen and (min-width: 1366px) {
  .lc-modal__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    padding: 60px;
    width: 580px;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    height: -moz-min-content;
    height: min-content;
    min-height: calc(100vh - var(--header-height));
  }
}

@media only screen and (min-width: 1920px) {
  .lc-modal__wrapper {
    padding: 110px;
    width: 780px;
    margin-left: auto;
  }
}

.lc-modal__backdrop {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__backdrop {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(24, 22, 22, 0.4);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
  }
}

.lc-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__close {
    width: 32px;
    height: 32px;
  }

  .lc-modal__close svg {
    width: 32px;
    height: 32px;
  }

  .lc-modal__close svg path {
    transition: stroke 0.5s ease;
  }

  .lc-modal__close:hover svg path {
    stroke: #EE9EAD;
  }
}

.lc-modal__label {
  display: flex;
  margin-top: 16px;
}

.lc-modal__label input {
  display: flex;
  width: 100%;
  padding: 12px 16px;
  padding-right: 50px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  font-size: 18px;
  line-height: 140%;
  color: #181616;
  border-radius: 40px;
}

.lc-modal__label input::-moz-placeholder {
  font-size: 18px;
  line-height: 140%;
  color: #C5C4C4;
}

.lc-modal__label input::placeholder {
  font-size: 18px;
  line-height: 140%;
  color: #C5C4C4;
}

.lc-modal__label--password {
  position: relative;
}

.lc-modal__label--password input:-webkit-autofill,
.lc-modal__label--password input:-webkit-autofill:hover,
.lc-modal__label--password input:-webkit-autofill:focus,
.lc-modal__label--password input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.lc-modal__label--password a {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.lc-modal__label--password a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

.lc-modal__label--password a svg:nth-child(2) {
  opacity: 0;
}

.lc-modal__label--password a.is-show svg:nth-child(1) {
  opacity: 0;
}

.lc-modal__label--password a.is-show svg:nth-child(2) {
  opacity: 1;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__label--password a:hover svg path {
    stroke: #EE9EAD;
  }

  .lc-modal__label--password a svg path {
    transition: stroke 0.5s ease;
  }
}

.lc-modal__save {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.lc-modal__save div label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  color: rgba(24, 22, 22, 0.8);
  display: inline-block;
}

.lc-modal__save div label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc-modal__save div label a {
  color: #E58A9A;
}

.lc-modal__save div input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.lc-modal__save a {
  font-weight: 500;
  color: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__save {
    margin-top: 20px;
  }

  .lc-modal__save a {
    transition: color 0.5s ease;
  }

  .lc-modal__save a:hover {
    color: #EE9EAD;
  }
}

.lc-modal__button {
  margin-top: 12px;
  max-width: 100%;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__button {
    margin-top: 16px;
  }
}

.lc-modal__reg {
  font-weight: 500;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 8px auto 0 auto;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__reg {
    margin-top: 16px;
    transition: color 0.5s ease;
  }

  .lc-modal__reg:hover {
    color: #EE9EAD;
  }
}

.lc-modal__policy {
  margin-top: 12px;
}

.lc-modal__policy label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  display: inline-block;
}

.lc-modal__policy label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc-modal__policy label a {
  color: #E58A9A;
}

.lc-modal__policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__policy {
    margin-top: 20px;
  }
}

.lc-modal__log {
  margin-top: 12px;
  color: rgba(24, 22, 22, 0.8);
}

.lc-modal__log a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__log {
    margin-top: 16px;
  }

  .lc-modal__log a {
    transition: color 0.5s ease;
  }

  .lc-modal__log a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1366px) {
  .lc-modal__stack {
    display: flex;
    gap: 16px;
  }

  .lc-modal__stack label {
    width: 100%;
  }
}

.lc-modal__pin legend {
  margin-bottom: 0;
}

.lc-modal__back {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.lc-modal__number {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__number {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 12px;
  }
}

.lc-modal__pincode {
  display: flex;
  gap: 16px;
  max-width: 312px;
  margin-top: 20px;
}

.lc-modal__pincode input {
  font-size: 42px;
  line-height: 100%;
  font-weight: 700;
  color: #181616;
  border-bottom: 1px solid #181616;
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.5s ease;
}

.lc-modal__pincode.is-error input {
  border-color: #FF0000;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__pincode {
    margin-top: 40px;
    max-width: 564px;
  }

  .lc-modal__pincode input {
    font-size: 64px;
    border-radius: 5px;
  }
}

.lc-modal__timer {
  color: rgba(24, 22, 22, 0.4);
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__timer {
    margin-top: 20px;
  }
}

.lc-modal__resend {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.lc-modal__resend p {
  margin-right: 24px;
}

.lc-modal__resend p.color-error {
  color: #FF0000;
}

.lc-modal__resend button {
  display: flex;
  align-items: center;
}

.lc-modal__resend button svg {
  margin-right: 8px;
}

.lc-modal__resend button span {
  font-weight: 500;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__resend {
    margin-top: 20px;
  }
}

.lc-modal__restore>p:not(.lc-modal__log) {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__restore>p:not(.lc-modal__log) {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.lc-modal__tabs>p {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.lc-modal__tabs ul {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.lc-modal__tabs button {
  font-weight: 500;
  position: relative;
  padding-left: 32px;
}

.lc-modal__tabs button::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 50%;
}

.lc-modal__tabs button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #181616;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lc-modal__tabs button.is-active::before {
  opacity: 1;
}

@media only screen and (min-width: 1366px) {
  .lc-modal__tabs>p {
    font-size: 22px;
  }

  .lc-modal__tabs ul {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.lc-modal__options form {
  display: none;
}

.lc-modal__options form.is-active {
  display: block;
}

.lc-modal__options p {
  color: rgba(24, 22, 22, 0.8);
}

.lc-modal__block {
  display: none;
}

.lc-modal__block.is-active {
  display: block;
}

.cards-carousel {
  margin: 80px 0;
}

.cards-carousel .swiper-slide {
  height: auto;
}

.cards-carousel__wrapper {
  padding-right: 0;
}

@media only screen and (min-width: 1366px) {
  .cards-carousel__wrapper {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .cards-carousel__wrapper {
    padding-right: 108px;
  }
}

.cards-carousel__carousel {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .cards-carousel__carousel {
    margin-top: 40px;
  }
}

.cards-carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
}

.cards-carousel__head a {
  font-size: 16px;
  line-height: 120%;
  color: #181616;
  margin-left: 24px;
  min-width: -moz-max-content;
  min-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .cards-carousel__head {
    padding-right: 0;
  }

  .cards-carousel__head a {
    font-size: 18px;
    line-height: 26px;
    transition: color 0.5s ease;
  }

  .cards-carousel__head a:hover {
    color: #EE9EAD;
  }
}

.cards-carousel__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .cards-carousel__navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }

  .cards-carousel__navigation button path {
    transition: stroke 0.5s ease;
  }

  .cards-carousel__navigation button:nth-child(1) {
    margin-right: 24px;
  }

  .cards-carousel__navigation button:nth-child(1) svg {
    transform: rotate(180deg);
  }

  .cards-carousel__navigation button:hover svg path {
    stroke: #EE9EAD;
  }
}

.collection-carousel {
  margin: 80px 0;
}

.collection-carousel__wrapper {
  padding-right: 0;
}

@media only screen and (min-width: 1366px) {
  .collection-carousel__wrapper {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .collection-carousel__wrapper {
    padding-left: 172px;
    padding-right: 172px;
  }
}

.collection-carousel__head {
  position: relative;
  min-height: 240px;
  padding: 50px 38px;
  display: flex;
  flex-direction: column;
}

.collection-carousel__head h2 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
}

.collection-carousel__head a {
  position: relative;
  z-index: 1;
  max-width: 282px;
  margin: 8px auto 0 auto;
}

.collection-carousel__head img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media only screen and (min-width: 640px) {
  .collection-carousel__head {
    min-height: 380px;
    padding: 80px 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .collection-carousel__head {
    min-height: 480px;
    padding: 120px 40px;
  }

  .collection-carousel__head a {
    max-width: 470px;
    margin-top: 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .collection-carousel__head img {
    max-width: 1704px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.collection-carousel__carousel {
  margin-top: -60px;
}

@media only screen and (min-width: 640px) {
  .collection-carousel__carousel {
    margin-top: -120px;
  }
}

.collection-carousel__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .collection-carousel__navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }

  .collection-carousel__navigation button:nth-child(1) {
    margin-right: 24px;
  }

  .collection-carousel__navigation button:nth-child(1) svg {
    transform: rotate(180deg);
  }

  .collection-carousel__navigation button svg path {
    transition: stroke 0.5s ease;
  }

  .collection-carousel__navigation button:hover svg path {
    stroke: #EE9EAD;
  }
}

.subscribe {
  margin: 80px 0;
}

@media only screen and (min-width: 1366px) {
  .subscribe {
    margin: 120px 0;
  }
}

.subscribe__title p {
  margin-top: 8px;
}

.subscribe__form {
  margin-top: 20px;
}

.subscribe__form label {
  display: flex;
}

.subscribe__form input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 40px;
}

.subscribe__form input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.subscribe__form input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 768px) {
  .subscribe__form {
    margin-top: 0;
    margin-left: 24px;
    flex-grow: 0.7;
  }
}

@media only screen and (min-width: 1366px) {
  .subscribe__form {
    max-width: 470px;
    flex-grow: 1;
  }
}

.subscribe__policy {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.subscribe__policy p {
  width: calc(100% - 32px);
  margin-left: 16px;
}

.subscribe__policy label {
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: inline-block;
}

.subscribe__policy label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.subscribe__policy label a {
  color: #E58A9A;
}

.subscribe__policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .subscribe__policy {
    margin-top: 24px;
  }

  .subscribe__policy label::after {
    width: 24px;
    height: 24px;
    background-size: 14px;
  }
}

.subscribe__button {
  margin-top: 8px;
}

@media only screen and (min-width: 768px) {
  .subscribe__button {
    margin-top: 12px;
  }
}

@media only screen and (min-width: 768px) {
  .subscribe__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(24, 22, 22, 0.1);
  }
}

@media only screen and (min-width: 1366px) {
  .subscribe__wrap {
    padding: 40px 80px;
  }
}

.seo-block {
  margin: 80px 0;
}

@media only screen and (min-width: 1366px) {
  .seo-block {
    margin: 120px 0;
  }
}

.seo-block__text {
  margin-top: 40px;
}

.seo-block__text p {
  margin-top: 20px;
}

.seo-block__text p:first-child {
  margin-top: 0;
}

.application {
  margin-top: 40px;
  background: #FDF4F5;
  padding: 40px 0;
}

.application h2 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

.application p {
  margin-top: 4px;
}

@media only screen and (min-width: 768px) {
  .application h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .application p {
    margin-top: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .application {
    position: relative;
    padding: 100px 0;
    margin-top: 240px;
    margin-bottom: 80px;
  }

  .application h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media only screen and (min-width: 1920px) {
  .application {
    max-width: 1704px;
    margin-left: auto;
    margin-right: auto;
  }
}

.application__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}

.application__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #464343;
  border-radius: 12px;
  padding: 8px;
}

.application__list a img {
  width: 128px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .application__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 12px;
  }

  .application__list a {
    padding: 8px 10px;
  }
}

.application__qr {
  display: none;
}

@media only screen and (min-width: 768px) {
  .application__qr {
    display: block;
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.application__decor {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .application__decor {
    display: block;
    position: absolute;
    bottom: 0;
    right: 60px;
  }

  .application__decor img {
    width: 316px;
    height: 480px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media only screen and (min-width: 1920px) {
  .application__decor {
    right: 200px;
  }
}

@media only screen and (min-width: 768px) {
  .application__content {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .application__wrapper {
    display: flex;
    align-items: center;
    padding: 0 60px;
  }

  .application__content {
    margin-top: 0;
    margin-left: 40px;
  }
}

@media only screen and (min-width: 1920px) {
  .application__wrapper {
    padding: 0 120px;
    padding-right: 600px;
  }

  .application__content {
    margin-left: 80px;
  }
}

.filters-form {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #ffffff;
  z-index: 2;
  padding: 8px 24px;
  padding-bottom: 16px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  will-change: clip-path;
  pointer-events: none;
}

.filters-form.is-show {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: all;
}

.filters-form fieldset {
  margin-bottom: 16px;
}

.filters-form fieldset:first-child {
  margin-top: 0;
}

.filters-form fieldset legend {
  font-weight: 500;
  margin-bottom: 8px;
}

.filters-form fieldset>button {
  font-weight: 500;
  position: relative;
  padding-right: 28px;
  color: #181616;
}

.filters-form fieldset>button::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-accordion-arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.5s ease;
}

.filters-form fieldset>button.is-active::after {
  transform: translateY(-50%) rotate(360deg);
}

.filters-form fieldset ul {
  overflow: hidden;
  transition: all 0.5s ease;
}

.filters-form fieldset ul.is-hide {
  max-height: 0 !important;
}

.filters-form fieldset li:not(.filters-form__search) label:not(.filters-form__radio) {
  display: flex;
  align-items: center;
  padding-left: 28px;
  position: relative;
  margin-top: 8px;
  cursor: pointer;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 20px;
}

.filters-form fieldset li:not(.filters-form__search) label:not(.filters-form__radio)::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.filters-form fieldset li:not(.filters-form__search) label.filters-form__radio {
  display: flex;
  align-items: center;
  padding-left: 28px;
  position: relative;
  margin-top: 8px;
  cursor: pointer;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 20px;
}

.filters-form fieldset li:not(.filters-form__search) label.filters-form__radio::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.filters-form fieldset li:not(.filters-form__search) label.filters-form__radio::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #181616;
  border-radius: 50%;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
  z-index: 1;
  opacity: 0;
}

.filters-form fieldset li:not(.filters-form__search) input:checked+label:not(.filters-form__radio):after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.filters-form fieldset li:not(.filters-form__search) input:checked+label.filters-form__radio::before {
  opacity: 1;
}

@media only screen and (min-width: 1366px) {
  .filters-form {
    position: static;
    transform: unset;
    padding: 0;
    width: 300px;
    margin-right: 40px;
    -webkit-clip-path: unset;
    clip-path: unset;
    pointer-events: all;
  }

  .filters-form fieldset li:not(.filters-form__search) label:not(.filters-form__radio) {
    padding-left: 32px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-top: 12px;
    min-height: 24px;
  }

  .filters-form fieldset li:not(.filters-form__search) label:not(.filters-form__radio)::after {
    width: 24px;
    height: 24px;
  }

  .filters-form fieldset li:not(.filters-form__search) label.filters-form__radio {
    padding-left: 32px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-top: 12px;
    min-height: 24px;
  }

  .filters-form fieldset li:not(.filters-form__search) label.filters-form__radio::after {
    width: 24px;
    height: 24px;
  }

  .filters-form fieldset li:not(.filters-form__search) label.filters-form__radio::before {
    left: 6px;
  }
}

.filters-form__search {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.filters-form__search button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filters-form__search label {
  display: flex;
  width: 100%;
}

.filters-form__search input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 40px;
  margin-left: 8px;
  width: 100%;
  font-size: 14px;
  line-height: 17px;
}

.filters-form__search input::-moz-placeholder {
  font-size: 14px;
  line-height: 17px;
  color: rgba(24, 22, 22, 0.4);
}

.filters-form__search input::placeholder {
  font-size: 14px;
  line-height: 17px;
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 1366px) {
  .filters-form__search {
    margin: 12px 0;
  }
}

.filters-form__values {
  display: flex;
  align-items: center;
  padding: 0 26px;
}

.filters-form__values label {
  display: flex;
}

.filters-form__values label:nth-child(1) {
  padding-right: 84px;
  position: relative;
}

.filters-form__values label:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: #181616;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.filters-form__values input {
  padding: 12px 16px;
  border: 1px solid #181616;
  border-radius: 40px;
  width: 90px;
  font-size: 14px;
  line-height: 17px;
}

.filters-form__values input::-moz-placeholder {
  font-size: 14px;
  line-height: 17px;
}

.filters-form__values input::placeholder {
  font-size: 14px;
  line-height: 17px;
}

@media only screen and (min-width: 1366px) {
  .filters-form__values {
    padding: 0 16px;
  }
}

.filters-form__range {
  border-radius: unset;
  border: unset;
  box-shadow: unset;
  background: rgba(24, 22, 22, 0.05);
  height: 2px;
  margin-top: 12px;
}

.filters-form__range .noUi-handle {
  cursor: default;
  box-shadow: unset;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #181616;
}

.filters-form__range .noUi-handle::after,
.filters-form__range .noUi-handle::before {
  display: none;
}

.filters-form__range .noUi-handle.noUi-handle-upper {
  transform: translateX(-100%);
}

.filters-form__range .noUi-handle.noUi-handle-lower {
  transform: translateX(-1px);
}

.filters-form__range .noUi-connect {
  background: #181616;
}

.filters-form__reset {
  display: flex;
  margin: 8px auto;
  font-weight: 500;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .filters-form__reset {
    margin: 16px auto;
    transition: color 0.5s ease;
  }

  .filters-form__reset:hover {
    color: #EE9EAD;
  }
}

.sorting {
  padding: 8px 0;
}

@media only screen and (min-width: 1366px) {
  .sorting {
    width: calc(100% - 340px);
    margin: 16px 0 16px auto;
    padding: 0;
    position: relative;
  }
}

.sorting__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.sorting__buttons button {
  display: flex;
  align-items: center;
  margin-right: 24px;
  transition: color 0.5s ease;
  color: #181616;
}

.sorting__buttons button:last-child {
  margin-right: 0;
}

.sorting__buttons button svg {
  margin-right: 8px;
}

.sorting__buttons button svg path {
  transition: all 0.5s ease;
}

.sorting__buttons button.is-active {
  color: #E58A9A;
}

.sorting__buttons button.is-active svg path {
  stroke: #E58A9A;
  fill: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .sorting__buttons {
    margin-top: 0;
  }

  .sorting__buttons li:nth-child(1) {
    display: none;
  }

  .sorting__buttons button:hover {
    color: #EE9EAD;
  }

  .sorting__buttons button:hover svg path {
    stroke: #EE9EAD;
    fill: #EE9EAD;
  }
}

.sorting__sorting {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #ffffff;
  z-index: 2;
  padding: 16px 24px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  will-change: clip-path;
  pointer-events: none;
}

.sorting__sorting.is-show {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: all;
}

.sorting__sorting li {
  margin-top: 8px;
}

.sorting__sorting li:first-child {
  margin-top: 0;
}

.sorting__sorting button {
  display: inline-block;
}

.sorting__sorting button.is-active {
  font-weight: 500;
}

@media only screen and (min-width: 1366px) {
  .sorting__sorting {
    z-index: 3;
    max-width: -moz-max-content;
    max-width: max-content;
    left: 0;
    transform: unset;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    padding: 12px;
    bottom: 0;
    transform: translateY(calc(100% + 8px));
  }

  .sorting__sorting button {
    transition: color 0.5s ease;
  }

  .sorting__sorting button:hover {
    color: #EE9EAD;
  }
}

.sorting__text {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .sorting__text {
    display: inline-block;
    margin-left: 24px;
  }
}

.home-intro__wrappaer {
  padding: 0;
  max-width: 100%;
  position: relative;
}

.home-intro__carousel .swiper-slide {
  aspect-ratio: 360/232;
  max-height: calc(100vh - var(--header-height));
  position: relative;
  display: flex;
  align-items: center;
}

.home-intro__background {
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-intro__background img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-intro__text {
  position: relative;
  z-index: 1;
  max-width: 1704px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
}

.home-intro__text p {
  margin-top: 8px;
  max-width: 180px;
}

@media only screen and (min-width: 1366px) {
  .home-intro__text p {
    max-width: 100%;
  }
}

.home-intro__pagination {
  position: absolute;
  max-width: 200px;
  bottom: 8px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
}

@media only screen and (min-width: 1366px) {
  .home-intro__pagination {
    max-width: 410px;
  }
}

.home-categories {
  margin: 80px 0;
}

.home-categories ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
  margin-top: 20px;
}

@media only screen and (min-width: 640px) {
  .home-categories ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .home-categories ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .home-categories ul {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1920px) {
  .home-categories ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
  }
}

.home-categories li {
  display: flex;
}

.home-categories a {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 12px 24px;
  min-height: 88px;
  display: flex;
  align-items: center;
  background: #FDF4F5;
}

.home-categories h3 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #181616;
  max-width: 185px;
}

@media only screen and (min-width: 1366px) {
  .home-categories h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

.home-categories img {
  position: absolute;
  width: auto;
  max-width: 58px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 1366px) {
  .home-categories a {
    min-height: 166px;
    overflow: hidden;
    transition: background 0.5s ease;
  }

  .home-categories a img {
    transition: transform 0.5s ease;
  }

  .home-categories a:hover {
    background: #EE9EAD;
  }

  .home-categories a:hover img {
    transform: scale(1.1);
  }

  .home-categories img {
    max-width: 111px;
  }

  .home-categories h3 {
    max-width: 120px;
  }
}

.home-stock {
  margin: 80px 0;
}

.home-stock ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

@media only screen and (min-width: 640px) {
  .home-stock ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .home-stock {
    margin: 160px 0;
  }
}

.home-stock__item {
  display: flex;
}

.home-stock__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  position: relative;
  aspect-ratio: 312/188;
}

.home-stock__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-stock__item h3 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #181616;
}

.home-stock__item p {
  margin-top: 8px;
  color: #181616;
  position: relative;
  z-index: 1;
}

.home-stock__item--white h3,
.home-stock__item--white p {
  color: #ffffff;
}

@media only screen and (min-width: 1366px) {
  .home-stock__item a {
    aspect-ratio: 561/340;
    overflow: hidden;
  }

  .home-stock__item a img {
    transition: transform 0.5s ease;
    will-change: transform;
  }

  .home-stock__item a:hover img {
    transform: scale(1.1);
  }

  .home-stock__item h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .home-stock__item p {
    margin-top: 12px;
  }
}

.home-advertising {
  margin: 80px 0;
  position: relative;
}

.home-advertising img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.home-advertising h2 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 212px;
}

.home-advertising p {
  color: #ffffff;
  margin-top: 8px;
  max-width: 212px;
}

@media only screen and (min-width: 1366px) {
  .home-advertising h2 {
    font-size: 64px;
    line-height: 77px;
    max-width: 700px;
  }

  .home-advertising p {
    margin-top: 20px;
    max-width: 100%;
  }
}

.home-advertising__wrapper {
  padding-top: 38px;
  padding-bottom: 38px;
  position: relative;
  z-index: 1;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-width: 640px) {
  .home-advertising__wrapper {
    min-height: 380px;
  }
}

@media only screen and (min-width: 1366px) {
  .home-advertising__wrapper {
    min-height: 647px;
  }
}

.home-advantages {
  background: rgba(229, 138, 154, 0.1);
  padding: 40px 0;
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .home-advantages {
    padding: 80px 0;
    margin: 80px 0;
  }
}

.home-advantages__wrapper div p {
  margin-top: 8px;
}

.home-advantages__wrapper ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #E58A9A;
}

.home-advantages__wrapper ul p:nth-child(1) {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  color: #E58A9A;
}

.home-advantages__wrapper ul p:nth-child(1) span {
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .home-advantages__wrapper ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .home-advantages__wrapper {
    display: flex;
  }

  .home-advantages__wrapper ul {
    padding-top: 0;
    margin-top: 0;
    border: none;
    width: calc(100% - 407px);
  }

  .home-advantages__wrapper ul li p:nth-child(1) {
    font-size: 40px;
    line-height: 48px;
  }

  .home-advantages__wrapper ul li p:nth-child(2) {
    margin-top: 4px;
  }

  .home-advantages__wrapper div {
    margin-right: 40px;
    padding-right: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 407px;
  }

  .home-advantages__wrapper div::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #E58A9A;
    top: 0;
    right: 0;
  }

  .home-advantages__wrapper div p {
    margin-top: 12px;
  }
}

@media only screen and (min-width: 1920px) {
  .home-advantages__wrapper ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
  }

  .home-advantages__wrapper div {
    margin-right: 80px;
    padding-right: 80px;
  }
}

.home-gallery {
  margin: 80px 0;
}

.home-gallery img {
  height: auto;
  min-height: 200px;
  aspect-ratio: 220/200;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home-gallery a {
  position: relative;
  display: flex;
}

@media only screen and (min-width: 768px) {
  .home-gallery img {
    min-height: 480px;
    aspect-ratio: 960/480;
  }
}

@media only screen and (min-width: 1366px) {
  .home-gallery {
    margin: 120px 0;
  }

  .home-gallery a {
    overflow: hidden;
  }

  .home-gallery a img {
    transition: transform 0.5s ease;
    will-change: transform;
  }

  .home-gallery a:hover img {
    transform: scale(1.05);
  }

  .home-gallery a:hover .home-gallery__icon path {
    fill-opacity: 1;
  }
}

.home-gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 640px) {
  .home-gallery__icon {
    width: 95px;
    height: 95px;
  }
}

@media only screen and (min-width: 1366px) {
  .home-gallery__icon path {
    transition: fill-opacity 0.5s ease;
  }
}

.home-gallery__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .home-gallery__navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }

  .home-gallery__navigation button:nth-child(1) {
    margin-right: 24px;
  }

  .home-gallery__navigation button:nth-child(1) svg {
    transform: rotate(180deg);
  }
}

.home-reviews {
  margin: 80px 0;
}

@media only screen and (min-width: 1366px) {
  .home-reviews {
    margin: 120px 0;
  }
}

.home-reviews__wrapper {
  padding-right: 0;
}

@media only screen and (min-width: 1366px) {
  .home-reviews__wrapper {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .home-reviews__wrapper {
    padding-right: 108px;
  }
}

.home-reviews__head {
  padding-right: 24px;
  display: flex;
  align-items: center;
}

.home-reviews__head button {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #181616;
}

.home-reviews__head button svg {
  width: 16px;
  height: 16px;
}

.home-reviews__head a {
  font-size: 16px;
  line-height: 120%;
  margin-left: auto;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .home-reviews__head {
    padding-right: 0;
  }

  .home-reviews__head button {
    width: 40px;
    height: 40px;
    margin-left: 16px;
    margin-right: 16px;
    transition: background 0.5s ease;
  }

  .home-reviews__head button svg {
    width: 20px;
    height: 20px;
  }

  .home-reviews__head button:hover {
    background: rgba(24, 22, 22, 0.8);
  }

  .home-reviews__head a {
    font-size: 18px;
    line-height: 26px;
    transition: color 0.5s ease;
  }

  .home-reviews__head a:hover {
    color: #EE9EAD;
  }
}

.home-reviews__carousel {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .home-reviews__carousel {
    margin-top: 40px;
  }
}

.categories-intro {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .categories-intro {
    margin: 80px 0;
  }
}

.categories-intro__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

.categories-intro__list a {
  display: flex;
  align-items: center;
  padding: 24px;
  background: #FDF4F5;
  position: relative;
  min-height: 90px;
}

.categories-intro__list p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: #181616;
  max-width: 180px;
  position: relative;
  z-index: 1;
}

.categories-intro__list img {
  position: absolute;
  width: 110px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom right;
  object-position: bottom right;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 640px) {
  .categories-intro__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .categories-intro__list {
    margin-top: 40px;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    /*grid-template-areas: "a b c d e e" "f g h h i j" "k k l l m m";*/
  }

  .categories-intro__list p {
    font-size: 22px;
    line-height: 26px;
    max-width: 260px;
  }

  .categories-intro__list a {
    min-height: 160px;
    align-items: flex-start;
    transition: background 0.5s ease;
    overflow: hidden;
  }

  .categories-intro__list a:hover {
    background: #EE9EAD;
  }

  .categories-intro__list a:hover img {
    transform: scale(1.05);
  }

  .categories-intro__list img {
    width: 160px;
    height: 120px;
    will-change: transform;
    transition: transform 0.5s ease;
  }
}

@media only screen and (min-width: 1920px) {
  .categories-intro__list {
    gap: 24px;
  }

  .categories-intro__list img {
    width: 215px;
    height: 155px;
  }
}

/*
@media only screen and (min-width: 1366px) {
  .categories-intro__a {
    grid-area: a;
  }
  .categories-intro__b {
    grid-area: b;
  }
  .categories-intro__c {
    grid-area: c;
  }
  .categories-intro__d {
    grid-area: d;
  }
  .categories-intro__e {
    grid-area: e;
  }
  .categories-intro__f {
    grid-area: f;
  }
  .categories-intro__h {
    grid-area: h;
  }
  .categories-intro__g {
    grid-area: g;
  }
  .categories-intro__i {
    grid-area: i;
  }
  .categories-intro__j {
    grid-area: j;
  }
  .categories-intro__k {
    grid-area: k;
  }
  .categories-intro__l {
    grid-area: l;
  }
  .categories-intro__m {
    grid-area: m;
  }
}
*/

@media only screen and (min-width: 1366px) {

  .categories-intro__a {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 3;
  }

  .categories-intro__b {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 2;
    grid-column-end: 5;
  }

  /*
  .categories-intro__i {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 3;
  }
    */
  /*
  .categories-intro__f { 
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 4;
  }
*/

  .categories-intro__j {
    grid-row-start: 3;
    grid-column-start: 5;
    grid-row-end: 4;
    grid-column-end: 7;
  }

  .categories-intro__g {
    grid-row-start: 2;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-column-end: 5;
  }

  .categories-intro__h {
    grid-row-start: 2;
    grid-column-start: 5;
    grid-row-end: 3;
    grid-column-end: 7;
  }


  /*
  .categories-intro__c {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .categories-intro__d {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .categories-intro__e {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
  }
  .categories-intro__f {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .categories-intro__h {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
  }
  .categories-intro__g {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .categories-intro__i {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }
  .categories-intro__j {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
  }
  .categories-intro__k {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .categories-intro__m {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
  }
  */
}

.catalog {
  margin: 40px 0;
  overflow: hidden;
}

@media only screen and (min-width: 1366px) {
  .catalog {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.catalog__tabs {
  margin-top: 20px;
  overflow: visible;
}

.catalog__tabs::after {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 1;
  pointer-events: none;
}

.catalog__tabs .swiper-slide {
  width: auto;
}

.catalog__tabs a {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(24, 22, 22, 0.05);
  transition: all 0.5s ease;
  color: #181616;
}

.catalog__tabs a.is-active {
  background: #181616;
  color: #ffffff;
}

@media only screen and (min-width: 1366px) {
  .catalog__tabs {
    margin-top: 0;
  }

  .catalog__tabs a {
    padding: 8px 16px;
  }

  .catalog__tabs a:hover {
    background: #181616;
    color: #ffffff;
  }
}

.catalog__catalog>div>ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
  margin-top: 8px;
}

@media only screen and (min-width: 640px) {
  .catalog__catalog>div>ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 960px) {
  .catalog__catalog>div>ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .catalog__catalog {
    width: calc(100% - 340px);
    margin-top: 0;
  }
}

@media only screen and (min-width: 1920px) {
  .catalog__catalog>div>ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .catalog__columns {
    display: flex;
    justify-content: space-between;
  }

  .catalog__head {
    width: calc(100% - 340px);
    margin-left: auto;
    margin-top: 40px;
  }
}

.catalog-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.catalog-navigation>button {
  font-weight: 500;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .catalog-navigation {
    margin-top: 40px;
  }

  .catalog-navigation>button {
    transition: color 0.5s ease;
  }

  .catalog-navigation>button:hover {
    color: #EE9EAD;
  }
}

.catalog-navigation__wrap {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.catalog-navigation__wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-navigation__wrap button svg {
  width: 34px;
  height: 6px;
}

.catalog-navigation__wrap button.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .catalog-navigation__wrap button svg {
    width: 113px;
    height: 14px;
  }

  .catalog-navigation__wrap button svg path {
    transition: stroke 0.5s ease;
  }

  .catalog-navigation__wrap button:hover path {
    stroke: #EE9EAD;
  }
}

.catalog-navigation__navigation {
  display: flex;
  margin: 0 14px;
}

.catalog-navigation__navigation ul {
  display: flex;
  align-items: center;
}

.catalog-navigation__navigation ul li {
  margin-right: 12px;
}

.catalog-navigation__navigation ul li:last-child {
  margin-right: 0;
}

.catalog-navigation__navigation a {
  display: inline-block;
  color: rgba(24, 22, 22, 0.4);
}

.catalog-navigation__navigation a.is-active {
  color: #181616;
  pointer-events: none;
}

.catalog-navigation__navigation span {
  display: inline-block;
  margin: 0 14px;
}

@media only screen and (min-width: 1366px) {
  .catalog-navigation__navigation {
    margin: 0 24px;
  }

  .catalog-navigation__navigation ul li {
    margin-right: 24px;
  }

  .catalog-navigation__navigation span {
    margin: 0 24px;
  }

  .catalog-navigation__navigation a {
    transition: color 0.5s ease;
  }

  .catalog-navigation__navigation a:hover {
    color: #EE9EAD;
  }
}

.catalog-navigation__left {
  transform: rotate(180deg);
}

.catalog__clear {
  margin-top: 8px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.catalog__clear p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog__clear button {
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .catalog__clear {
    margin-top: 24px;
  }

  .catalog__clear p {
    font-size: 22px;
    line-height: 26px;
  }

  .catalog__clear button {
    margin-top: 16px;
  }
}

.favorites {
  margin: 40px 0;
  overflow: hidden;
}

@media only screen and (min-width: 1366px) {
  .favorites {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.favorites__favorites>ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
  margin-top: 8px;
}

@media only screen and (min-width: 640px) {
  .favorites__favorites>ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 960px) {
  .favorites__favorites>ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .favorites__favorites {
    width: calc(100% - 340px);
    margin-top: 0;
  }
}

@media only screen and (min-width: 1920px) {
  .favorites__favorites>ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .favorites__columns {
    display: flex;
    justify-content: space-between;
  }
}

.favorites-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.favorites-navigation>button {
  font-weight: 500;
}

@media only screen and (min-width: 1366px) {
  .favorites-navigation {
    margin-top: 40px;
  }

  .favorites-navigation>button {
    transition: color 0.5s ease;
  }

  .favorites-navigation>button:hover {
    color: #EE9EAD;
  }
}

.favorites-navigation__wrap {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.favorites-navigation__wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorites-navigation__wrap button svg {
  width: 34px;
  height: 6px;
}

.favorites-navigation__wrap button.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .favorites-navigation__wrap button svg {
    width: 113px;
    height: 14px;
  }

  .favorites-navigation__wrap button svg path {
    transition: stroke 0.5s ease;
  }

  .favorites-navigation__wrap button:hover path {
    stroke: #EE9EAD;
  }
}

.favorites-navigation__navigation {
  display: flex;
  margin: 0 14px;
}

.favorites-navigation__navigation ul {
  display: flex;
  align-items: center;
}

.favorites-navigation__navigation ul li {
  margin-right: 12px;
}

.favorites-navigation__navigation ul li:last-child {
  margin-right: 0;
}

.favorites-navigation__navigation a {
  display: inline-block;
  color: rgba(24, 22, 22, 0.4);
}

.favorites-navigation__navigation a.is-active {
  color: #181616;
  pointer-events: none;
}

.favorites-navigation__navigation span {
  display: inline-block;
  margin: 0 14px;
}

@media only screen and (min-width: 1366px) {
  .favorites-navigation__navigation {
    margin: 0 24px;
  }

  .favorites-navigation__navigation ul li {
    margin-right: 24px;
  }

  .favorites-navigation__navigation span {
    margin: 0 24px;
  }

  .favorites-navigation__navigation a {
    transition: color 0.5s ease;
  }

  .favorites-navigation__navigation a:hover {
    color: #EE9EAD;
  }
}

.favorites-navigation__left {
  transform: rotate(180deg);
}

.favorites__sorting {
  padding-top: 0;
}

@media only screen and (min-width: 1366px) {
  .favorites__sorting {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1366px) {
  .favorites__form {
    margin-top: -38px;
  }
}

.favorites__clear {
  margin-top: 20px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.favorites__clear p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.favorites__clear a {
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .favorites__clear {
    margin-top: 24px;
  }

  .favorites__clear p {
    font-size: 22px;
    line-height: 26px;
  }

  .favorites__clear a {
    margin-top: 16px;
  }
}

.card-product {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .card-product {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.card-product__info {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .card-product__info {
    margin-top: 20px;
    order: 2;
  }
}

.card-product__rating {
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  padding-right: 9px;
  margin-right: 9px;
  color: #C5C4C4;
}

.card-product__rating::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
}

.card-product__rating::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  background: #C5C4C4;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.card-product__review {
  font-weight: 500;
  color: #C5C4C4;
  min-width: -moz-max-content;
  min-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .card-product__review {
    transition: color 0.5s ease;
  }

  .card-product__review:hover {
    color: #E58A9A;
  }
}

.card-product__status {
  position: relative;
  padding-left: 20px;
  margin: 0 12px;
}

.card-product__status::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.card-product__status--green::after {
  background: #B2D3A8;
}

.card-product__status--gray::after {
  background: #C5C4C4;
}

.card-product__favorites {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product__favorites svg {
  width: 24px;
  height: 24px;
}

.card-product__favorites svg path {
  fill: #ffffff;
  transition: all 0.5s ease;
}

.card-product__favorites.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

.card-product__favorites--desktop {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .card-product__favorites--mobile {
    display: none;
  }

  .card-product__favorites--desktop {
    display: flex;
    order: 4;
    margin-left: 24px;
  }

  .card-product__favorites--desktop svg {
    width: 32px;
    height: 32px;
  }
}

.card-product__gallery {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .card-product__gallery {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    padding-left: 24px;
    display: flex;
    width: 700px;
  }
}

@media only screen and (min-width: 1920px) {
  .card-product__gallery {
    padding-left: 108px;
    width: 810px;
  }
}

.card-product__imgs img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.card-product__imgs .swiper-slide {
  opacity: 0 !important;
}

.card-product__imgs .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.card-product__imgs .swiper-slide div {
  border: 1px solid rgba(24, 22, 22, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1366px) {
  .card-product__imgs .swiper {
    width: 535px;
    height: 640px;
  }

  .card-product__imgs .swiper-slide div {
    height: 100%;
  }
}

@media only screen and (min-width: 1920px) {
  .card-product__imgs .swiper {
    width: 560px;
  }
}

.card-product__carousel {
  margin-top: 20px;
}

.card-product__carousel img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-product__carousel .swiper-slide div {
  border: 1px solid rgba(24, 22, 22, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product__carousel .swiper-slide div a {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .card-product__carousel {
    width: 120px;
    margin-top: 0;
    margin-left: 20px;
  }

  .card-product__carousel .swiper {
    height: 640px;
  }

  .card-product__carousel .swiper-slide div {
    height: 100%;
    position: relative;
  }

  .card-product__carousel .swiper-slide div a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(24, 22, 22, 0.6);
    color: #ffffff;
  }
}

.card-product__price {
  display: flex;
  align-items: center;
  order: 1;
}

.card-product__price p:nth-child(1) {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #181616;
}

.card-product__price p:nth-child(2) {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 12px;
  position: relative;
}

.card-product__price p:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #C5C4C4;
  bottom: 7px;
  left: 0;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .card-product__price {
    width: 100%;
    margin-bottom: 40px;
  }

  .card-product__price p:nth-child(1) {
    font-size: 40px;
    line-height: 48px;
  }

  .card-product__price p:nth-child(2) {
    font-size: 18px;
    line-height: 140%;
  }

  .card-product__price p:nth-child(2)::after {
    bottom: 12px;
  }
}

.card-product__counter {
  display: flex;
  order: 2;
  padding-left: 24px;
  margin-left: auto;
}

.card-product__counter div {
  display: flex;
}

.card-product__counter label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

.card-product__counter input {
  display: flex;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-transform: uppercase;
  width: 24px;
  text-align: center;
}

.card-product__counter button {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #181616;
  cursor: pointer;
}

.card-product__counter button img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-product__counter button svg {
  width: 13px;
  height: 13px;
}

@media only screen and (min-width: 1366px) {
  .card-product__counter button {
    width: 40px;
    height: 40px;
    transition: all 0.5s ease;
  }

  .card-product__counter button svg {
    width: 18px;
    height: 18px;
  }

  .card-product__counter button:hover {
    background: rgba(24, 22, 22, 0.8);
  }
}

@media only screen and (min-width: 1366px) {
  .card-product__counter {
    order: 3;
    align-items: center;
    padding-left: 0;
    margin-left: 24px;
  }
}

.card-product__panel {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .card-product__panel {
    order: 4;
    margin-top: 40px;
  }
}

.card-product__add {
  order: 3;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1366px) {
  .card-product__add {
    /*max-width: 300px;*/
    order: 2;
    margin-top: 0px;
  }
}

.card-product__btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  color: #181616;
  position: relative;
  text-align: left;
  width: 100%;
  padding-right: 30px;
}

.card-product__btn::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-accordion-arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.5s ease;
}

.card-product__btn.is-active::after {
  transform: translateY(-50%) rotate(360deg);
}

@media only screen and (min-width: 1366px) {
  .card-product__btn {
    display: none;
  }
}

.card-product__description {
  margin-top: 20px;
}

.card-product__description div {
  margin-top: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card-product__description div.is-hide {
  max-height: 0 !important;
}

.card-product__description ul {
  display: flex;
  flex-direction: column;
}

.card-product__description li {
  position: relative;
  padding-left: 8px;
}

.card-product__description li::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #181616;
  top: 7px;
  left: 0;
}

.card-product__description mark {
  display: inline-block;
  margin-top: 12px;
  background: transparent;
  font-weight: 500;
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 1366px) {
  .card-product__description {
    margin-top: 40px;
    order: 3;
  }

  .card-product__description div {
    overflow: visible;
    max-height: 100% !important;
    margin-top: 0;
  }

  .card-product__description div.is-hide {
    max-height: 100% !important;
  }

  .card-product__description li:after {
    top: 9px;
  }
}

.card-product__tabs {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .card-product__tabs {
    display: flex;
    margin-top: 40px;
  }

  .card-product__tabs li {
    margin-right: 40px;
  }

  .card-product__tabs li:last-child {
    margin-right: 0;
  }

  .card-product__tabs button {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    color: #181616;
    transition: color 0.5s ease;
  }

  .card-product__tabs button:hover {
    color: #EE9EAD;
  }

  .card-product__tabs button.is-active {
    color: #E58A9A;
  }
}

@media only screen and (min-width: 1920px) {
  .card-product__tabs {
    margin-top: 80px;
  }
}

.card-product__content>li {
  margin-top: 20px;
}

.card-product__content>li a {
  color: #181616;
}

.card-product__content div {
  margin-top: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card-product__content div>p {
  margin-bottom: 20px;
}

.card-product__content div.is-hide {
  max-height: 0 !important;
}

.card-product__content ul {
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
  border-radius: 20px;
}

.card-product__content ul li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 24px;
  align-items: center;
  padding: 4px 12px;
  min-height: 40px;
}

.card-product__content ul li p:nth-child(1) {
  font-weight: 700;
}

.card-product__content ul li p span {
  font-weight: 700;
}

.card-product__content ul li:not(:first-child) {
  margin-top: 2px;
  border-top: 1px solid rgba(24, 22, 22, 0.05);
}

@media only screen and (min-width: 1366px) {
  .card-product__content div {
    overflow: visible;
    max-height: 100% !important;
    margin-top: 0;
  }

  .card-product__content div.is-hide {
    max-height: 100% !important;
  }

  .card-product__content div>p a {
    transition: color 0.5s ease;
  }

  .card-product__content div>p a:hover {
    color: #EE9EAD;
  }

  .card-product__content>li {
    display: none;
  }

  .card-product__content>li.is-active {
    display: block;
  }

  .card-product__content ul li {
    padding: 14px 20px;
    min-height: 70px;
  }
}

@media only screen and (min-width: 1366px) {
  .card-product__wrapper {
    position: relative;
    padding-left: 740px;
    display: flex;
    flex-direction: column;
    min-height: var(--card-product-gallery-height);
  }

  .card-product__wrapper h2 {
    order: 1;
  }

  .card-product__detail {
    order: 4;
  }
}

@media only screen and (min-width: 1920px) {
  .card-product__wrapper {
    padding-left: 930px;
  }
}

.rating-reviews {
  margin: 80px 0;
}

.rating-reviews h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews {
    margin: 160px 0;
  }

  .rating-reviews h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

.rating-reviews__wrapper {
  padding-right: 0;
}

@media only screen and (min-width: 1920px) {
  .rating-reviews__wrapper {
    padding-right: 108px;
  }
}

.rating-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 24px;
}

.rating-reviews__head a {
  font-size: 16px;
  line-height: 120%;
  color: #181616;
  margin-left: 24px;
  min-width: -moz-max-content;
  min-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__head a {
    font-size: 18px;
    line-height: 26px;
    transition: color 0.5s ease;
  }

  .rating-reviews__head a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .rating-reviews__head {
    padding-right: 0;
  }
}

.rating-reviews__wrap {
  margin-top: 8px;
}

.rating-reviews__wrap>div>p {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__wrap {
    display: flex;
    align-items: center;
  }
}

.rating-reviews__review {
  display: flex;
  margin-top: 4px;
}

.rating-reviews__review a {
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 16px;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__review {
    flex-direction: column;
  }

  .rating-reviews__review a {
    margin-left: 0;
    margin-top: 6px;
    transition: color 0.5s ease;
  }

  .rating-reviews__review a:hover {
    color: #EE9EAD;
  }
}

.rating-reviews__stars {
  display: flex;
}

.rating-reviews__stars li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.rating-reviews__stars li:first-child {
  margin-left: 0;
}

.rating-reviews__stars li.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

.rating-reviews__stars svg {
  width: 16px;
  height: 16px;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__stars svg {
    width: 20px;
    height: 20px;
  }
}

.rating-reviews__progress {
  margin-top: 8px;
}

.rating-reviews__progress li {
  display: flex;
  align-items: center;
}

.rating-reviews__progress li p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}

.rating-reviews__progress li div {
  flex-grow: 1;
  margin: 0 8px;
  height: 4px;
  border-radius: 100px;
  background: rgba(24, 22, 22, 0.05);
  position: relative;
}

.rating-reviews__progress li div span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__progress {
    width: 100%;
    margin-left: 40px;
    margin-top: 0;
  }
}

.rating-reviews__count {
  color: rgba(24, 22, 22, 0.4);
}

.rating-reviews__rating {
  margin-top: 20px;
  padding-right: 24px;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__rating {
    margin-top: 0;
    padding-right: 24px;
    order: 2;
    margin-left: 160px;
    width: 100%;
    max-width: 565px;
  }
}

@media only screen and (min-width: 1920px) {
  .rating-reviews__rating {
    padding-right: 0;
  }
}

.rating-reviews__gallery {
  margin-top: 20px;
}

.rating-reviews__gallery .swiper {
  margin-top: 20px;
}

.rating-reviews__gallery a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-reviews__gallery svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
}

.rating-reviews__gallery img {
  aspect-ratio: 80/80;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__gallery {
    width: 570px;
    margin-top: 0;
    order: 1;
  }
}

@media only screen and (min-width: 1920px) {
  .rating-reviews__gallery {
    width: 880px;
  }
}

.rating-reviews__reviews {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__reviews {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .rating-reviews__content {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
}

.card-reviews {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .card-reviews {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.card-reviews__item {
  display: flex;
}

.card-reviews__img {
  border: 1px solid rgba(24, 22, 22, 0.1);
  height: 100%;
  display: none;
}

.card-reviews__img img {
  width: 48px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__img {
    display: block;
    margin-right: 20px;
  }
}

.card-reviews__detail {
  width: 100%;
}

.card-reviews__detail h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__detail h1 {
    font-size: 18px;
    line-height: 22px;
  }
}

.card-reviews__info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.card-reviews__info a {
  font-weight: 500;
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__info {
    margin-top: 4px;
  }

  .card-reviews__info a {
    transition: color 0.5s ease;
  }

  .card-reviews__info a:hover {
    color: #E58A9A;
  }
}

.card-reviews__rate {
  position: relative;
  padding-left: 18px;
  padding-right: 9px;
  margin-right: 9px;
  font-weight: 500;
  color: #C5C4C4;
}

.card-reviews__rate::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
}

.card-reviews__rate::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  background: #C5C4C4;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.card-reviews__review {
  display: flex;
  margin-top: 4px;
}

.card-reviews__review a {
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 16px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__review {
    flex-direction: column;
  }

  .card-reviews__review a {
    margin-left: 0;
    margin-top: 6px;
    transition: color 0.5s ease;
  }

  .card-reviews__review a:hover {
    color: #EE9EAD;
  }
}

.card-reviews__favorites {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.card-reviews__favorites svg {
  width: 24px;
  height: 24px;
}

.card-reviews__favorites span {
  display: none;
}

.card-reviews__favorites.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__favorites {
    margin: 0 12px;
  }

  .card-reviews__favorites span {
    display: inline-block;
    margin-left: 10px;
    transition: color 0.5s ease;
  }

  .card-reviews__favorites svg path {
    transition: stroke 0.5s ease;
  }

  .card-reviews__favorites:hover span {
    color: #EE9EAD;
  }

  .card-reviews__favorites:hover svg path {
    stroke: #EE9EAD;
  }
}

.card-reviews__status {
  position: relative;
  padding-left: 20px;
  margin: 0 12px;
}

.card-reviews__status::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.card-reviews__status--green::after {
  background: #B2D3A8;
}

.card-reviews__status--gray::after {
  background: #C5C4C4;
}

.card-reviews__wrap {
  margin-top: 8px;
}

.card-reviews__wrap>div>p {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__wrap {
    display: flex;
    align-items: center;
  }
}

.card-reviews__length {
  display: flex;
}

.card-reviews__length a {
  font-weight: 500;
  color: #C5C4C4;
  margin-left: 16px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__length {
    flex-direction: column;
  }

  .card-reviews__length a {
    margin-left: 0;
    margin-top: 6px;
    transition: color 0.5s ease;
  }

  .card-reviews__length a:hover {
    color: #EE9EAD;
  }
}

.card-reviews__stars {
  display: flex;
}

.card-reviews__stars li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.card-reviews__stars li:first-child {
  margin-left: 0;
}

.card-reviews__stars li.is-active svg path {
  fill: #E58A9A;
  stroke: #E58A9A;
}

.card-reviews__stars svg {
  width: 16px;
  height: 16px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__stars svg {
    width: 20px;
    height: 20px;
  }
}

.card-reviews__progress {
  margin-top: 8px;
}

.card-reviews__progress li {
  display: flex;
  align-items: center;
}

.card-reviews__progress li p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}

.card-reviews__progress li div {
  flex-grow: 1;
  margin: 0 8px;
  height: 4px;
  border-radius: 100px;
  background: rgba(24, 22, 22, 0.05);
  position: relative;
}

.card-reviews__progress li div span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__progress {
    width: 100%;
    margin-left: 40px;
    margin-top: 0;
  }
}

.card-reviews__count {
  color: rgba(24, 22, 22, 0.4);
}

.card-reviews__rating {
  margin-top: 20px;
}

.card-reviews__rating h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__rating {
    width: 100%;
    max-width: 565px;
    margin-top: 80px;
    order: 2;
  }

  .card-reviews__rating h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

@media only screen and (min-width: 1920px) {
  .card-reviews__rating {
    padding-right: 0;
  }
}

.card-reviews__head {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.card-reviews__head h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.card-reviews__head button {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #181616;
}

.card-reviews__head button svg {
  width: 16px;
  height: 16px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__head {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .card-reviews__head h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .card-reviews__head button {
    width: 40px;
    height: 40px;
    margin-left: 16px;
    transition: background 0.5s ease;
  }

  .card-reviews__head button svg {
    width: 20px;
    height: 20px;
  }

  .card-reviews__head button:hover {
    background: rgba(24, 22, 22, 0.8);
  }
}

.card-reviews__gallery {
  margin-top: 20px;
}

.card-reviews__gallery h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.card-reviews__gallery .swiper {
  margin-top: 20px;
}

.card-reviews__gallery a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-reviews__gallery svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
}

.card-reviews__gallery img {
  aspect-ratio: 80/80;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__gallery {
    margin-top: 0;
    order: 1;
  }

  .card-reviews__gallery h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

.card-reviews__list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__list {
    margin-top: 0px;
    grid-gap: 40px;
  }
}

.card-reviews__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.card-reviews__navigation>button {
  font-weight: 500;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__navigation {
    margin-top: 40px;
    max-width: calc(100% - 605px);
  }

  .card-reviews__navigation>button {
    transition: color 0.5s ease;
  }

  .card-reviews__navigation>button:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .card-reviews__navigation {
    max-width: calc(100% - 645px);
  }
}

.card-reviews__navigation__wrap {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.card-reviews__navigation__wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-reviews__navigation__wrap button svg {
  width: 34px;
  height: 6px;
}

.card-reviews__navigation__wrap button.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__navigation__wrap button svg {
    width: 113px;
    height: 14px;
  }

  .card-reviews__navigation__wrap button svg path {
    transition: stroke 0.5s ease;
  }

  .card-reviews__navigation__wrap button:hover path {
    stroke: #EE9EAD;
  }
}

.card-reviews__navigation__navigation {
  display: flex;
  margin: 0 14px;
}

.card-reviews__navigation__navigation ul {
  display: flex;
  align-items: center;
}

.card-reviews__navigation__navigation ul li {
  margin-right: 12px;
}

.card-reviews__navigation__navigation ul li:last-child {
  margin-right: 0;
}

.card-reviews__navigation__navigation a {
  display: inline-block;
  color: rgba(24, 22, 22, 0.4);
}

.card-reviews__navigation__navigation a.is-active {
  color: #181616;
  pointer-events: none;
}

.card-reviews__navigation__navigation span {
  display: inline-block;
  margin: 0 14px;
}

@media only screen and (min-width: 1366px) {
  .card-reviews__navigation__navigation {
    margin: 0 24px;
  }

  .card-reviews__navigation__navigation ul li {
    margin-right: 24px;
  }

  .card-reviews__navigation__navigation span {
    margin: 0 24px;
  }

  .card-reviews__navigation__navigation a {
    transition: color 0.5s ease;
  }

  .card-reviews__navigation__navigation a:hover {
    color: #EE9EAD;
  }
}

.card-reviews__navigation__left {
  transform: rotate(180deg);
}

@media only screen and (min-width: 1366px) {
  .card-reviews__container {
    position: relative;
    margin-top: 40px;
  }

  .card-reviews__content {
    max-width: calc(100% - 605px);
    min-height: var(--review-sticky-height);
  }

  .card-reviews__reviews {
    max-width: 565px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (min-width: 1920px) {
  .card-reviews__content {
    max-width: calc(100% - 645px);
  }
}

.order {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .order {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.order__content {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .order__content {
    position: relative;
    margin-top: 40px;
  }
}

.order__wrap {
  padding: 16px;
  border: 1px solid rgba(24, 22, 22, 0.1);
}

.order__wrap button {
  margin-top: 16px;
}

.order__wrap button.is-disabled {
  background: rgba(24, 22, 22, 0.1);
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .order__wrap {
    width: 600px;
    padding: 24px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.order__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order__head p {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.order__head a {
  font-weight: 500;
  color: #181616;
  margin-left: 14px;
}

@media only screen and (min-width: 1366px) {
  .order__head p {
    font-size: 22px;
    line-height: 26px;
  }

  .order__head a {
    transition: color 0.5s ease;
  }

  .order__head a:hover {
    color: #EE9EAD;
  }
}

.order__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
  margin-top: 16px;
}

.order__info li {
  display: flex;
}

.order__info li p {
  font-weight: 500;
}

.order__info li>p {
  flex-grow: 1;
  margin-right: 40px;
}

.order__info li div {
  display: flex;
}

.order__info li div p {
  min-width: -moz-max-content;
  min-width: max-content;
}

.order__info li div p:nth-child(1) {
  margin-right: 16px;
}

@media only screen and (min-width: 1366px) {
  .order__info {
    grid-gap: 16px;
    margin-top: 20px;
  }
}

.order__detail {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  margin-top: 16px;
}

.order__detail p {
  font-weight: 500;
}

.order__detail li {
  display: flex;
  justify-content: space-between;
}

.order__detail li.color-pink {
  color: #E58A9A;
}

.order__detail li p:nth-child(1) {
  margin-right: 20px;
  flex-grow: 1;
}

.order__detail li p:nth-child(2) {
  min-width: -moz-max-content;
  min-width: max-content;
}

.order__total {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.order__total p {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.order__total p:nth-child(1) {
  margin-right: 14px;
}

@media only screen and (min-width: 1366px) {
  .order__total p {
    font-size: 22px;
    line-height: 26px;
  }
}

.order__form {
  margin-top: 20px;
}

.order__form legend {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.order__form button {
  margin-top: 20px;
}

.order__form button.is-disabled {
  background: rgba(24, 22, 22, 0.1);
  pointer-events: none;
}

@media only screen and (min-width: 1366px) {
  .order__form {
    width: calc(100% - 600px - 40px);
    min-height: calc(var(--order-form-height) + 40px);
  }

  .order__form legend {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .order__form button {
    display: none;
  }
}

@media only screen and (min-width: 1920px) {
  .order__form {
    width: calc(100% - 600px - 120px);
  }
}

.order__delivery ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

.order__delivery input:checked+label {
  border-color: #181616;
}

.order__delivery label {
  padding: 8px 12px;
  border: 1px solid rgba(24, 22, 22, 0.1);
  display: flex;
  flex-direction: column;
}

.order__delivery label img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
}

.order__delivery label>span {
  display: flex;
  align-items: center;
}

.order__delivery label>span>span {
  display: flex;
  flex-direction: column;
}

.order__delivery label>span>span span:nth-child(1) {
  font-weight: 500;
}

.order__delivery label>span>span span:nth-child(2) {
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .order__delivery label {
    flex-direction: row;
    align-items: center;
    padding: 12px 24px;
  }

  .order__delivery label>span>span {
    max-width: 408px;
  }

  .order__delivery label img {
    margin-right: 24px;
    width: 24px;
    height: 24px;
  }
}

.order__map {
  font-weight: 500;
  color: #181616;
  margin-left: auto;
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .order__map {
    margin-top: 0;
    min-width: -moz-max-content;
    min-width: max-content;
    transition: color 0.5s ease;
  }

  .order__map:hover {
    color: #EE9EAD;
  }
}

.order__edit {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 8px;
}

.order__edit svg {
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 1366px) {
  .order__edit {
    margin-top: 0;
  }

  .order__edit svg path {
    transition: stroke 0.5s ease;
  }

  .order__edit:hover svg path {
    stroke: #EE9EAD;
  }
}

.order__payment {
  margin-top: 20px;
}

.order__payment ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

.order__payment input:checked+label {
  border-color: #181616;
}

.order__payment label {
  padding: 8px 12px;
  border: 1px solid rgba(24, 22, 22, 0.1);
  display: flex;
  flex-direction: column;
}

.order__payment label img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 8px;
}

.order__payment label a {
  font-weight: 500;
  color: #181616;
  margin-left: auto;
  margin-top: 8px;
}

.order__payment label>span {
  display: flex;
  flex-direction: column;
}

.order__payment label>span>span {
  display: flex;
  flex-direction: column;
}

.order__payment label>span>span span:nth-child(1) {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
}

.order__payment label>span>span span:nth-child(2) {
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .order__payment {
    margin-top: 40px;
  }

  .order__payment label {
    flex-direction: row;
    align-items: center;
    padding: 12px 24px;
  }

  .order__payment label>span {
    flex-direction: row;
    align-items: center;
  }

  .order__payment label>span>span {
    max-width: 408px;
  }

  .order__payment label img {
    margin-right: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 0;
  }

  .order__payment label a {
    margin-top: 0;
    transition: color 0.5s ease;
  }

  .order__payment label a:hover {
    color: #EE9EAD;
  }
}

.order__data {
  margin-top: 20px;
}

.order__data ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

.order__data label {
  display: flex;
  margin-top: 4px;
}

.order__data input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  font-size: 18px;
  line-height: 125%;
  color: #181616;
  border-radius: 40px;
}

.order__data input::-moz-placeholder {
  font-size: 18px;
  line-height: 125%;
  color: rgba(24, 22, 22, 0.4);
}

.order__data input::placeholder {
  font-size: 18px;
  line-height: 125%;
  color: rgba(24, 22, 22, 0.4);
}

.order__data textarea {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  font-size: 18px;
  line-height: 125%;
  color: #181616;
  border-radius: 20px;
  resize: none;
  min-height: 90px;
  width: 100%;
  outline: none;
}

.order__data textarea::-moz-placeholder {
  font-size: 18px;
  line-height: 125%;
  color: rgba(24, 22, 22, 0.4);
}

.order__data textarea::placeholder {
  font-size: 18px;
  line-height: 125%;
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 1366px) {
  .order__data {
    margin-top: 40px;
  }

  .order__data ul {
    grid-gap: 24px;
  }

  .order__data label {
    margin-top: 8px;
  }
}

.order-success {
  margin: 40px 0;
}

.order-success h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 12px;
}

.order-success p {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.order-success p a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .order-success {
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .order-success h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .order-success p {
    flex-direction: row;
  }

  .order-success p a {
    transition: color 0.5s ease;
  }

  .order-success p a:hover {
    color: #EE9EAD;
  }
}

.order-success__link {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .order-success__link {
    max-width: 350px;
  }
}

@media only screen and (min-width: 768px) {
  .order-success__link {
    margin-top: 40px;
    max-width: 590px;
  }
}

.points {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .points {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.points__head a {
  font-weight: 500;
  color: #181616;
}

.points__head h1 {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .points__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .points__head a {
    order: 2;
    margin-left: 24px;
    transition: color 0.5s ease;
  }

  .points__head a:hover {
    color: #EE9EAD;
  }

  .points__head h1 {
    margin-top: 0;
    order: 1;
  }
}

.points__content {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .points__content {
    position: relative;
    display: flex;
    margin-top: 40px;
  }
}

.points__search {
  padding: 10px 20px;
  border: 1px solid rgba(24, 22, 22, 0.25);
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.points__search button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.points__search label {
  display: flex;
  flex-grow: 1;
  margin-right: 24px;
}

.points__search input {
  width: 100%;
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: #181616;
}

.points__search input::-moz-placeholder {
  color: #C5C4C4;
}

.points__search input::placeholder {
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .points__search {
    position: absolute;
    top: 26px;
    right: 20px;
    z-index: 1;
    background: #ffffff;
    width: 400px;
  }

  .points__search button svg path {
    transition: stroke 0.5s ease;
  }

  .points__search button:hover svg path {
    stroke: #EE9EAD;
  }
}

.points__delivery {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .points__delivery {
    display: flex;
    flex-direction: column;
    padding: 24px 8px;
  }

  .points__delivery p:nth-child(1) {
    font-size: 22px;
    line-height: 100%;
    font-weight: 700;
  }

  .points__delivery p:nth-child(2) {
    font-weight: 500;
    color: rgba(24, 22, 22, 0.8);
    margin-top: 4px;
  }
}

.points__result {
  max-height: 261px;
}

.points__result .simplebar-vertical {
  right: -10px;
}

.points__result ul a {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(24, 22, 22, 0.1);
}

.points__result ul time {
  margin-top: 8px;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .points__result {
    height: 100%;
    max-height: 660px;
    border: 1px solid rgba(24, 22, 22, 0.1);
    padding: 16px 24px;
  }

  .points__result .simplebar-vertical {
    right: 5px;
  }

  .points__result ul a {
    padding-left: 8px;
    padding-right: 8px;
    transition: background 0.5s ease;
  }

  .points__result ul a:hover {
    background: #FDF4F5;
  }
}

.points__address {
  font-weight: 700;
  color: #181616;
}

.points__deadlines {
  color: #181616;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.points__deadlines img {
  width: 20px;
  height: 20px;
}

.points__deadlines>span {
  display: flex;
}

.points__deadlines>span span {
  display: inline-block;
  font-weight: 500;
}

.points__deadlines>span span:nth-child(2) {
  padding-left: 12px;
  position: relative;
}

.points__deadlines>span span:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #181616;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1366px) {
  .points__deadlines {
    margin-top: 16px;
  }
}

.points__sorting {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.points__sorting li:first-child {
  margin-right: 12px;
}

.points__sorting label {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(24, 22, 22, 0.1);
  border-radius: 200px;
  transition: all 0.5s ease;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
  line-height: 100%;
  min-height: 27px;
}

.points__sorting label svg path {
  transition: stroke 0.5s ease;
}

.points__sorting label span {
  margin-right: 10px;
}

.points__sorting input:checked+label {
  background: #E58A9A;
  color: #ffffff;
  border-color: #E58A9A;
}

.points__sorting input:checked+label svg path {
  stroke: #ffffff;
}

@media only screen and (min-width: 1366px) {
  .points__sorting {
    position: absolute;
    top: 26px;
    left: 546px;
    z-index: 1;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0;
  }
}

.points__map {
  width: 100%;
  height: 180px;
  margin-top: 12px;
}

@media only screen and (min-width: 768px) {
  .points__map {
    height: 420px;
  }
}

@media only screen and (min-width: 1366px) {
  .points__map {
    height: 660px;
    width: calc(100% - 526px);
    margin-left: auto;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .points__form {
    width: 526px;
    height: 660px;
  }
}

.remuneration {
  margin: 40px 0;
}

.remuneration h2 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media only screen and (min-width: 1366px) {
  .remuneration {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .remuneration h2 {
    font-size: 22px;
  }
}

.remuneration__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.remuneration__btns a {
  padding: 0 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 22, 22, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 8px;
}

.remuneration__btns img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .remuneration__btns {
    gap: 12px;
    margin-top: 20px;
  }

  .remuneration__btns a {
    padding: 0 20px;
    min-height: 64px;
    min-width: 78px;
    transition: background 0.5s ease;
  }

  .remuneration__btns a:hover {
    background: #FDF4F5;
  }
}

.remuneration__text {
  margin-top: 8px;
  font-weight: 500;
}

.remuneration__text--gray {
  color: #C5C4C4;
}

.remuneration__text a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .remuneration__text {
    margin-top: 20px;
  }

  .remuneration__text a {
    transition: color 0.5s ease;
  }

  .remuneration__text a:hover {
    color: #EE9EAD;
  }
}

.remuneration__cards {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .remuneration__cards {
    margin-top: 40px;
  }
}

.remuneration__share {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(24, 22, 22, 0.1);
}

@media only screen and (min-width: 1366px) {
  .remuneration__share {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.remuneration__list {
  display: flex;
  flex-direction: column;
}

.remuneration__list p {
  font-weight: 500;
}

.remuneration__list a {
  color: #181616;
}

.remuneration__list--dots li {
  position: relative;
  padding-left: 20px;
}

.remuneration__list--dots li::after {
  position: absolute;
  content: "";
  background: #181616;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: 9px;
  top: 7px;
}

@media only screen and (min-width: 1366px) {
  .remuneration__list--dots li::after {
    top: 10px;
  }
}

.remuneration__parts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(24, 22, 22, 0.1);
}

@media only screen and (min-width: 1366px) {
  .remuneration__parts {
    margin-top: 40px;
    padding-top: 40px;
  }

  .remuneration__parts a {
    transition: color 0.5s ease;
  }

  .remuneration__parts a:hover {
    color: #EE9EAD;
  }
}

.remuneration__back {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .remuneration__back {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

@media only screen and (min-width: 1366px) {
  .remuneration__back {
    margin-top: 40px;
  }
}

.delivery {
  margin: 40px 0;
}

.delivery h2 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media only screen and (min-width: 1366px) {
  .delivery {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .delivery h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.delivery__parts>div {
  margin-top: 20px;
}

.delivery__parts>div:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid rgba(24, 22, 22, 0.1);
}

@media only screen and (min-width: 1366px) {
  .delivery__parts>div {
    margin-top: 40px;
  }

  .delivery__parts>div:not(:first-child) {
    padding-top: 40px;
  }
}

.delivery__text {
  margin-top: 8px;
}

.delivery__text--gray {
  color: #C5C4C4;
}

@media only screen and (min-width: 1366px) {
  .delivery__text {
    margin-top: 20px;
  }
}

.delivery__list {
  display: flex;
  flex-direction: column;
}

.delivery__list li {
  position: relative;
  padding-left: 20px;
}

.delivery__list li::after {
  position: absolute;
  content: "";
  background: #181616;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: 9px;
  top: 7px;
}

@media only screen and (min-width: 1366px) {
  .delivery__list li::after {
    top: 10px;
  }
}

.delivery__back {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .delivery__back {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

@media only screen and (min-width: 1366px) {
  .delivery__back {
    margin-top: 40px;
  }
}

.contacts {
  margin: 40px 0;
}

@media only screen and (min-width: 1366px) {
  .contacts {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.contacts__head p {
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .contacts__head p {
    margin-top: 12px;
  }
}

.contacts__contacts {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.contacts__contacts li {
  display: flex;
  flex-direction: column;
}

.contacts__contacts li:not(:first-child) {
  margin-top: 12px;
}

.contacts__contacts li span {
  font-weight: 500;
  color: #C5C4C4;
}

.contacts__contacts li a,
.contacts__contacts li address {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: #181616;
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .contacts__contacts {
    margin-top: 40px;
  }

  .contacts__contacts li a,
  .contacts__contacts li address {
    font-size: 22px;
  }

  .contacts__contacts a {
    transition: color 0.5s ease;
  }

  .contacts__contacts a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .contacts__contacts {
    margin-top: 60px;
  }
}

.contacts__map {
  width: 100%;
  height: 168px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .contacts__map {
    height: 420px;
  }
}

@media only screen and (min-width: 1366px) {
  .contacts__map {
    width: calc(100% - 762px);
    height: 480px;
    margin-top: 0;
  }
}

.contacts__form {
  margin-top: 20px;
}

.contacts__form legend {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .contacts__form {
    width: 712px;
    margin-top: 0;
  }

  .contacts__form legend {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.contacts__label {
  display: flex;
  margin-top: 12px;
}

.contacts__label input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 40px;
  font-size: 18px;
  line-height: 100%;
  color: #181616;
}

.contacts__label input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.contacts__label input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.contacts__label textarea {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 20px;
  font-size: 18px;
  line-height: 100%;
  color: #181616;
  resize: none;
  min-height: 160px;
  width: 100%;
  outline: none;
}

.contacts__label textarea::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.contacts__label textarea::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.contacts__policy {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.contacts__policy p {
  width: calc(100% - 32px);
  margin-left: 16px;
}

.contacts__policy label {
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: inline-block;
}

.contacts__policy label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.contacts__policy label a {
  color: #E58A9A;
}

.contacts__policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .contacts__policy {
    margin-top: 12px;
  }

  .contacts__policy label::after {
    width: 24px;
    height: 24px;
    background-size: 14px;
  }
}

.contacts__button {
  margin-top: 8px;
  background: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .contacts__button {
    margin-top: 24px;
  }
}

.contacts__info {
  margin-top: 24px;
}

@media only screen and (min-width: 1366px) {
  .contacts__info {
    margin-top: 80px;
  }
}

@media only screen and (min-width: 1920px) {
  .contacts__info {
    margin-top: 160px;
  }
}

.contacts__btns {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .contacts__btns {
    display: flex;
  }

  .contacts__btns button {
    font-size: 22px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.5s ease;
  }

  .contacts__btns button:hover {
    color: #EE9EAD;
  }

  .contacts__btns button.is-active {
    color: #E58A9A;
  }

  .contacts__btns button:first-child {
    margin-right: 40px;
  }
}

.contacts__list {
  overflow: hidden;
  transition: all 0.5s ease;
}

.contacts__list.is-hide {
  max-height: 0 !important;
}

.contacts__list>li:first-child {
  padding-top: 14px;
}

.contacts__list>li:not(:first-child) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 22, 22, 0.1);
}

.contacts__list p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(24, 22, 22, 0.8);
}

.contacts__list address {
  color: rgba(24, 22, 22, 0.8);
  margin-top: 8px;
}

.contacts__list ul li {
  margin-top: 8px;
}

.contacts__list ul a {
  font-weight: 700;
  color: rgba(24, 22, 22, 0.8);
}

@media only screen and (min-width: 1366px) {
  .contacts__list.is-hide {
    max-height: 100% !important;
  }

  .contacts__list>li {
    padding: 20px 0;
    border-top: 1px solid rgba(24, 22, 22, 0.1);
    display: grid;
    grid-template-columns: 1fr 2.7fr 1fr;
    grid-gap: 24px;
  }

  .contacts__list>li:first-child {
    padding-top: 20px;
  }

  .contacts__list>li:last-child {
    border-bottom: 1px solid rgba(24, 22, 22, 0.1);
  }

  .contacts__list>li:not(:first-child) {
    margin-top: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(24, 22, 22, 0.1);
  }

  .contacts__list p {
    font-size: 22px;
  }

  .contacts__list address {
    margin-top: 0;
  }

  .contacts__list ul a {
    transition: color 0.5s ease;
  }

  .contacts__list ul a:hover {
    color: #EE9EAD;
  }

  .contacts__list ul li {
    margin-top: 16px;
  }

  .contacts__list ul li:first-child {
    margin-top: 0;
  }
}

.contacts__accordion {
  margin-top: 24px;
}

.contacts__accordion>button {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  color: #181616;
  position: relative;
  text-align: left;
  width: 100%;
  padding-right: 30px;
}

.contacts__accordion>button::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-accordion-arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.5s ease;
}

.contacts__accordion>button.is-active::after {
  transform: translateY(-50%) rotate(360deg);
}

@media only screen and (min-width: 1366px) {
  .contacts__accordion {
    margin-top: 0;
    display: none;
  }

  .contacts__accordion>button {
    display: none;
  }

  .contacts__accordion.is-active {
    display: block;
  }
}

@media only screen and (min-width: 960px) {
  .contacts__stack {
    display: flex;
    gap: 16px;
  }

  .contacts__stack label {
    flex-grow: 1;
  }
}

@media only screen and (min-width: 1366px) {
  .contacts__wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }

  .contacts__tabs {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1920px) {
  .contacts__wrap {
    margin-top: 100px;
  }

  .contacts__tabs {
    margin-top: 60px;
  }
}


.error-page {
  margin: 40px 0;
}

.error-page h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 12px;
}

.error-page p {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.error-page p a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .error-page {
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .error-page h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .error-page p {
    flex-direction: row;
  }

  .error-page p a {
    transition: color 0.5s ease;
  }

  .error-page p a:hover {
    color: #EE9EAD;
  }
}


.lc {
  margin: 40px 0;
}

.lc .h2 {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc {
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .lc .h2 {
    margin-bottom: 0;
  }
}

.lc__navigation {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(24, 22, 22, 0.1);
}

.lc__navigation ul {
  margin-top: 20px;
}

.lc__navigation ul a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(24, 22, 22, 0.25);
}

.lc__navigation ul li {
  margin-top: 8px;
}

.lc__navigation ul li:first-child {
  margin-top: 0;
}

.lc__navigation ul li.is-active a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc__navigation {
    width: 400px;
    border: none;
    padding-bottom: 0;
  }

  .lc__navigation ul {
    margin-top: 40px;
  }

  .lc__navigation ul li {
    margin-top: 16px;
  }

  .lc__navigation ul a {
    font-size: 22px;
    transition: color 0.5s ease;
  }

  .lc__navigation ul a:hover {
    color: #EE9EAD;
  }
}

.lc__user {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(24, 22, 22, 0.1);
}

.lc__user form img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.lc__user form label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc__user p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 16px;
  margin-right: 16px;
}

.lc__user button {
  width: 20px;
  height: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc__user button svg {
  width: 20px;
  height: 20px;
}



@media only screen and (min-width: 1366px) {
  .lc__user {
    padding: 12px;
  }

  .lc__user form img {
    width: 40px;
    height: 40px;
  }

  .lc__user p {
    font-size: 22px;
  }

  .lc__user button {
    width: 24px;
    height: 24px;
  }

  .lc__user button svg {
    width: 24px;
    height: 24px;
  }

  .lc__user button svg path {
    transition: fill 0.5s ease;
  }

  .lc__user button:hover svg path {
    fill: #EE9EAD;
  }

  .lc__user label {
    position: relative;
    cursor: pointer;
  }

  .lc__user label::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    background: url("/local/templates/emi-new/css/../img/icons/icon-pencil.svg"), rgba(24, 22, 22, 0.4);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
  }

  .lc__user label:hover::after {
    opacity: 1;
  }
}

.lc__status p:nth-child(1) {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.lc__status p:nth-child(2) {
  font-weight: 700;
  margin-top: 4px;
}

.lc__status a {
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc__status p:nth-child(1) {
    font-size: 22px;
  }

  .lc__status a {
    transition: color 0.5s ease;
  }

  .lc__status a:hover {
    color: #EE9EAD;
  }
}

.lc__content--personal-data hr {
  display: block;
  height: 1px;
  border: 0;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.lc__content--personal-data fieldset {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

.lc__content--personal-data fieldset .lc__stack {
  margin-top: 16px;
}

.lc__content--personal-data fieldset .lc__stack:first-child {
  margin-top: 0;
}

.lc__content--order>div {
  margin-top: 20px;
}

.lc__content--about-order {
  margin-top: 20px;
}

.lc__content--about-order>a {
  font-weight: 500;
  color: #181616;
}

@media only screen and (min-width: 768px) {
  .lc__content--personal-data fieldset {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__content {
    flex-grow: 1;
    margin-left: 60px;
  }

  .lc__content--personal-data fieldset {
    margin-top: 24px;
  }

  .lc__content--personal-data fieldset .lc__stack {
    margin-top: 0;
  }

  .lc__content--personal-data hr {
    margin: 80px 0;
    background: rgba(24, 22, 22, 0.1);
  }

  .lc__content--order>div {
    margin-top: 80px;
  }

  .lc__content--order>div:first-child {
    margin-top: 0;
  }

  .lc__content--status {
    width: calc(100vw - 508px);
  }

  .lc__content--status form {
    margin-top: 40px;
  }

  .lc__content--about-order {
    width: calc(100vw - 508px);
    margin-top: 0;
  }

  .lc__content--about-order>a {
    transition: color 0.5s ease;
  }

  .lc__content--about-order>a:hover {
    color: #EE9EAD;
  }

  .lc__content--promo {
    width: calc(100vw - 508px);
  }
}

@media only screen and (min-width: 1920px) {
  .lc__content {
    margin-left: 120px;
  }

  .lc__content--status {
    width: calc(100% - 736px);
  }

  .lc__content--about-order {
    width: calc(100% - 736px);
  }

  .lc__content--promo {
    width: calc(100% - 736px);
  }
}

.lc__label:not(.lc__label--radio) span {
  display: inline-block;
  margin-bottom: 4px;
}

.lc__label:not(.lc__label--radio) input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 200px;
  color: #181616;
}

.lc__label:not(.lc__label--radio) input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.lc__label:not(.lc__label--radio) input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.lc__label--radio span {
  display: inline-block;
  margin-bottom: 18px;
}

.lc__label--radio ul {
  display: flex;
  gap: 24px;
}

.lc__label--radio ul label {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  padding-left: 32px;
  position: relative;
}

.lc__label--radio ul label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(24, 22, 22, 0.4);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lc__label--radio ul label::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: #181616;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lc__label--radio ul input:checked+label:before {
  opacity: 1;
}

@media only screen and (min-width: 1366px) {
  .lc__label:not(.lc__label--radio) span {
    margin-bottom: 8px;
  }

  .lc__label--radio label {
    cursor: pointer;
  }
}

.lc__head {
  margin: 20px 0;
}

@media only screen and (min-width: 1366px) {
  .lc__head {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
}

.lc__subscribe {
  margin-top: 8px;
}

.lc__subscribe label {
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: inline-block;
}

.lc__subscribe label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc__subscribe label a {
  color: #E58A9A;
}

.lc__subscribe input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 768px) {
  .lc__subscribe {
    margin-bottom: 0;
    margin-top: 16px;
  }
}

.lc__delete {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  color: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .lc__delete {
    margin-left: 0;
    margin-top: 80px;
    transition: color 0.5s ease;
  }

  .lc__delete:hover {
    color: #EE9EAD;
  }
}

.lc__button {
  margin-top: 20px;
}

.lc__button--total {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  .lc__button--status {
    max-width: 320px;
  }

  .lc__button--total {
    max-width: 320px;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__button {
    max-width: 430px;
    margin-top: 80px;
  }

  .lc__button--status {
    max-width: 320px;
    margin-top: 16px;
  }

  .lc__button--total {
    margin-top: 20px;
    max-width: 100%;
  }

  .lc__button--salon {
    margin-top: 24px;
  }

  .lc__button--address {
    margin-top: 24px;
  }

  .lc__button--help {
    margin-top: 24px;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__wrapper {
    display: flex;
  }
}

.lc__datepicker {
  position: relative;
}

.lc__datepicker input {
  padding-right: 50px !important;
}

.lc__datepicker::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-datepicker.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.lc__orders {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

.lc__orders>li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 22, 22, 0.1);
}

@media only screen and (min-width: 1366px) {
  .lc__orders {
    grid-gap: 20px;
  }

  .lc__orders>li {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__orders>li {
    display: flex;
  }
}

.lc_status p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.lc_status address {
  color: rgba(24, 22, 22, 0.4);
  margin-top: 4px;
}

@media only screen and (min-width: 1366px) {
  .lc_status p {
    font-size: 22px;
  }

  .lc_status address {
    margin-top: 8px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc_status {
    max-width: 300px;
    margin-right: 80px;
  }
}

.lc__deadlines {
  margin-top: 12px;
}

.lc__deadlines p:nth-child(1) {
  font-weight: 500;
}

.lc__deadlines p:nth-child(2) {
  color: rgba(24, 22, 22, 0.4);
  margin-top: 4px;
}

@media only screen and (min-width: 1366px) {
  .lc__deadlines p:nth-child(2) {
    margin-top: 8px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__deadlines {
    max-width: 200px;
    margin-top: 0;
  }
}

.lc__cards {
  margin-top: 12px;
}

.lc__cards ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 12px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.lc__cards img {
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .lc__cards ul {
    grid-gap: 16px;
  }

  .lc__cards img {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__cards {
    margin-left: auto;
    margin-top: 0;
  }
}

.lc__panel {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lc__panel a {
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #181616;
}

.lc__panel a svg {
  margin-right: 6px;
}

@media only screen and (min-width: 1366px) {
  .lc__panel a {
    transition: color 0.5s ease;
  }

  .lc__panel a svg path {
    transition: stroke 0.5s ease;
  }

  .lc__panel a:hover {
    color: #EE9EAD;
  }

  .lc__panel a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__panel {
    justify-content: flex-end;
    gap: 28px;
  }
}

.lc__sorting {
  position: relative;
  margin-bottom: 20px;
}

.lc__sorting>button {
  position: relative;
  padding-right: 28px;
  font-weight: 500;
}

.lc__sorting>button::after {
  position: absolute;
  content: "";
  background: url("/local/templates/emi-new/css/../img/icons/icon-accordion-arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.5s ease;
}

.lc__sorting>button.is-active::after {
  transform: translateY(-50%) rotate(360deg);
}

.lc__sorting ul {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 180px;
  background: #ffffff;
  z-index: 2;
  transform: translateY(calc(100% + 4px));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}

.lc__sorting ul li {
  margin-top: 4px;
}

.lc__sorting ul li:first-child {
  margin-top: 0;
}

.lc__sorting ul.is-show {
  opacity: 1;
  pointer-events: all;
}

@media only screen and (min-width: 1366px) {
  .lc__sorting {
    margin-bottom: 40px;
  }

  .lc__sorting button {
    transition: color 0.5s ease;
  }

  .lc__sorting button:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__part .h2 {
    margin-bottom: 40px;
  }
}

.lc__docs {
  margin-top: 40px;
}

.lc__docs img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.lc__docs .swiper {
  overflow: visible;
}

.lc__docs .swiper::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 100%;
  background: #ffffff;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 1;
}

.lc__docs .swiper-slide {
  position: relative;
  padding: 10px 7px;
  border: 1px solid rgba(24, 22, 22, 0.1);
  height: auto;
}

.lc__docs .swiper-slide div {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(24, 22, 22, 0.4);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.lc__docs .swiper-slide button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.lc__docs .swiper-slide button svg {
  width: 20px;
  height: 20px;
}

.lc__docs>label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid rgba(24, 22, 22, 0.8);
  border-radius: 200px;
  margin-top: 20px;
  cursor: pointer;
}

.lc__docs>label span {
  font-weight: 500;
  color: rgba(24, 22, 22, 0.8);
}

.lc__docs>label svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media only screen and (min-width: 1366px) {
  .lc__docs {
    margin-top: 80px;
  }

  .lc__docs .swiper {
    width: calc(100vw - 508px);
    overflow: hidden;
    margin-top: 24px;
  }

  .lc__docs .swiper::after {
    display: none;
  }

  .lc__docs .swiper-slide {
    padding: 12px;
  }

  .lc__docs .swiper-slide button {
    width: 24px;
    height: 24px;
  }

  .lc__docs .swiper-slide button svg {
    width: 24px;
    height: 24px;
  }

  .lc__docs .swiper-slide button svg path {
    transition: stroke 0.5s ease;
  }

  .lc__docs .swiper-slide button:hover svg path {
    stroke: #EE9EAD;
  }

  .lc__docs .swiper-slide div {
    transition: opacity 0.5s ease;
    pointer-events: none;
    opacity: 0;
  }

  .lc__docs .swiper-slide:hover div {
    opacity: 1;
    pointer-events: all;
  }

  .lc__docs>label {
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 12px 24px;
    transition: border-color 0.5s ease;
    margin-top: 24px;
  }

  .lc__docs>label span {
    transition: color 0.5s ease;
  }

  .lc__docs>label svg path {
    transition: fill 0.5s ease;
  }

  .lc__docs>label:hover {
    border-color: #EE9EAD;
  }

  .lc__docs>label:hover span {
    color: #EE9EAD;
  }

  .lc__docs>label:hover svg path {
    fill: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__docs .swiper {
    width: 100%;
    max-width: 1184px;
  }
}

.lc__policy {
  margin-top: 20px;
}

.lc__policy label {
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: inline-block;
}

.lc__policy label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc__policy label a {
  color: #E58A9A;
}

.lc__policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .lc__policy {
    margin-top: 24px;
  }
}

.lc__org {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
}

.lc__org div.info {
  display: flex;
  align-items: center;
}

.lc__org div.info>span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background: #FDF4F5;
  border-radius: 50%;
}

.lc__org div.info>span img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

.lc__org div.info p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.lc__org div.info p span {
  color: #E58A9A;
}

.lc__org label:not(.lc__status-text) {
  padding: 8px 16px;
  background: #181616;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 8px;
  cursor: pointer;
  min-width: 208px;
  min-height: 36px;
}

.lc__org label:not(.lc__status-text) svg {
  margin-right: 10px;
}

.lc__org mark {
  min-width: 208px;
  padding: 9px 24px;
  background: rgba(24, 22, 22, 0.1);
  border-radius: 200px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.lc__org li>p {
  color: rgba(24, 22, 22, 0.4);
  margin-top: 8px;
}

@media only screen and (min-width: 768px) {
  .lc__org label:not(.lc__status-text) {
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .lc__org mark {
    max-width: 208px;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__org {
    grid-gap: 40px;
  }

  .lc__org div.info span {
    width: 44px;
    height: 44px;
    margin-right: 12px;
  }

  .lc__org div.info span img {
    width: 24px;
    height: 24px;
  }

  .lc__org div.info p {
    font-size: 22px;
  }

  .lc__org label:not(.lc__status-text) {
    background: #ffffff;
    color: #181616;
    border: 1px solid rgba(24, 22, 22, 0.8);
    margin-top: 16px;
    padding: 12px 26px;
    transition: all 0.5s ease;
    min-height: 48px;
  }

  .lc__org label:not(.lc__status-text) svg path {
    transition: fill 0.5s ease;
    fill: #181616;
  }

  .lc__org label:not(.lc__status-text):hover {
    background: #EE9EAD;
    color: #ffffff;
    border-color: #EE9EAD;
  }

  .lc__org label:not(.lc__status-text):hover svg path {
    fill: #ffffff;
  }

  .lc__org mark {
    min-height: 48px;
  }
}

.lc__status-text {
  display: flex;
  margin-top: 8px;
}

.lc__status-text input {
  padding: 12px 16px;
  border-radius: 40px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  color: #181616;
  min-height: 48px;
}

.lc__status-text input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.lc__status-text input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 768px) {
  .lc__status-text {
    max-width: 320px;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__status-tex {
    margin-top: 16px;
  }
}

.lc__order {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc__order {
    display: flex;
    margin-top: 24px;
  }
}

.lc__order-text p:nth-child(1) {
  font-weight: 500;
}

.lc__order-text p:nth-child(2) {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}

.lc__order-text p:nth-child(3) {
  color: rgba(24, 22, 22, 0.4);
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .lc__order-text p:nth-child(1) {
    font-size: 22px;
    font-weight: 700;
  }

  .lc__order-text p:nth-child(2) {
    font-size: 40px;
    margin-top: 16px;
  }

  .lc__order-text p:nth-child(3) {
    margin-top: 8px;
  }
}

.lc__order-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  margin-top: 12px;
}

.lc__order-list li {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(24, 22, 22, 0.1);
}

@media only screen and (min-width: 1366px) {
  .lc__order-list {
    margin-top: 16px;
    grid-gap: 16px;
  }

  .lc__order-list li {
    padding-bottom: 16px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__order-list li {
    display: flex;
    align-items: center;
  }
}

.lc__order-wrap {
  display: flex;
  align-items: center;
}

.lc__order-img {
  margin-right: 8px;
}

.lc__order-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 1366px) {
  .lc__order-img {
    margin-right: 16px;
  }

  .lc__order-img img {
    width: 92px;
    height: 92px;
  }
}

.lc__order-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lc__order-info a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: #181616;
}

.lc__order-info p {
  color: rgba(24, 22, 22, 0.25);
}

@media only screen and (min-width: 1366px) {
  .lc__order-info a {
    font-size: 22px;
    transition: color 0.5s ease;
  }

  .lc__order-info a:hover {
    color: #EE9EAD;
  }

  .lc__order-info p {
    margin-top: 8px;
  }
}

.lc__order-detail {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 8px;
}

.lc__order-detail p {
  font-weight: 700;
}

@media only screen and (min-width: 1366px) {
  .lc__order-detail {
    font-size: 22px;
    gap: 36px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__order-detail {
    margin-top: 0;
    margin-left: 36px;
  }

  .lc__order-detail p {
    width: -moz-max-content;
    width: max-content;
  }
}

.lc__order-total {
  margin-top: 20px;
}

.lc__order-total>div {
  padding: 16px;
  border: 1px solid rgba(24, 22, 22, 0.1);
}

.lc__order-total ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}

.lc__order-total ul li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.lc__order-total ul li.color-pink {
  color: #E58A9A;
}

.lc__order-total ul p {
  font-weight: 500;
}

.lc__order-total ul p:nth-child(2) {
  min-width: -moz-max-content;
  min-width: max-content;
}

@media only screen and (min-width: 1366px) {
  .lc__order-total {
    width: 400px;
    margin-top: 0;
    height: -moz-max-content;
    height: max-content;
  }

  .lc__order-total>div {
    padding: 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__order-total {
    width: 480px;
  }
}

.lc__order-price {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.lc__order-price p {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

@media only screen and (min-width: 1366px) {
  .lc__order-price p {
    font-size: 22px;
  }
}

.lc__order-feedback {
  margin-top: 16px;
}

.lc__order-feedback a {
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc__order-feedback a {
    transition: color 0.5s ease;
  }

  .lc__order-feedback a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1366px) {
  .lc__order-wrapper {
    width: calc(100% - 460px);
    margin-right: 60px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__order-wrapper {
    width: calc(100% - 540px);
  }
}

.lc__addresses {
  margin-top: 20px;
}

.lc__addresses ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}

.lc__addresses li {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(24, 22, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lc__addresses li p {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.lc__addresses li div {
  display: flex;
  align-items: center;
  margin-left: 16px;
  gap: 12px;
}

.lc__addresses li button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc__addresses li button svg {
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc__addresses {
    margin-top: 0;
  }

  .lc__addresses .h2 {
    margin-bottom: 40px;
  }

  .lc__addresses ul {
    grid-gap: 36px;
  }

  .lc__addresses li {
    padding-bottom: 18px;
  }

  .lc__addresses li div {
    gap: 16px;
  }

  .lc__addresses li button {
    width: 32px;
    height: 32px;
  }

  .lc__addresses li button svg {
    width: 32px;
    height: 32px;
  }

  .lc__addresses li button svg path {
    transition: stroke 0.5s ease;
  }

  .lc__addresses li button:hover svg path {
    stroke: #EE9EAD;
  }

  .lc__addresses li p {
    font-size: 22px;
  }
}

.lc__add-address {
  margin-top: 20px;
}

.lc__add-address>a {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  color: #181616;
}

@media only screen and (min-width: 1366px) {
  .lc__add-address {
    margin-top: 0px;
  }

  .lc__add-address .h2 {
    margin-bottom: 24px;
  }

  .lc__add-address>a {
    transition: color 0.5s ease;
  }

  .lc__add-address>a:hover {
    color: #EE9EAD;
  }
}

.lc__add-address-labels {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

@media only screen and (min-width: 768px) {
  .lc__add-address-labels {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px 24px;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__add-address-labels {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.lc__add-address-policy {
  margin-top: 20px;
}

.lc__add-address-policy label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  display: inline-block;
}

.lc__add-address-policy label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc__add-address-policy label a {
  color: #E58A9A;
}

.lc__add-address-policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .lc__add-address-policy {
    margin-top: 24px;
  }
}

.lc__zero-address {
  margin-top: 20px;
}

.lc__zero-address div p:nth-child(2) {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

@media only screen and (min-width: 1366px) {
  .lc__zero-address {
    margin-top: 0;
  }

  .lc__zero-address .h2 {
    margin-bottom: 24px;
  }

  .lc__zero-address div p:nth-child(2) {
    font-weight: 22px;
  }

  .lc__zero-address .lc__button {
    max-width: 320px;
  }
}

.lc__help {
  margin-top: 20px;
}

.lc__help form {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc__help {
    margin-top: 0;
  }

  .lc__help .h2 {
    margin-bottom: 8px;
  }

  .lc__help form {
    margin-top: 24px;
  }
}

.lc__help-labels {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

@media only screen and (min-width: 1366px) {
  .lc__help-labels {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
  }
}

.lc__help-message {
  margin-top: 12px;
  display: flex;
}

.lc__help-message textarea {
  width: 100%;
  height: 162px;
  resize: none;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 20px;
  padding: 8px 16px;
  outline: none;
}

@media only screen and (min-width: 1366px) {
  .lc__help-message {
    margin-top: 16px;
  }

  .lc__help-message textarea {
    padding: 12px 16px;
  }
}

.lc__help-policy {
  margin-top: 20px;
}

.lc__help-policy label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  display: inline-block;
}

.lc__help-policy label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lc__help-policy label a {
  color: #E58A9A;
}

.lc__help-policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .lc__help-policy {
    margin-top: 24px;
  }
}

.lc__promo {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc__promo {
    margin-top: 0;
  }

  .lc__promo>.h2 {
    margin-bottom: 24px;
  }
}

.lc__progress {
  display: flex;
  align-items: center;
}

.lc__progress svg {
  width: 112px;
  height: 112px;
}

.lc__progress p {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 40px;
}

@media only screen and (min-width: 1366px) {
  .lc__progress svg {
    width: 200px;
    height: 200px;
  }

  .lc__progress p {
    display: none;
  }
}

.lc__lvl {
  margin-top: 20px;
}

.lc__lvl>p {
  display: none;
}

.lc__lvl ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

.lc__lvl ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lc__lvl ul li p:nth-child(1) {
  color: rgba(24, 22, 22, 0.4);
}

.lc__lvl ul li p:nth-child(2) {
  font-weight: 700;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-left: 16px;
}

.lc__lvl a {
  font-weight: 500;
  color: #E58A9A;
  display: inline-block;
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .lc__lvl {
    margin-top: 0;
    max-width: 480px;
    margin-left: 80px;
  }

  .lc__lvl>p {
    display: block;
    font-size: 22px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .lc__lvl a {
    margin-top: 28px;
    transition: color 0.5s ease;
  }

  .lc__lvl a:hover {
    color: #EE9EAD;
  }

  .lc__lvl ul li p:nth-child(2) {
    margin-left: 96px;
  }
}

.lc__coupons {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .lc__coupons {
    margin-top: 80px;
  }

  .lc__coupons>.h2 {
    margin-bottom: 24px;
  }
}

.lc__coupons-carousel {
  overflow: visible;
}

.lc__coupons-carousel::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 1;
  pointer-events: none;
}

.lc__coupons-carousel .swiper-slide {
  padding: 16px;
  border: 1px solid rgba(24, 22, 22, 0.1);
  height: auto;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .lc__coupons-carousel {
    overflow: hidden;
  }

  .lc__coupons-carousel::after {
    display: none;
  }

  .lc__coupons-carousel .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
}

@media only screen and (min-width: 960px) {
  .lc__coupons-carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1920px) {
  .lc__coupons-carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.lc__coupons-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.lc__coupons-head p {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  padding-right: 12px;
}

.lc__coupons-head p::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 15px;
  background: url("/local/templates/emi-new/css/../img/icons/icon-promo.svg");
  filter: brightness(0%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 4px;
}

.lc__coupons-head button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.lc__coupons-head button svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .lc__coupons-head button svg path {
    transition: stroke 0.5s ease;
  }

  .lc__coupons-head button:hover svg path {
    stroke: #EE9EAD;
  }
}

.lc__coupons-info {
  margin: 16px 0;
  font-size: 14px;
  line-height: 100%;
}

.lc__coupons-info span {
  color: #E58A9A;
}

.lc__coupons-progress p {
  font-size: 14px;
  line-height: 100%;
}

.lc__coupons-progress div {
  width: 100%;
  height: 4px;
  margin-top: 8px;
  background: rgba(24, 22, 22, 0.1);
  border-radius: 200px;
  position: relative;
}

.lc__coupons-progress div span {
  position: absolute;
  top: 0;
  left: 0;
  background: #E58A9A;
  height: 100%;
  border-radius: 200px;
}

@media only screen and (min-width: 1366px) {
  .lc__promo-progress {
    display: flex;
    align-items: center;
  }
}

.admission .mfp-container {
  padding: 0 24px;
}

.admission .mfp-close {
  display: none;
}

.admission__wrapper {
  background: #ffffff;
  padding: 16px;
  position: relative;
}

.admission__wrapper>button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission__wrapper>button svg {
  width: 20px;
  height: 20px;
}

.admission__wrapper form {
  margin-top: 16px;
}

.admission__wrapper form fieldset>label {
  display: flex;
}

.admission__wrapper form fieldset>label input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 40px;
}

.admission__wrapper form fieldset>label input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.admission__wrapper form fieldset>label input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 640px) {
  .admission__wrapper {
    max-width: 532px;
    margin: 24px auto;
  }
}

@media only screen and (min-width: 1366px) {
  .admission__wrapper {
    max-width: 800px;
    padding: 40px;
  }

  .admission__wrapper form {
    margin-top: 40px;
  }

  .admission__wrapper>button {
    top: 44px;
    right: 40px;
  }

  .admission__wrapper>button svg {
    width: 40px;
    height: 40px;
  }

  .admission__wrapper>button svg path {
    transition: stroke 0.5s ease;
  }

  .admission__wrapper>button:hover svg path {
    stroke: #EE9EAD;
  }
}

.admission__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1366px) {
  .admission__title {
    font-size: 40px;
    line-height: 48px;
    padding-right: 50px;
  }
}

.admission__subtitle {
  font-weight: 500;
  margin-top: 4px;
}

@media only screen and (min-width: 1366px) {
  .admission__subtitle {
    margin-top: 12px;
  }
}

.admission__policy {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.admission__policy p {
  width: calc(100% - 32px);
  margin-left: 16px;
}

.admission__policy label {
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: inline-block;
}

.admission__policy label::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(24, 22, 22, 0.4);
  border-radius: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.admission__policy label a {
  color: #E58A9A;
}

.admission__policy input:checked+label:after {
  border-color: rgba(24, 22, 22, 0.4);
  background: url("/local/templates/emi-new/css/../img/icons/icon-check.svg"), #181616;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

@media only screen and (min-width: 1366px) {
  .admission__policy {
    margin-top: 24px;
  }

  .admission__policy label::after {
    width: 24px;
    height: 24px;
    background-size: 14px;
  }
}

.admission__button {
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .admission__button {
    margin-top: 12px;
  }
}

.present .mfp-container {
  padding: 0 24px;
}

.present .mfp-close {
  display: none;
}

.present__wrapper {
  background: #ffffff;
  padding: 24px;
  margin: 24px auto;
}

@media only screen and (min-width: 1366px) {
  .present__wrapper {
    padding: 40px;
    max-width: 1520px;
  }
}

.present__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.present__head p {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.present__head button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.present__head button svg {
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 1366px) {
  .present__head p {
    font-size: 40px;
  }

  .present__head button svg {
    width: 40px;
    height: 40px;
  }

  .present__head button svg path {
    transition: stroke 0.5s ease;
  }

  .present__head button:hover svg path {
    stroke: #EE9EAD;
  }
}

.present__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-top: 20px;
}

.present__list li {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(24, 22, 22, 0.1);
}

.present__list img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 120px;
}

.present__list p {
  font-weight: 700;
  margin-top: 8px;
}

.present__list button {
  margin-top: 8px;
  max-width: 100%;
  background: #E58A9A;
}

.btn-primary--pink {
  color: #ffffff;
  max-width: 100%;
  background: #E58A9A;
  transition: background 0.5s ease;
  cursor: pointer;
}

.btn-primary--pink:hover {
  background: #EE9EAD;
}

@media only screen and (min-width: 768px) {
  .present__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .present__list {
    margin-top: 40px;
  }

  .present__list img {
    max-width: 272px;
  }

  .present__list p {
    margin-top: 12px;
  }

  .present__list li {
    padding: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .present__list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

.location.mfp-wrap {
  background: #ffffff;
}

.location.mfp-wrap .mfp-container {
  padding: 0 24px;
}

.location.mfp-wrap .mfp-close {
  display: none;
}

.location.mfp-wrap form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(24, 22, 22, 0.1);
  border-radius: 200px;
  padding: 12px 12px 12px 20px;
  margin: 20px 0;
}

.location.mfp-wrap form fieldset {
  flex-grow: 1;
}

.location.mfp-wrap form input {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: #181616;
}

.location.mfp-wrap form input::-moz-placeholder {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: rgba(24, 22, 22, 0.4);
}

.location.mfp-wrap form input::placeholder {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: rgba(24, 22, 22, 0.4);
}

.location.mfp-wrap form button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}

.location.mfp-wrap form button svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .location.mfp-wrap {
    background: transparent;
    height: 100%;
    top: 0;
  }

  .location.mfp-wrap .mfp-container {
    padding: 0;
  }

  .location.mfp-wrap form {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.location__content>img {
  display: none;
}

@media only screen and (min-width: 1920px) {
  .location__content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .location__content>img {
    display: block;
    width: 240px;
    height: 66px;
  }

  .location__content>div {
    width: 936px;
  }
}

/*
.location__wrapper {
  padding: 40px 0;
}
*/
@media only screen and (min-width: 1366px) {
  .location__wrapper {
    /*padding: 40px;*/
    /*height: 620px;*/
    max-width: 1200px;
    /*background: #ffffff;*/
    /*margin: 24px auto;*/
  }
}

@media only screen and (min-width: 1920px) {
  .location__wrapper {
    /*height: 620px;*/
    max-width: 1376px;
  }
}

.location__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location__head p {
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.location__head button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__head button svg {
  width: 24px;
  height: 24px;
}

.location__head button svg path {
  transition: stroke 0.5s ease;
}

.location__head button:hover svg path {
  stroke: #EE9EAD;
}

@media only screen and (min-width: 1366px) {
  .location__head p {
    font-size: 40px;
  }

  .location__head button {
    width: 40px;
    height: 40px;
  }

  .location__head button svg {
    width: 40px;
    height: 40px;
  }

  .location__head button svg path {
    transition: stroke 0.5s ease;
  }

  .location__head button:hover svg path {
    stroke: #EE9EAD;
  }
}

.location__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}

.location__list a {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  color: #181616;
}

@media only screen and (min-width: 768px) {
  .location__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .location__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
  }

  .location__list a {
    transition: color 0.5s ease;
  }

  .location__list a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1366px) {
  .location__scrollbar {
    height: 358px;
  }
}

.review .mfp-content {
  height: 100%;
}

.review .mfp-container {
  padding: 0;
  height: -moz-max-content;
  height: max-content;
  min-height: 100%;
}

.review .mfp-close {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .review .mfp-content {
    height: -moz-min-content;
    height: min-content;
  }

  .review .mfp-container {
    height: 100%;
    min-height: auto;
  }
}

.review__wrapper {
  background: #ffffff;
  padding: 40px 24px;
  height: -moz-max-content;
  height: max-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-width: 1366px) {
  .review__wrapper {
    padding: 0px;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    margin: 0 auto;
    background: transparent;
  }
}

.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review__head p {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 24px;
}

.review__head button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review__head button svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .review__head p {
    font-size: 40px;
  }

  .review__head button {
    width: 40px;
    height: 40px;
  }

  .review__head button svg {
    width: 40px;
    height: 40px;
  }

  .review__head button svg path {
    transition: stroke 0.5s ease;
  }

  .review__head button:hover svg path {
    stroke: #EE9EAD;
  }
}

.review__content form {
  margin-top: 40px;
}

@media only screen and (min-width: 1366px) {
  .review__content {
    max-width: 1520px;
    background: #ffffff;
    padding: 40px;
    margin: 24px auto;
  }

  .review__content fieldset {
    display: flex;
  }
}

.review__text>span {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.review__text input {
  padding: 12px 16px;
  border: 1px solid rgba(24, 22, 22, 0.4);
  color: #181616;
  border-radius: 200px;
}

.review__text input::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.review__text input::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 1366px) {
  .review__text>span {
    font-size: 14px;
  }
}

.review__rating {
  margin-top: 24px;
}

.review__rating>span {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.review__rating div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 24px;
  max-width: 200px;
}

.review__rating div span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.review__rating div span.is-active svg path {
  stroke: #E58A9A;
  fill: #E58A9A;
}

.review__rating div svg {
  width: 26px;
  height: 26px;
}

.review__rating div svg path {
  transition: all 0.5s ease;
}

@media only screen and (min-width: 1366px) {
  .review__rating>span {
    font-size: 14px;
  }

  .review__rating div {
    max-width: 100%;
  }

  .review__rating div svg {
    width: 64px;
    height: 64px;
  }
}

.review__message {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.review__message>span {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.review__message textarea {
  padding: 12px 16px;
  margin: 0;
  border: 1px solid rgba(24, 22, 22, 0.4);
  color: #181616;
  border-radius: 20px;
  min-height: 260px;
  resize: none;
  width: 100%;
  outline: none;
}

.review__message textarea::-moz-placeholder {
  color: rgba(24, 22, 22, 0.4);
}

.review__message textarea::placeholder {
  color: rgba(24, 22, 22, 0.4);
}

@media only screen and (min-width: 1366px) {
  .review__message>span {
    font-size: 14px;
  }

  .review__message textarea {
    min-height: 305px;
  }
}

@media only screen and (min-width: 1920px) {
  .review__message textarea {
    min-height: 390px;
  }
}

.review__wrap {
  margin-top: 40px;
}

@media only screen and (min-width: 1366px) {
  .review__wrap {
    flex-grow: 1;
    margin-top: 0;
  }
}

.review__media>span {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

@media only screen and (min-width: 1366px) {
  .review__media>span {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.review__carousel {
  overflow: visible;
  width: calc(100vw - 48px);
  margin: 24px 0;
}

.review__carousel::after {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 24px;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.review__carousel .swiper-slide {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .review__carousel {
    overflow: hidden;
    width: 100%;
  }

  .review__carousel::after {
    display: none;
  }

  .review__carousel .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
  }
}

@media only screen and (min-width: 960px) {
  .review__carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .review__carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .review__carousel {
    margin-top: 0;
  }

  .review__carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1920px) {
  .review__carousel .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.review__part {
  min-height: 160px;
  border-radius: 20px;
  height: 100%;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .review__part {
    min-height: 202px;
  }
}

.review__add {
  border: 1px solid rgba(24, 22, 22, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1366px) {

  .review__add svg path,
  .review__add svg rect {
    transition: stroke 0.5s ease;
  }

  .review__add:hover svg path,
  .review__add:hover svg rect {
    stroke: #EE9EAD;
  }
}

.review__video {
  position: relative;
}

.review__video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review__video img {
  aspect-ratio: 160/160;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.review__photo img {
  aspect-ratio: 160/160;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.review__progress {
  border: 1px solid rgba(24, 22, 22, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review__progress div {
  width: 100%;
  height: 16px;
  border: 1px solid rgba(24, 22, 22, 0.25);
  border-radius: 200px;
  position: relative;
}

.review__progress div span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 200px;
  background: #E58A9A;
}

.review__error {
  border: 1px solid #FF0000;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review__error p {
  color: #FF0000;
  margin-top: 8px;
}

@media only screen and (min-width: 1366px) {
  .review__data {
    width: 480px;
    margin-right: 80px;
  }
}

.review__button {
  background: #E58A9A;
}

.review__button.is-disabled {
  background: #ffffff;
  color: rgba(24, 22, 22, 0.25);
  pointer-events: none;
  border: 1px solid rgba(24, 22, 22, 0.25);
}

@media only screen and (min-width: 1366px) {
  .review__button:hover {
    background: #EE9EAD;
  }
}

.success .mfp-close {
  display: none;
}

.success .mfp-container {
  padding: 0 24px;
}

.success__wrapper {
  padding: 40px;
  background: #ffffff;
  max-width: 1070px;
  margin: 0 auto;
}

.success__wrapper p:nth-child(1) {
  font-size: 22px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.success__wrapper p:nth-child(2) {
  font-weight: 500;
  margin-top: 12px;
}

.success__wrapper button {
  margin-top: 24px;
  background: #E58A9A;
}

@media only screen and (min-width: 1366px) {
  .success__wrapper {
    padding: 60px;
    margin: 24px auto;
  }

  .success__wrapper p:nth-child(1) {
    font-size: 40px;
  }

  .success__wrapper button {
    margin-top: 40px;
  }

  .success__wrapper button:hover {
    background: #EE9EAD;
  }
}

/*# sourceMappingURL=style.css.map */
/* End */
/* /local/components/emi/change-city/templates/.default/style.css?1725435330365 */
/* /local/js/emi/popup/tingle.css?17256080475683 */
/* /local/components/emi/location/templates/.default/style.css?172476876345 */
/* /local/components/emi/sale.location.selector.search/templates/.default/style.css?17248452896633 */
/* /local/components/emi/search-title/templates/.default/style.css?1726562034415 */
/* /local/components/emi/emi-registration/templates/sms/style.css?172681555242 */
/* /local/components/emi-front/modal-subscribe/templates/.default/style.css?173286905541 */
/* /local/templates/emi-new/template_styles.css?1751552542202 */
/* /local/templates/emi-new/css/swiper-bundle.min.css?172430995218432 */
/* /local/templates/emi-new/css/simplebar.css?17243099524284 */
/* /local/templates/emi-new/css/magnific-popup.css?17243099528611 */
/* /local/templates/emi-new/css/nouislider.min.css?17243099523888 */
/* /local/templates/emi-new/css/air-datepicker.css?172430995219619 */
/* /local/templates/emi-new/css/style.css?1751532952204798 */
