/*@font-face {
    font-family: "Circe-Regular";
    src: url("../fonts/circle/Circe-Regular.woff") format("woff");
}
*/
@font-face {
    font-family: "Circe-Bold-Old";
    src: url("../fonts/circle/Circe-Bold.woff") format("woff");
}
/*
@font-face {
    font-family: "Circe-Light";
    src: url("../fonts/circle/Circe-Light.woff") format("woff");
}*/
@font-face {
    font-family: "Circe-Regular";
    src: url("../fonts/neue/TT-Firs-Neue-Regular.woff") format("woff");
}

@font-face {
    font-family: "Circe-Bold";
    src: url("../fonts/neue/TT-Firs-Neue-Bold.woff") format("woff");
}

@font-face {
    font-family: "Circe-Light";
    src: url("../fonts/neue/TTFirsNeue-Light.woff") format("woff");
}


body {
    margin: 0;
    padding: 0;
    font-family: "Circe-Regular";
    overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #c51315;
  border-radius: 20px;
}

body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}

scroll-bar::-webkit-scrollbar {
  width: 10px;
}

scroll-bar::-webkit-scrollbar-thumb {
  background: #c51315;
  border-radius: 20px;
}

scroll-bar::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}

h1 {
    margin-top: 24px;
    margin-bottom: 56px;
    font-family: "Circe-Bold";
    font-size: 64px;
    line-height: 65px;
}

.black_icon::before {
    background: url("../img/location-icon-black.svg") no-repeat center !important;
}

.white_icon::before {
    background: url("../img/location-icon.svg") no-repeat center !important;
}

.container {
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 40px;
}
.container.head {
    max-width: initial;
}
.title-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1392px;
    width: 100%;
    padding: 0 40px;
}

.cookie-wrapper{
    position: fixed;
    bottom: 25px;
    right: 55px;
    z-index: 500;
    display: flex;
    max-width: 752px;
    margin: 0 15px;
    padding: 24px;
    background-color: #F9F9F9;

}

.cookie-wrapper.hide-cookie{
    bottom: -50%;
    transition: .3s;
}

.cookie-wrapper p{
    font-family: 'Circe-Regular';
    font-size: 14px;
    line-height: 150%;
    color: #343434;
}

.cookie-wrapper a{
    text-decoration: none;
    color: #D62631;
}

.cookie-wrapper span{
    cursor: pointer;    
    min-width: 30px;
    height: 30px;
    background: url(/local/templates/main/img/closeMark.svg) no-repeat 100% 100%;
    background-position: center top;
}

.header {
    position: fixed;
    z-index: 301;
    width: 100%;
    border: 1px solid #e5e5e5;
    background-color: #fff;
}

.header .header-nav {
    position: relative;
}

.header ul {
    -webkit-transition: opacity 0.3s .7s;
    transition: opacity 0.3s .7s;
}

.header .icon-cart {
    -webkit-transition: opacity 0.3s .7s;
    transition: opacity 0.3s .7s;
}

.header .icon-cabinet {
  -webkit-transition: opacity 0.3s .7s;
  transition: opacity 0.3s .7s;
}

.header-nav-right-icons__item .notification-icon,
.header-nav-right-icons__item .login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s .7s;
}

.header-nav-right-icons__item .login-icon.authorized circle {
  fill: #D62631;
}

.header-nav-right-icons__item .notification-icon {
  position: relative;
}

.header-nav-right-icons__item .notification-icon.unread path {
  fill: #D62631;
}

.notification-icon .notification-count {
  display: none;
}

.notification-icon.unread .notification-count {
  font-family: "Circe-Bold-Old";
  position: absolute;
  top: -11px;
  right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 20px;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  background: #c51315;
  border: 1.5px solid #FFFFFF;
  border-radius: 9px;
}


.header .header-search {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: width 1s, opacity 1s;
    transition: width 1s, opacity 1s;
}

.header .header-search_button {
    opacity: 0;
    display: block;
    font-weight: 700;
    -webkit-transition: .5s 0s;
    transition: .5s 0s;
}

.header.open-search ul {
    opacity: 0;
    -webkit-transition: opacity 0.3s 0s;
    transition: opacity 0.3s 0s;
}

.header.open-search .icon-cart {
    opacity: 0;
    -webkit-transition: opacity 0.3s 0s;
    transition: opacity 0.3s 0s;
}

.header.open-search .icon-cabinet,
.header.open-search .notification-icon,
.header.open-search .login-icon {
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s;
  transition: opacity 0.3s 0s;
}

.header.open-search .icon-search {
    background: url("../img/iconSearchClose.svg") center center no-repeat;
}

.header.open-search .header-search {
    opacity: 1;
    width: 84%;
    -webkit-transition: width 1s .3s, opacity 1s .3s;
    transition: width 1s .3s, opacity 1s .3s;
}

.header.open-search .header-search_button {
    opacity: 1;
    -webkit-transition: .5s 1s;
    transition: .5s 1s;
}

.header .container {
    /* height: 100%; */
    height: 73px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.header-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Circe-Bold";
}

.header-nav-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav-left-list {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav-left-list>li {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header-nav-left-list>li:hover {
    border-bottom: 3px solid #d62631;
    margin-top: 2px;
}

.header-nav-left-list>li:hover>a {
    color: #d62631;
}

.header-nav-left>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
}

.header-nav-left>ul>li:not(:last-child) {
    margin-right: 16px;
}

.header-nav-left>ul a {
    color: black;
    text-decoration: none;
}

.header-nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav-right ul {
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
}

.header-nav-right ul li:not(:last-child) {
    margin-right: 25px;
}

.header-nav-right ul a {
    color: black;
    font-family: "Circe-Regular";
    text-decoration: none;
}

.header-nav-right ul a:hover {
    color: #a4282e;
}

.header-nav-right-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.header-nav-right-icons a:not(:last-child) {
    margin-right: 15px;
}

.header-nav-right-icons .icon-cabinet {
    width: 15px;
    height: 17px;
    display: block;
    background: url(../img/iconCabinet.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-nav-right-icons__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav-right-icons__item:hover .login-dropdown {
  transition: 0.3s;
  pointer-events: auto;
  opacity: 1;
}

.login-dropdown {
  position: absolute;
  z-index: 11;
  right: -78px;
  top: 100%;
  padding: 24px;
  background: #FFFFFF;
  pointer-events: none;
  border: 1px solid #EBEBEB;
  opacity: 0;
}
.login-dropdown a{
    color: #D62631 !important;
}
.login-dropdown__btn {
  display: inline-block;
  margin-top: 14px;
  font-family: "Circe-Regular";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #D62631;
  text-decoration: none;
  cursor: pointer;
}
.login-dropdown a:hover,
.login-dropdown__btn:hover {
  transition: 0.3s;
  color: #A4282E;
}

.client {
  display: flex;
  flex-direction: column;
  width: 198px;
}

.login-dropdown .client__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.client__row a {
  text-decoration: none;
    color: inherit;
}

.login-dropdown .client__row:last-child {
  margin-bottom: 0;
}

.login-dropdown .client__row-title {
  margin: 0 0 4px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #343434;
}

.login-dropdown .client__row-desc {
  margin: 0;
  font-family: "Circe-Regular";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}


.manager {
  display: none;
  flex-direction: column;
  width: 243px;
}

.manager a {
  text-decoration: none;
}

.login-dropdown .manager__name {
  margin: 0 0 16px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #343434;
}

.login-dropdown .manager__btn {
  display: inline-block;
  margin-bottom: 24px;
  font-family: "Circe-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #343434;
  text-decoration: none;
}
/* .login-dropdown .manager__btn:hover {
  transition: 0.3s;
  color: #A4282E;
} */

.login-dropdown .manager__form {
  position: relative;
  width: 100%;
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: 2px;
}

.login-dropdown .manager__form::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 13px;
  left: 16px;
  width: 16px;
  height: 16px;
  background-image: url(../img/iconSearch.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.login-dropdown .manager__form.show-client::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 43px;
  height: 1px;
  width: 88%;
  margin: 0 auto;
  background-color: rgba(52, 52, 52, 0.2);
}

.login-dropdown .manager__form input {
  position: relative;
  overflow: hidden;
  padding: 12px 32px 12px 47px;
  width: 100%;
  font-family: "Circe-Regular";
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  border: none;
  outline: none;
}

.login-dropdown .manager__form:hover,
.login-dropdown .manager__form:focus-within {
  border: 1px solid rgba(52, 52, 52, 0.6);
  transition: 0.3s;
}

.login-dropdown .manager__form input::placeholder {
  font-family: "Circe-Regular";
  font-size: 16px;
  line-height: 120%;
  color: #343434;
  opacity: 0.3;
}

.manager__form .manager__form-list {
  display: none;
}

.manager__form.show-client .manager__form-list {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  width: 100%;
}

.login-dropdown .manager__form-list li {
  margin-bottom: 8px;
  font-family: "Circe-Regular";
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  cursor: pointer;
}

.login-dropdown .manager__form-list li:hover {
  color: #D62631;
  transition: 0.3s;
}

.login-dropdown .manager__form-list li:last-child {
  margin-bottom: 0;
}

.behalf-client {
  /*display: none;*/
  flex-direction: column;
  width: 243px;
}
.login-dropdown a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: "Circe-Regular";
    font-size: 16px;
}
.login-lk {
    margin-bottom: 16px;
}

.login-dropdown .behalf-client__row {
  margin-bottom: 16px;
}

.login-dropdown .behalf-client__row a {
  text-decoration: none;
}

.login-dropdown .behalf-client__row-title {
  margin: 0 0 4px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.login-dropdown .behalf-client__row-desc {
  margin: 0;
  font-family: "Circe-Regular";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.behalf-client__border-wrapper {
  padding-top: 16px;
  border-top: 1px solid rgba(52, 52, 52, 0.2);
}

.behalf-client__btn-out,
.behalf-client__btn-select {
  display: inline-block;
  font-family: "Circe-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #D62631;
  text-decoration: none;
  cursor: pointer;
}
.behalf-client__btn-out:hover ,
.behalf-client__btn-select:hover {
  transition: 0.3s;
  color: #A4282E;
}

.behalf-client__btn-out {
  margin-bottom: 16px;
}

.header-nav-right-icons .icon-cart {
	font-family:Circe-Bold-Old;
    width: 26px;
    height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../img/iconCart.svg);
    color: white;
    font-size: 12px;
    text-decoration: none;
}

.header-nav-right-icons .icon-search {
    width: 16px;
    height: 16px;
    display: block;
    background: url(../img/iconSearch.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-nav .multiple:hover .dropdown-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  border-bottom: 1px solid #e5e5e5;
}

.header-nav .dropdown-container {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-bottom: 40px;
    z-index: 500;
    position: absolute;
    top: 74px;
    left: 0;
    background: white;
}

.header-nav .dropdown {
    max-width: 100%;
    width: 1392px;
    padding: 40px 40px 0 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-nav .dropdown>li {
    margin-right: 55px;
}

.header-nav .dropdown a {
    font-size: 16px;
}

.header-nav .dropdown a:hover {
    color: #a4282e;
    border-bottom: 1px dashed #a4282e;
}

.header-nav .dropdown ul {
    list-style-type: none;
}

.header-nav .dropdown ul li:not(:last-child) {
    margin-bottom: 15px;
}

.header-nav .dropdown .catalog_link {
    width: 13.2%;
    height: 24px;
    display: block;
}

.header-nav .dropdown-lvl_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header-nav .dropdown-lvl_1 a {
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    width: max-content;
}

.header-nav .dropdown-lvl_1-title {
    font-family: "Circe-Bold";
    margin-bottom: 15px;
}

.header-nav .dropdown-lvl_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.header-nav .dropdown-lvl_2-title {
    font-family: "Circe-Regular";
}

.header-nav .more_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    width: 1392px;
    margin: 0 auto;
    padding: 42px 42px 0 42px;
    line-height: 30px;
}

.header-nav .more_info .gap {
    width: 13.2%;
}

.header-nav .more_info a {
    font-family: 'Circe-Regular';
}

.header-nav .more_info a:not(:last-child) {
    margin-right: 16px;
}

.header-nav .more_info a:hover {
    color: #a4282e;
    border-bottom: none;
}

.header-nav .multiple.company .dropdown ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.header-nav .multiple.company .dropdown ul li {
    margin-right: 40px;
}

.header-nav .multiple.company .more_info {
    padding-top: 16px;
}

.header .active {
    opacity: 1;
    width: 74%;
}

.header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    overflow: hidden;
    width: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Circe-Regular";
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    -webkit-transition: width 700ms ease-in, opacity 1s ease-out;
    transition: width 700ms ease-in, opacity 1s ease-out;
}

.header-search::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 15px;
    background: url(../img/iconSearch.svg);
}

.header-search input {
    width: 83%;
    height: 24px;
    padding-left: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: "Circe-Regular";
    font-size: 16px;
    font-weight: 400;
    border: none;
    outline: none;
}

.header-search_button {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #d62631;
    text-decoration: none;
}

.footer {
    background: #343434;
    color: white;
}

.footer-top {
    height: 100%;
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-list-title {
    margin: 0 0 30px 0;
    font-family: "Circe-Bold";
    font-size: 24px;
}

.footer-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-list ul li:not(:last-child) {
    margin-bottom: 25px;
}

.footer-list ul li a {
    font-family: "Circe-Regular";
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.footer-list ul li:hover a {
    color: #999999;
}

.footer-list .callback_mobile {
    margin-top: 30px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-list .callback_mobile a {
    display: block;
    font-family: "Circe-Regular";
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.footer-list .callback_mobile a:hover {
    color: #999999;
}

.footer-list .callback_mobile a:not(:last-child) {
    margin-bottom: 15px;
}

.footer .adress_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .adress_block-top-adress {
    margin-top: 30px;
    font-family: "Circe-Regular";
    font-size: 16px;
    line-height: 30px;
    color: white;
}

.footer .adress_block-bot a {
    display: block;
    font-family: "Circe-Bold";
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.footer .adress_block-bot a:not(:last-child) {
    margin-bottom: 10px;
}

.footer .adress_block-bot a:hover {
    color: #999999;
}

.footer .contacts_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .contacts_block-top .numbers a {
    display: block;
    font-family: "Circe-Bold";
    font-size: 32px;
    color: white;
    text-decoration: none;
}

.footer .contacts_block-top:hover {
    color: #999999;
}

.footer .contacts_block-top .callback {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.footer .contacts_block-top .callback a {
    display: block;
    font-family: "Circe-Regular";
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.footer .contacts_block-top .callback a:hover {
    color: #999999;
}

.footer .contacts_block-top .callback a:not(:last-child) {
    margin-bottom: 15px;
}

.footer .contacts_block-bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer .contacts_block-bot a:not(:last-child) {
    margin-right: 15px;
}

.footer-bot {
    padding-top: 65px;
    padding-bottom: 40px;
}

.footer-copyright {
    margin-bottom: 0;
    font-family: "Circe-Regular";
    font-size: 14px;
    color: #999999;
}

.footer-politics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-politics>ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
}

.footer-politics>ul li:not(:last-child) {
    margin-right: 18px;
}

.footer-politics>ul a {
    font-family: "Circe-Regular";
    font-size: 14px;
    color: #999999;
    text-decoration: none;
}

.footer-politics>p {
    font-family: "Circe-Regular";
    font-size: 14px;
    color: #999999;
    margin: 0;
    padding: 0;
}

.footer-politics>p>a {
    font-family: "Circe-Regular";
    font-size: 14px;
    color: #999999;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.footer-politics>p.copyright {
    display: none;
}
.home-image{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    background-image: url('../img/main-screen_1.png');
    background-position: 28%;
    background-size: cover;
}
/* .home-image img{
    width: 100%;
    object-fit: cover;
} */

.home-video {
    height: 100vh;
    position: relative;
    padding-top: 73px;
}

.home-video video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    left: -100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -100;
}

@media (max-width: 1299px) {
  .home-video video {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .home-video {
    height: 500px;
    padding-top: 0;
  }
  .home-video video{
    display: none;
  }
  .home-image{
    display: block;
  }
  .login-dropdown{
    right: -40px;
  }
}

.home-video .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
}

.home-video-content {
    max-width: 500px;
    margin-bottom: 55px;
}

.home-video-title {
    margin: 0;
    font-family: "Circe-Bold";
    font-size: 64px;
    color: white;
    line-height: 65px;
}

.home-video-descr {
    margin-bottom: 40px;
    font-family: "Circe-Regular";
    font-size: 24px;
    color: white;
}

.home-video-button {
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    /* background: #c51315; */
    background: #C51315;
    font-family: "Circe-Regular";
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.home-video-button:hover {
    background: #a4282e;
}

.home-partner {
    background: #EFF2F9;
}

.home-partner .container {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-partner .about-company {
    font-family: "Circe-Regular";
    font-size: 24px;
    color: #D62631;
    text-decoration: none;
}

.home-partner .about-company:hover {
    color: #a4282e;
    -webkit-text-decoration: underline dashed;
    text-decoration: underline dashed;
}

.home-partner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-partner-left .your-partner {
    width: 220px;
    margin: 0;
    font-family: "Circe-Bold";
    font-size: 32px;
    color: black;
    line-height: 35px;
}

.home-partner-right {
    margin-left: 120px;
    width: 80%;
}

@media(max-width: 992px) {
    .home-partner-right {
        width: 100%;
    }
    [data-name = 'Состояние']::before{
        content: 'Состояние';
        position: absolute;
        top: -12px;
        z-index: 2;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'Толщина обода, мм']::before{
        content: 'Толщина обода, мм';
        position: absolute;
        top: -12px;
        z-index: 2;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'Разновидность']::before{
        content: 'Разновидность';
        position: absolute;
        top: -12px;
        z-index: 2;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'location']::before{
        content: 'Место продажи';
        position: absolute;
        z-index: 2;
        top: -11px;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'Срок службы, лет']::before{
        content: 'Срок службы, лет';
        position: absolute;
        z-index: 2;
        top: -12px;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'data']::before{
        content: 'Желаемая дата';
        position: absolute;
        z-index: 2;
        top: -11px;
        font-size: 14px;
        color: #999999;
    }

    [data-name = 'quantity']::before{
        content: 'Количество,шт';
        position: absolute;
        z-index: 2;
        top: -11px;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'price']::before{
        content: 'Стоимость, без НДС';
        position: absolute;
        z-index: 2;
        top: -15px;
        font-family: 'Circe-Regular';
        font-size: 14px;
        font-weight: 400;
        color: #999999;
    }
    [data-name = 'Класс']::before{
        content: 'Класс';
        position: absolute;
        z-index: 2;
        top: -12px;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'Вид детали']::before{
        content: 'Вид';
        position: absolute;
        z-index: 2;
        top: -12px;
        font-size: 14px;
        color: #999999;
    }
    [data-name = 'qnt']::before{
        content: 'Наличие,шт';
        position: absolute;
        z-index: 2;
        top: -11px;
        font-size: 14px;
        color: #999999;
    }
    #popupMainCalc .order-popup-details .right_params .col{
        position: relative;
    }
    #popupMainCalc .order-popup-details .left_params .col{
        position: relative;
    }
    .order-popup-details .order-popup-details-row .right_params .col{
        position: relative;
    }
    .order-popup-details .order-popup-details-row .left_params .col{
        position: relative;
    }
    .cookie-wrapper{
        left: 20px;
        right: 20px;
        margin: 0 auto;
    }
}


.home-partner-right ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
}

.home-partner-right ul li {
    margin: 0;
    position: relative;
    font-family: "Circe-Light";
    font-size: 22px;
    width: 33%;
}

.home-partner-right ul li::before {
    width: 8px;
    height: 10px;
    content: '';
    display: block;
    position: absolute;
    left: -22px;
    top: 9px;
    background: url(../img/partnerIconTriangle.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.home-partner-right ul li:first-child {
    margin-bottom: 65px;
}

.home-partner-right .about-company {
    display: none;
}

.home-details {
    height: 55vw;
    font-family: "Circe-Bold";
    color: white;
}

.home-details-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.home-details .tablet {
    display: none;
}

.home-details .mobile {
    display: none;
}

.home-details .detail-title {
    line-height: 35px;
    font-size: 32px;
    color: #fff;
}

.home-details .detail-subtitle {
    font-size: 22px;
    color: #fff;
}

.home-details a {
    overflow: hidden;
}

.home-details video {
    height: 100%;
    position: absolute;
    left: 0;
    width: auto!important;
    top: 0;
    outline: none;
    display: none;
    transform: scale(0.95) translate(-80px,2.7%);
}

.home-details .left:hover,
.home-details .right-top-1:hover,
.home-details .right-top-2:hover,
.home-details .right-bot-1:hover,
.home-details .right-bot-2:hover,
.home-details .right-bot-3:hover {
    background: #D62631;
}

.home-details .left:hover video,
.home-details .right-top-1:hover video,
.home-details .right-top-2:hover video,
.home-details .right-bot-1:hover video,
.home-details .right-bot-2:hover video,
.home-details .right-bot-3:hover video {
    display: block;
}

.home-details .left {
    width: 33.33%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    background: #242424;
}

.home-details .left img {
    max-width: 100%;
    height: 100%;
}

.home-details .left .desktop {
    height: 100%;
    max-width: none;
    transform: scale(0.95) translate(-80px, 2.7%);
}

.home-details .left .detail-title {
    position: absolute;
    top: 70px;
    left: 60px;
    z-index: 1;
}

.home-details .left .detail-subtitle {
    position: absolute;
    left: 60px;
    bottom: 32px;
    margin: 0;
}

.home-details .right {
    width: 66.67%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.home-details .right-top {
    width: 100%;
    height: 52%;
}

.home-details .right-top .detail-subtitle {
    position: absolute;
    left: 32px;
    bottom: 32px;
    margin: 0;
}

.home-details .right-top-1 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: #2d2d2d;
}

.home-details .right-top-1 img {
    max-width: 100%;
    height: 100%;
}

.home-details .right-top-1 .desktop {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
    transform: scale(.9) translate(0px, -7%);
}

.home-details .right-top-1 video {
    width: 100%;
    transform: scale(0.7) translate(-16%,-7%);
}

.home-details .right-top-2 {
    display: none;
    position: relative;
    background: #2d2d2d;
}

.home-details .right-top-2 img {
    max-width: 100%;
    height: 100%;
}

.home-details .right-top-2 .detail-subtitle {
    position: absolute;
    margin: 0;
}

.home-details .right-bot {
    width: 100%;
    height: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-details .right-bot .detail-subtitle {
    position: absolute;
    left: 32px;
    bottom: 32px;
    margin: 0;
    line-height: 24px;
}

.home-details .right-bot-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 25%;
    height: 100%;
    background: #1d1d1d;
}

.home-details .right-bot-1 img {
    height: 100%;
    transform: scale(.8) translateY(-15%);
}

.home-details .right-bot-1 video {
    position: absolute;
    /* left: 50%; */
    -webkit-transform: translate(0%,-13%);
    transform: scale(.8) translate(0%,-15%);
}

.home-details .right-bot-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 25%;
    height: 100%;
    background: #1d1d1d;
}

.home-details .right-bot-2 img {
    max-width: 100%;
    height: 100%;
    transform: scale(.7) translateY(-17%);
}

.home-details .right-bot-2 video {
    position: absolute;
    /* left: 50%; */
    -webkit-transform: translate(0%, -17%);
    transform: scale(.7) translate(0%, -17%);
}

.home-details .right-bot-3 {
    width: 50%;
    height: 100%;
    background: #1d1d1d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.home-details .right-bot-3 img {
    max-width: 100%;
    height: 100%;
}

.home-details .right-bot-3 .desktop {
    width: 100%;
    height: auto;
    transform: scale(1.13) translate(6%,0%);
}

.home-details .right-bot-3 video {
    width: 100%;
    -o-object-position: right;
    object-position: right;
    transform: scale(1) translate(0%,0);
}

.home-services {
    position: relative;
    height: 1068px;
    overflow-x: hidden;
}

.home-services .container {
    height: 100%;
    padding-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.home-services-title {
    margin: 0 0 35px 0;
    font-family: "Circe-Bold";
    font-size: 32px;
    font-weight: 700;
}

.home-services-descr {
    margin: 0;
    max-width: 500px;
    font-family: "Circe-Light";
    /*font-size: 49px;*/
    font-size: 43px;
    font-weight: 400;
}

.home-services-platform {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
}

.home-services-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: "Circe-Light";
    font-size: 22px;
}

.home-services-list li {
    padding: 16px 64px 16px 0;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-transition: opacity .3s, -webkit-transform .8s;
    transition: opacity .3s, -webkit-transform .8s;
    transition: opacity .3s, transform .8s;
    transition: opacity .3s, transform .8s, -webkit-transform .8s;
}

.home-services-list li:not(:last-child) {
    border-bottom: 1px solid rgba(52, 52, 52, 0.2);
}

.home-services-list li:hover {
    background: #c51315;
    color: white;
    padding-left: 8px;
    padding-right: 56px;
}

.home-services-list li:hover a {
    color: white;
}

.home-services-list li a {
    display: block;
    width: 100%;
    color: black;
    text-decoration: none;
}

.home-services-list.show-items li {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.home-company{
    position: relative;
    height: 36.5vw;
    background: url("../img/homeCompanyText.png") left center / auto 100% repeat-x;
}
.home-company-left {
    width: 35%;
    padding-left: 40px;
    padding-right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    background: url("../img/homeCompanyText.png");
}

.home-company-right {
    width: 65%;
    height: 100.5%;
    position: absolute;
    top: 0;
    right: 0;
}

.home-company-right img {
    width: 100%;
    height: 100%;
}

.home-company-right video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.home-company .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    padding: 0;
    height: 100%;
}

.home-company-title {
    margin-top: 0;
    padding-top: 60px;
    font-family: "Circe-Bold";
    font-size: 32px;
}

.home-company-descr {
    margin-bottom: 35px;
    max-width: 430px;
    font-family: "Circe-Light";
    font-size: 24px;
}

.home-company .more_button {
    width: 136px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: #c51315;
    font-family: "Circe-Regular";
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.home-company .more_button:hover {
    background: #a4282e;
}

.mobile_menu {
    display: none;
    width: 100%;
    margin: 0 auto;
}

.mobile_menu-content {
    height: 80px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(52, 52, 52, 0.1);
}

.mobile_menu-dropdown {
    padding-bottom: 60px;
}

.mobile_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mobile_menu-arrow {
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/headerMenuArrowDown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px 5px;
}

.mobile_menu-lvl_1-title {
    margin: 0;
    padding: 20px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(52, 52, 52, 0.1);
    font-family: "Circe-Bold";
    font-size: 16px;
    text-decoration: none;
    color: black;
}

.mobile_menu-lvl_2 {
    display: none;
}

.mobile_menu-lvl_2-title {
    margin: 0;
    padding: 20px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(52, 52, 52, 0.1);
    font-family: "Circe-Light";
    font-size: 16px;
    text-decoration: none;
    color: black;
}

.mobile_menu-lvl_3 {
    display: none;
}

.mobile_menu-lvl_3-title {
    margin: 0;
    padding: 5px 20px 5px 30px;
    display: block;
    position: relative;
    font-family: "Circe-Light";
    font-size: 16px;
    text-decoration: none;
    color: black;
}

.mobile_menu-lvl_3-title:first-child {
    padding-top: 20px;
}

.mobile_menu-lvl_3-title:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.1);
}

.mobile_menu-lvl_3-title a {
    width: 100%;
    display: block;
    text-decoration: none;
    color: black;
}

.mobile-fake-space {
    display: none;
}
@media (max-width: 767px) {
    .mobile-fake-space {
        display: block;
        width: 100%;
        height: 80px;
    }
}
.mobile_menu-nav {
    position: relative;
}

.mobile_menu-nav .mobile_menu-dropdown {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile_menu-nav .mobile_menu-dropdown.opening {
    display: block;
    height: 30px;
}

.mobile_menu .menu-toggle {
    display: none;
    position: absolute;
    padding-top: 1.4em;
    top: 1em;
    left: 20px;
    cursor: pointer;
}

.mobile_menu .hamburger,
.mobile_menu .hamburger::before,
.mobile_menu .hamburger::after {
    content: '';
    display: block;
    background: black;
    height: 2px;
    width: 2em;
    border-radius: 3px;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}

.mobile_menu .hamburger::before {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
}

.mobile_menu .hamburger::after {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

.mobile_menu .open .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile_menu .open .hamburger::before {
    display: none;
}

.mobile_menu .open .hamburger::after {
    height: 2px;
    -webkit-transform: translateY(-1px) rotate(-90deg);
    transform: translateY(-1px) rotate(-90deg);
}

.mobile_menu-portal_contacts {
    padding: 0 20px;
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile_menu-portal_contacts a {
    display: block;
    font-family: "Circe-Light";
    font-size: 16px;
    color: black;
    text-decoration: none;
}

.mobile_menu-portal_contacts a:not(:last-child) {
    margin-bottom: 25px;
}

.mobile_menu-search {
    margin-top: 35px;
    padding: 0 20px;
    position: relative;
}

.mobile_menu-search::after {
    content: '';
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 20px;
    top: 18px;
    background: url(../img/iconSearch.svg);
}

@media(max-width: 992px) {
    .header-search_button {
        content: '';
        display: block;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 30px;
        top: 18px;
        font-size: 0;
        background: url(../img/iconSearch.svg);
    }
}

.mobile_menu-search input {
    width: 100%;
    height: 48px;
    padding-left: 15px;
    position: relative;
    border: none;
    background: #f5f5f5;
    border-radius: 3px;
    font-family: "Circe-Light";
    font-size: 14px;
    outline: none;
}

.select2-container {
    min-width: 380px;
    max-width: 380px;
}

.select2-results__option {
    padding-right: 20px;
    padding-bottom: 0 !important;
    vertical-align: middle;
}

.select2-results__option:not(:last-child) {
    margin-bottom: 10px !important;
}

.select2-results__option:not(.select2-results__message)::before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 1px solid #3d3d3d;
    border-radius: 3px;
    margin-right: 20px;
    vertical-align: middle;
}

.select2-results__option:hover:before {
    border: 1px solid #d62531;
}

.select2-results__option[aria-selected=true]:before {
    content: '';
    color: #fff;
    background: #d62531 url(../img/checkMark.svg) no-repeat center;
    border: 0;
    display: inline-block;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid rgba(0, 0, 0, 0.0001) !important;
    border-bottom: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 9.5px 16px !important;
    position: relative;
}

.select2-container--default .select2-selection--multiple::after {
    content: '';
    display: block;
    width: 10px;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 55%;
    transform: translateY(-50%);
    background: url(../img/triangle-icon.svg) no-repeat center;
    cursor: pointer;
}

.catalog-filters-item .select2-container--default .select2-selection--multiple::after {
  top: 50%;
}

.catalog-filters-item .select-block .number {
  right: 36px;
}

.catalog-filters--sales-parts-list .select2-container--default .select2-selection--multiple::after {
  background: url("../img/catalog/filter-triangle.svg") no-repeat center;
  cursor: pointer;
}

.catalog-filters--sales-parts-list .select2-container .select2-selection--multiple {
  padding: 6.5px 16px !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 2px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-width: 2px;
}

.select2-container--default .select2-selection--multiple {
    border-width: 2px;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 2px;
}

.select2-selection__choice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Circe-Regular' !important;
    border: none !important;
    background: none !important;
}

.select2-results__option {
    font-family: 'Circe-Regular' !important;
}

.select2-selection__choice__remove {
    width: 10px !important;
    flex: 0 0 10px;
    height: 10px !important;
    margin-left: 2px !important;
    display: none !important;
    color: white !important;
    background: url(../img/closeMark.svg) no-repeat center !important;
    font-size: 0;
}

.tab .select2-selection__choice__remove {
    display: block !important;
}

.select2-selection__choice__remove:hover {
    z-index: 2;
}

.catalog-filters-item--location .select2-container--default .filters-location.select2-selection--single {
  height: 50px;
  border: none;
}

.catalog-filters-item--location .select2-container .select2-selection--single .select2-selection__clear {
  position: absolute;
  z-index: 1;
  right: 25px;
  top: 13px;
  display: block!important;
  width: 20px;
  height: 20px;
  font-size: 0;
  font-weight: 400;
  background: url("/local/templates/main/img/closeMark.svg") #fff no-repeat center;
}

.catalog-filters-item--location .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #d62631;
}

.select2-search__field:focus-visible {
  outline: none;
}

.select2-container--default .filters-location.select2-selection--single .select2-selection__rendered {
  padding: 11px 16px;
}

.catalog-filters-item--location .select2-container--default .filters-location.select2-selection--single:focus-visible {
  outline: none;
}

.select2-container--default .filters-location.select2-selection--single::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 22px;
  background: url("../img/catalog/filter-triangle.svg") no-repeat center;
  cursor: pointer;
}

.filters-location-dropdown .select2-results__option::before {
  content: none;
}

.filters-location-dropdown .select2-results__option {
  padding-left: 0!important;
}

.filters-location-dropdown .select2-results__option.select2-results__option--highlighted:hover {
  color: #D62631 !important;
  transition: 0.3s;
}

.filters-location-dropdown .select2-search--dropdown {
  display: block!important;
}

.select2-dropdown {
    border-left: 1px solid #ebebeb !important;
    border-right: 1px solid #ebebeb !important;
    border-bottom: 1px solid #ebebeb !important;
    border-radius: 0 0 2px 2px;
}

.select2-results__options {
    padding: 25px 20px !important;
    max-height: 223px !important;
    overflow-x: hidden;
    overflow-y: auto;
    word-break: break-all;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: none !important;
    color: black !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: none !important;
    color: black !important;
}

.select2-container--default .select2-selection--multiple {
    position: relative;
}

.select2-container--default .select2-selection--multiple:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 115px;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, color-stop(45.58%, #FFFFFF), color-stop(57.11%, rgba(255, 255, 255, 0.75)), color-stop(79.59%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 45.58%, rgba(255, 255, 255, 0.75) 57.11%, rgba(255, 255, 255, 0) 79.59%);
}

.select2-selection__clear {
    display: none;
}

.select2-selection__rendered {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start !important;
    padding-left: 0px !important;
    color: #343434 !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-family: 'Circe-Regular';
}

.catalog-filters--sales-parts-list .select2-search__field::placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #343434 !important;
  opacity: 0.6;
}

.select-block {
    position: relative;
}

.select-block .number {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 25px;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 16px;
    background: #EBEBEB;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.rd-order-list .select-block .number {
  right: 46px;
}

.select-block.hidden-content .number {
    opacity: 1;
    pointer-events: all;
}

.select-block.show-all .select2-selection__rendered {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.select-block.show-all .number {
    opacity: 0;
}

.select-block.show-all .select2-container--default .select2-selection--multiple:before {
    opacity: 0;
}

.order-popup {
    width: 100%;
    background: #f9f9f9;
}

.order-popup .condition .select2-container {
    min-width: 100%;
    max-width: 100%;
}

.order-popup .size {
    font-size: 19px;
}

/*.order-popup .size .select2-container {*/
/*    min-width: 200px;*/
/*    max-width: 220px;*/
/*}*/

.order-popup .star {
    font-family: "Arial";
    color: #d62631;
}

.order-popup .select2-container--default .select2-selection--multiple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none !important;
}

.order-popup .select2-container--default .select2-selection--multiple::after {
    top: 30px;
}

.order-popup .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 14px 5px;
}

.order-popup .select2-container--default .select2-selection--multiple:hover {
    border: none !important;
}

.order-popup .select2-container .select2-selection--multiple {
    padding: 0 10px 0 0 !important;
}

.order-popup .select2-dropdown {
    border-top: none !important;
}

.order-popup-header {
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #343434;
}

.order-popup-header-title {
    margin: 0;
    padding: 32px 0;
    font-family: "Circe-Bold";
    font-size: 32px;
    color: white;
}

.order-popup-header-close {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/popup-close.svg);
    text-decoration: none;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
}

.order-popup-content {
    padding: 56px 32px 42px 32px;
}

.order-popup-add_detail {
    padding: 0 32px;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-popup-add_detail-title {
    margin-right: 24px;
    font-family: "Circe-Bold";
    font-size: 24px;
}

.order-popup-add_detail-selects .dropdown-search {
    position: relative;
}


/* .order-popup-add_detail-selects::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/triangle-icon.svg");
  cursor: pointer;
} */

.order-popup-add_detail-selects input {
    width: 460px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px 0 16px;
    font-family: "Circe-Regular";
    font-size: 20px;
    outline: none;
    border-radius: 2px;
    border: none;
    background: white;
}

.order-popup-add_detail-selects input::-webkit-calendar-picker-indicator {
    display: none;
}

.order-popup-delivery {
    padding-bottom: 56px;
    border-bottom: 2px solid #343434;
}

.order-popup-delivery-title {
    font-family: "Circe-Bold";
    font-size: 24px;
    margin: 0;
}

.order-popup-delivery-selects {
    padding-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.order-popup-delivery-selects p {
    margin: 0;
    font-family: "Circe-Regular";
    font-size: 16px;
}

.order-popup-delivery-selects p sup{
    font-family: "Arial";
    color: #D62631;
}

.order-popup-delivery-selects p:not(:last-child) {
    margin-bottom: 16px;
}

.order-popup-delivery-selects .select {
    margin-right: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.order-popup-delivery-selects .depo .dropdown-search {
    position: relative;
}

.order-popup-delivery-selects .depo .dropdown-search input {
    width: 362px;
    padding: 8px 0 8px 18px;
    position: relative;
    outline: none;
    font-family: "Circe-Regular";
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.0001);
    border-radius: 2px;
}

.order-popup-delivery-selects .depo .dropdown-search::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 6px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: url(/local/templates/main/img/triangle-icon.svg) #fff no-repeat center right 15px;
    cursor: pointer;
}


.order-popup-delivery-selects .depo .dropdown-search input::-webkit-calendar-picker-indicator {
    display: none;
}

.order-popup-delivery-selects .depo .dropdown-search input:hover {
    border: 1px solid #d6d6d6;
}

.order-popup-delivery-selects .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-popup-delivery-selects .date input {
    padding: 8px 0 8px 18px;
    position: relative;
    border: 1px solid transparent;
    outline: none;
    font-family: "Circe-Regular";
    color: rgba(52, 52, 52, 0.7);
    font-size: 16px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
}

.order-popup-delivery-selects .date input::-webkit-calendar-picker-indicator {
    top: 8px;
    left: -35px;
    right: 0;
    bottom: 0;
    cursor: pointer;
    width: 173px;
    position: absolute;
    transform: rotateY(180deg);
}

.order-popup-delivery-selects .date input::-webkit-calendar-picker-indicator:hover {
    cursor: pointer;
}

.order-popup-delivery-selects .date input:hover {
    border: 1px solid #d6d6d6;
}

.order-popup-details {
    padding: 0 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 20px;
}

.order-popup-details-header {
    padding: 0 24px 0 32px;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex ;
    font-family: "Circe-Bold";
    font-size: 16px;
    line-height: 100%;
}

.order-popup-details .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-popup-details-row {
    min-height: 76px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: white;
    padding: 0 24px 0 32px;
    font-family: "Circe-Regular";
}

.order-popup-details-row:not(:last-child) .col {
    /* min-height: 63px; */
    /* border-bottom: 1px solid #e5e5e5; */
}

/*.order-popup-details .col-1 {*/
/*    width: 20.5%;*/
/*}*/

/*.order-popup-details .col-2 {*/
/*    width: 21.5%;*/
/*}*/

/*.order-popup-details .col-3 {*/
/*    width: 17.5%;*/
/*}*/

/*.order-popup-details .col-4 {*/
/*    width: 26%;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*}*/

/*.order-popup-details .col-5 {*/
/*    width: 9.5%;*/
/*    font-family: 'Circe-Bold';*/
/*}*/

/*.order-popup-details .col-6 {*/
/*    width: 5%;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*}*/

.order-popup-details .col-6 button {
    border: none;
    outline: none;
    cursor: pointer;
}

.order-popup-details .col-6 .copy {
    position: relative;
    width: 13px;
    height: 16px;
    background: url("../img/order-popup-copy.svg") no-repeat center;
}

.order-popup-details .copy::before {
    position: absolute;
    content: "Копировать";
    top: -40px;
    right: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 106px;
    height: 35px;
    font-family: "Circe-Regular";
    font-size: 14px;
    line-height: 150%;
    color: #343434;
    opacity: 0;
    pointer-events: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.order-popup-details .col-6 .copy:hover::before {
    opacity: 1;
    transition: 0.4s;
}

.order-popup-details .col-6 .delete {
    width: 10px;
    height: 10px;
    background: url("../img/order-popup-close.svg") no-repeat center;
}


/*Калькулятор на стр каталога*/
.order-popup-details .left_params {
    display: flex;
    align-items: center;
    width: 44%;
}
.order-popup-details .left_params .col:nth-child(1) {
    width: 46%;
}
.order-popup-details .left_params .col:nth-child(2) {
    width: 30%;
    /* flex-grow: 1; */
}
.order-popup-details .left_params .col:nth-child(3) {
    width: 24.8%;
}

.order-popup-details .order-popup-details-header .left_params .col:nth-child(3) {
    padding-right: 25px;
}

.order-popup-details .right_params {
    display: flex;
    align-items: center;
    width: 56%;
}
.check_areas.dt::placeholder{
color: #d62631;
}
.order-popup-details .right_params .col:nth-child(1) {
    width: 13.2%;
    line-height: 99%;
}
.order-popup-details .right_params .col:nth-child(2) {
    width: 31.7%;
}
.order-popup-details .right_params .col:nth-child(3) {
    width: 18.3%;
}
.order-popup-details .right_params .col:nth-child(4) {
    width: 16.5%;
}
.order-popup-details .right_params .col:nth-child(5) {
    width: 17.2%;
}
.order-popup-details .right_params .col:nth-child(6) {
    width: 3.4%;
}
.order-popup-details-row .col {
    align-items: center;
	font-size:18px;
}
.order-popup-details .right_params .col:nth-child(5) {
    width: 17.2%;
    font-weight: bold;
    font-size: 16px;
    line-height: 100%;
    color: #343434;
}
.order-popup-details .right_params .col.col-8.location {
    font-size: 20px;
}
/*Калькулятор на главной*/
#popupMainCalc .select2-container--default .select2-selection--multiple::before {
    background: linear-gradient(270deg, #FFFFFF 45%, rgba(255, 255, 255, 0) 100%);
}

#popupMainCalc .order-popup-details .left_params {
    display: flex;
    width: 44%;
}
#popupMainCalc .order-popup-details .left_params .col:nth-child(1) {
    width: 37%;
}
#popupMainCalc .order-popup-details .left_params .col:nth-child(2) {
    width: 40%;
    /* flex-grow: 1; */
}
#popupMainCalc .order-popup-details .left_params .col:nth-child(3) {
    width: 28.8%;
}

#popupMainCalc .order-popup-details-header .left_params .col:nth-child(3) {
    padding-right: 25px;
}

#popupMainCalc .order-popup-details .right_params {
    display: flex;
    width: 56%;
    padding: 6px 0;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(1) {
    width: 13.2%;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(2) {
    width: 31.7%;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(3) {
    width: 18.3%;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(4) {
    width: 15.5%;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(5) {
    width: 16.2%;
    font-size: 16px;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(5).price {
    font-size: 18px;
}
#popupMainCalc .order-popup-details .right_params .col:nth-child(6) {
    justify-content: space-between;
    width: 5.4%;
}

#popupMainCalc .order-popup-delivery-selects .date {
    width: 250px;
}

.order-popup-details .condition {
    font-size: 19px;
}

.order-popup-details .location .dropdown-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-popup-details .location .dropdown-search input {
    width: 175px;
    font-family: 'Circe-Regular';
    font-size: 18px;
    border: none;
    outline: none;
    position: relative;
}

.order-popup-details .location .dropdown-search input::placeholder {
    color: #d62631;
}

.order-popup-details .location .dropdown-search input::-webkit-calendar-picker-indicator {
    display: none;
}

.order-popup-details .location .dropdown-search span {
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background: url("../img/edit-icon.svg");
    cursor: pointer;
}

.order-popup-details .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-popup-details .date input {
    border: none;
    outline: none;
    font-family: "Circe-Regular";
    font-size: 18px;
    position: relative;
    background-color: #fff;
}

.order-popup-details .date input::-webkit-calendar-picker-indicator {
    top: 0;
    left: -25px;
    right: 0;
    bottom: 0;
    cursor: pointer;
    width: 122px;
    position: absolute;
    transform: rotateY(180deg);
}

.order-popup-details .date input::-webkit-inner-spin-button,
.order-popup-details .date input::-webkit-clear-button {
    z-index: 1;
}

.order-popup-details .quantity {
    height: 50px;
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-popup-details .quantity-num {
    width: 55px;
    border: none;
    text-align: center;
    font-family: "Circe-Regular";
    font-size: 18px;
    outline: none;
}

.order-popup-details .quantity-num::-webkit-inner-spin-button,
.order-popup-details .quantity-num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.order-popup-details .quantity-minus {
    margin-left: 15px;
    font-size: 20px;
}

.order-popup-details .quantity-plus {
    margin-right: 15px;
    font-size: 25px;
}

.order-popup-details .quantity .sign {
    width: 12px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border: none;
    font-family: "Circe-Bold";
    font-size: 20px;
    color: #d62631;
    outline: none;
    cursor: pointer;
}

.order-popup-details .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-popup-buttons {
    padding: 56px 32px 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-popup-buttons-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    width: 65%;
    margin: 0 16px 0 0;
}

.order-popup-buttons-left a {
    width: 210px;
    height: 50px;
    margin-right: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-family: "Circe-Regular";
    font-size: 16px;
    text-decoration: none;
    color: #d62631;
    border: 1px solid #d62631;
    border-radius: 2px;
}

.order-popup-buttons-left a:nth-child(2) {
    width: 230px;
}

.order-popup-buttons-left a:hover {
    background: #a4282e;
    color: white;
    border: 1px solid #a4282e;
}

.order-popup-buttons-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
}

.order-popup-buttons-right .attention {
    width: 190px;
    margin: 0 0 0 16px;
    font-family: "Circe-Regular";
    font-size: 16px;
    color: #343434;
    line-height: 18px;
}

.order-popup-buttons-right .add-order {
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #c4c4c4;
    font-family: "Circe-Regular";
    font-size: 16px;
    color: white;
    text-decoration: none;
    border-radius: 2px;
}

.order-popup_mobile {
    padding: 0 16px;
    display: none;
}

.order-popup_mobile-title {
    font-family: "Circe-Bold";
    font-size: 24px;
}

.order-popup_mobile-delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    color: #999999;
}

.order-popup_mobile-delivery .depo {
    width: 100%;
    margin-right: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.order-popup_mobile-delivery .date {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.order-popup_mobile-delivery .date input {
    font-family: "Circe-Regular";
    font-size: 20px;
    border: none;
    outline: none;
}

.order-popup_mobile-delivery .date input::-webkit-calendar-picker-indicator:hover {
    cursor: pointer;
}

.order-popup_mobile-add_detail {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.order-popup_mobile-add_detail-title {
    font-family: 'Circe-Bold';
    font-size: 24px;
}

.order-popup_mobile-add_detail-selects .dropdown-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-popup_mobile-add_detail-selects input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 0 3px 0;
    font-family: 'Circe-Regular';
    font-size: 20px;
    color: black;
    border: none;
    background: none;
    outline: none;
}

.order-popup_mobile-add_detail-selects input::-webkit-calendar-picker-indicator {
    display: none;
}

.order-popup_mobile-add_detail-selects span {
    display: block;
    width: 10px;
    height: 8px;
    margin-left: 6px;
    background: url(../img/triangle-icon.svg) no-repeat center;
    cursor: pointer;
}

.order-popup_mobile .depo .dropdown-search,
.order-popup_mobile .location .dropdown-search {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Circe-Regular";
    color: black;
    position: relative;
}

.order-popup_mobile .depo .dropdown-search input,
.order-popup_mobile .location .dropdown-search input {
    width: 100%;
    padding: 3px 0 3px 20px;
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
}

.order-popup_mobile .depo .dropdown-search input::-webkit-calendar-picker-indicator,
.order-popup_mobile .location .dropdown-search input::-webkit-calendar-picker-indicator {
    display: none;
}

.order-popup_mobile .depo .dropdown-search::before,
.order-popup_mobile .location .dropdown-search::before {
    content: '';
    display: block;
    width: 12px;
    height: 17px;
    position: absolute;
    left: 0;
    background: url("../img/location-icon-black.svg") no-repeat center;
}

.order-popup_mobile .depo .dropdown-search span,
.order-popup_mobile .location .dropdown-search span {
    display: block;
    width: 10px;
    height: 8px;
    margin-left: 6px;
    background: url(../img/triangle-icon.svg) no-repeat center;
    cursor: pointer;
}

.order-popup_mobile-details .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
}

.order-popup_mobile-details:not(:last-child) {
    margin-bottom: 32px;
}


/* .order-popup_mobile-details:not(:nth-child(-n+3))>div {
    width: 48%;
} */

.order-popup_mobile-details-1>div {
    width: 100%;
}

.order-popup_mobile-details-1>div:first-child {
    margin-right: 42px;
}

.order-popup_mobile-details-2>div {
    width: 100%;
}

.order-popup_mobile-details-2>div:first-child {
    margin-right: 42px;
}

.order-popup_mobile-details-3 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.order-popup_mobile-details-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-popup_mobile-details-4 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #D62631;
    text-decoration: none;
}

.order-popup_mobile-details-4 .delete::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background: url(../img/order-popup-delete.svg) no-repeat center;
}

.order-popup_mobile-details .condition {
    font-size: 20px;
}

.order-popup_mobile-details .date {
    font-size: 20px;
}

.order-popup_mobile-details .detail {
    padding: 32px 0;
}

.order-popup_mobile-details .detail:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.order-popup_mobile-details .detail-title {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 14px;
    color: #999999;
}

.order-popup_mobile-details .date input {
    width: 100%;
    font-family: "Circe-Regular";
    font-size: 16px;
    border: none;
    outline: none;
}

.order-popup_mobile-details .date input::-webkit-calendar-picker-indicator:hover {
    cursor: pointer;
}

.order-popup_mobile-details .quantity {
    height: 50px;
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #d6d6d6;
}

.order-popup_mobile-details .quantity-num {
    width: 55px;
    border: none;
    text-align: center;
    font-family: "Circe-Bold";
    font-size: 20px;
    outline: none;
}

.order-popup_mobile-details .quantity-num::-webkit-inner-spin-button,
.order-popup_mobile-details .quantity-num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.order-popup_mobile-details .quantity-minus {
    margin-left: 15px;
    font-size: 20px;
}

.order-popup_mobile-details .quantity-plus {
    margin-right: 15px;
    font-size: 25px;
}

.order-popup_mobile-details .quantity .sign {
    width: 12px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border: none;
    font-family: "Circe-Bold";
    font-size: 20px;
    color: #d62631;
    outline: none;
    cursor: pointer;
}

.order-popup_mobile-details .select2-selection__rendered {
    padding: 0 !important;
}

.order-popup_mobile-details .select2-selection__choice {
    padding-left: 0 !important;
}

.order-popup_mobile-details .select2-container {
    min-width: 200px !important;
    max-width: none !important;
    width: 100% !important;
}

.order-popup_mobile-details .select2-container--default .select2-selection--multiple::after {
    right: 0;
    top: 12px;
    background: url(../img/triangle-icon.svg) no-repeat center;
}

.order-popup_mobile-details .price {
    margin-left: 16px;
}

.order-popup_mobile-details .price p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.order-popup_mobile-details .price span {
    font-family: "Circe-Bold";
    font-size: 28px;
}

.b-container {
    width: 200px;
    height: 150px;
    background-color: #ccc;
    margin: 0px auto;
    padding: 10px;
    font-size: 30px;
    color: #fff;
}

.b-popup {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: scroll;
    position: fixed;
    top: 0px;
    z-index: 301;
}

.b-popup .b-popup-content {
    height: 100%;
}

.b-popup .b-popup-content .container {
    margin-top: 10px;
    margin-bottom: 10px;
}
@media (max-width:1200px) {
    .order-popup-buttons{
        /* align-items: center; */
    }
    .order-popup-buttons-left{
        width: 50%;
        max-width: 250px;
        flex-direction: column;
        justify-content: flex-end;
    }
    .order-popup-buttons-left a{
        width: 100%;
        margin-right: 0;
        margin-top: 15px;
        
    }
    .order-popup-details .quantity-num{
        font-size: 16px;
    }
    .order-popup-details .order-popup-details-row .right_params .col:nth-child(5){
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .footer-list-title {
        font-size: 20px;
    }
    .footer-list ul li a {
        font-size: 13px;
    }
    .footer .contacts_block-top .numbers a {
        font-size: 28px;
    }
    .order-popup-details .right_params .col:nth-child(1){
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .order-popup {
        padding: 0;
        background: white;
    }
    .order-popup-header {
        padding: 0 16px;
    }
    .order-popup-header-title {
        padding: 17px 10px 17px 0;
        font-size: 28px;
        line-height: 100%;
    }
    .order-popup-details-header{
        display: none ;
    }
    .order-popup-details-row{
        flex-direction: column;
        padding: 10px 16px 0 16px;
    }
    #popupMainCalc .order-popup-details .left_params{
        flex-direction: column;
        width: 100%;
    }
    #popupMainCalc .order-popup-details .left_params .col:nth-child(1){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .left_params .col:nth-child(2){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .left_params .col:nth-child(3){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .left_params .col{
        border-bottom: 1px solid #e5e5e5;
        margin: 8px 0;
    }
    #popupMainCalc .order-popup-details .right_params{
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(1){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(2){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(3){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(4){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(5){
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(5).price{
        font-size: 28px;
    }
    #popupMainCalc .order-popup-details .right_params .col:nth-child(6){
        width: 100%;
        border-bottom: none;
    }
    #popupMainCalc .order-popup-details .right_params .col{
        border-bottom: 1px solid #e5e5e5;
        height: 50px;
        padding: 10px 0;
        margin: 8px 0;
        font-size: 20px;
    }
    .order-popup-details .quantity-num{
        font-size: 20px;
        height: 49px;
    }

    .order-popup-details .col-6 .delete{
        width: 30px;
        height: 30px;
        position: relative;
        background-position: right;
    }
    .order-popup-details .col-6 .delete::before{
        content: 'Удалить';
        position: absolute;
        top: 4px;
        left: -55px;
        font-family: 'Circe-Regular';
        font-size: 16px;
        color: #d62631;
    }
    .order-popup-details .col-6 .copy{
        width: 30px;
        height: 30px;
    }
    .order-popup-details .col-6 .copy::after{
        content: 'Копировать';
        position: absolute;
        top: 4px;
        right: -90px;
        font-family: 'Circe-Regular';
        font-size: 16px;
        color: #d62631;
    }
    
    .order-popup-content {
        /* display: none; */
    }
    .order-popup-details {
        /* display: none; */
        padding: 0;
    }
    .order-popup-add_detail.desktop {
        /* display: none; */
        flex-direction: column;
        padding: 0 8px ;
        margin-bottom: 0;
        align-items: flex-start;
    }
    .order-popup-add_detail-selects input{
        margin: 16px 0 0 0;
    }
    .order-popup_mobile {
        /* display: block; */
    }
    .order-popup-add_detail.mobile {
        /* display: block; */
    }
    .order-popup-buttons {
        padding: 64px 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .order-popup-buttons-left {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        max-width: none;
    }
    .order-popup-buttons-left a {
        margin: 15px 0 0 0;
    }
    .order-popup-buttons-right {
        margin-top: 70px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        flex-direction: column;
        
    }
    .order-popup-buttons-right .add-order {
        width: 100%;
    }
    .order-popup-buttons-right .attention{
        width: 100%;
        /* text-align: center; */
        margin: 16px 0;
        order: 1;
    }
    
    .order-popup-details .copy::before{
        display: none;
    }

    .order-popup-buttons {
        padding: 0px 8px 56px 8px;
    }

    .order-popup-details .quantity-minus {
        margin-left: 0;
    }
}

@media(max-width: 1024px) {
    .header {
        display: none;
    }
    .mobile_menu {
        display: block;
        background-color: #fff;
        position: fixed;
        z-index: 100;
    }
    .mobile_menu .menu-toggle {
        display: block;
    }
}

@media (max-width:992px) {
    .container {
        padding: 0 20px;
    }
    .title-wrapper {
        padding: 0;
    }
    .footer-top {
        padding-top: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-list .mobile_dropdown {
        border-bottom: 1px solid #484848;
    }
    .footer-list-title {
        font-size: 24px;
    }
    .footer-list ul {
        display: none;
    }
    .footer-list ul li a {
        font-size: 16px;
    }
    .footer-list ul li:first-child {
        margin-top: 10px;
    }
    .footer-list ul li:last-child {
        margin-bottom: 30px;
    }
    .footer-list .footer-list-title {
        margin: 0;
        padding: 15px 0;
        position: relative;
        font-size: 20px;
    }
    .footer-list .footer-list-title-arrow {
        display: block;
        width: 50px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: url("../img/footerMenuArrowDown.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 7px 5px;
    }
    .footer .adress_block-top-adress {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .footer .adress_block-bot a {
        margin: 0 !important;
        padding: 15px 0;
        font-size: 20px;
        border-bottom: 1px solid #484848;
    }
    .footer .adress_block-bot a:first-child {
        border-top: 1px solid #484848;
    }
    .order-popup-details-header{
        display: none !important;
    }

    .footer .contacts_block {
        margin-top: 55px;
    }
    .footer .contacts_block-top .numbers {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer .contacts_block-top a {
        font-size: 28px;
    }
    .footer .contacts_block-top .callback {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer .contacts_block-bot {
        margin-top: 35px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer .callback_mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-copyright {
        display: none;
    }
    .footer-politics {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-politics ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .footer-politics ul li:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .footer-politics>p.copyright {
        margin-top: 60px;
        margin-bottom: 20px;
        display: block;
    }
    .home-partner .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 35px;
    }
    .home-partner-left .your-partner {
        width: auto;
        margin-bottom: 30px;
    }
    .home-partner-left .about-company {
        display: none;
    }
    .home-partner-right {
        margin-left: 0;
    }
    .home-partner-right ul {
        margin-left: 30px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .home-partner-right ul li {
        margin-bottom: 30px;
        width: 40%;
    }
    .home-partner-right ul li:nth-child(1) {
        margin-bottom: 30px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .home-partner-right ul li:nth-child(2) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .home-partner-right ul li:nth-child(3) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .home-partner-right ul li:nth-child(4) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .home-partner-right ul li:nth-child(5) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .home-partner-right ul li:nth-child(6) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .home-partner-right .about-company {
        display: block;
    }
    .home-services {
        height: auto;
        padding-bottom: 260px;
    }
    .home-services .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-services-platform {
        height: 260px;
        object-fit: fill;
    }
    .home-services-title {
        margin-bottom: 20px;
        font-size: 28px;
    }
    .home-services-descr {
        margin-bottom: 20px;
        font-size: 32px;
        max-width: none;
    }
    .home-services-list li {
        padding-left: 0;
    }
    .home-company{
        height: auto;
    }
    .home-company .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-company-left {
        width: auto;
        padding: 0 32px 60px 32px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .home-company-right {
        width: 100%;
        position: relative;
    }
    .home-company-descr {
        max-width: none;
    }
    .home-details {
        height: auto;
    }
    .home-details-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-details .detail-subtitle {
        font-size: 20px;
    }
    .home-details .desktop {
        display: none !important;
    }
    .home-details .tablet {
        display: block;
    }
    .home-details .left {
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .home-details .left .detail-title {
        top: 32px;
        left: 32px;
    }
    .home-details .left .detail-subtitle {
        bottom: 32px;
        left: 32px;
    }
    .home-details .right {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .home-details .right-top {
        width: 66.6%;
        height: 100%;
    }
    .home-details .right-top-1 {
        height: 50%;
    }
    .home-details .right-top-2 {
        height: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #242424;
    }
    .home-details .right-bot {
        width: 33.3%;
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-details .right-bot-1 {
        width: 100%;
        background: #1d1d1d;
    }
    .home-details .right-bot-2 {
        width: 100%;
        background: #1d1d1d;
    }
    .home-details .right-bot-3 {
        display: none;
    }
    .order-popup .select2-container--default .select2-selection--multiple .select2-selection__rendered{
        padding: 8px 5px;
    }
    .order-popup-delivery-selects .depo .dropdown-search input:hover{
        border: none;
    }
    
}

@media (max-width: 560px) {
    .order-popup {
        background: #f9f9f9;
    }
    .order-popup_mobile {
        padding: 0 8px;
    }
    .order-popup_mobile-title {
        margin-left: 8px;
    }
    .order-popup_mobile-delivery {
        padding: 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: white;
    }
    .order-popup_mobile-delivery .depo {
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e5e5;
    }
    .order-popup_mobile-delivery .depo>p {
        margin-top: 0;
    }
    .order-popup_mobile-delivery .date {
        padding-top: 16px;
    }
    .order-popup_mobile-delivery .date>p {
        margin-top: 0;
    }
    .order-popup_mobile-add_detail {
        margin-bottom: 4px;
    }
    .order-popup_mobile-add_detail-title {
        margin-left: 8px;
        margin-bottom: 16px;
    }
    .order-popup_mobile-add_detail-selects .dropdown-search {
        position: relative;
    }
    .order-popup_mobile-add_detail-selects::after {
        content: '';
        display: block;
        width: 10px;
        height: 8px;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: url(../img/triangle-icon.svg) no-repeat center;
        cursor: pointer;
    }
    .order-popup_mobile-add_detail-selects input {
        padding: 0 16px;
        height: 68px;
        background: white;
        font-size: 20px;
    }
    .order-popup_mobile-add_detail-selects span {
        display: none;
    }
    .order-popup_mobile-details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .order-popup_mobile-details .detail {
        padding: 0 16px 0 16px;
        background: white;
    }
    .order-popup_mobile-details .detail:not(:last-child) {
        margin-bottom: 16px;
    }
    .order-popup_mobile-details .detail .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .order-popup_mobile-details .detail .row:not(:last-child) {
        margin-bottom: 0;
    }
    .order-popup_mobile-details .detail .row>div {
        padding: 16px 0;
    }
    .order-popup_mobile-details .detail .row-1>div {
        border-bottom: 1px solid #e5e5e5;
    }
    .order-popup_mobile-details .detail .row-2>div:first-child {
        border-bottom: 1px solid #e5e5e5;
    }
    .order-popup_mobile-details .detail .row-3 .quantity {
        padding: 0;
        margin-top: 16px;
    }
    .order-popup_mobile-details .detail .row-4 {
        padding: 24px 0;
    }
    .order-popup_mobile-details .select2-container.select2-container--default {
        min-width: 100% !important;
    }
    .order-popup_mobile-details .row.row-3 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .order-popup_mobile-details .row.row-4 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .order-popup_mobile .dropdown-search input {
        width: 100%;
    }
    .order-popup-buttons {
        padding: 0px 8px 56px 8px;
    }
    .order-popup-buttons .upload-file__wrapper{
        width: 100%;
    }
    .order-popup-buttons-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .order-popup-buttons .order-popup-buttons-left a {
        width: 100%;
    }
    .order-popup-buttons-left a:not(:last-child) {
        margin-bottom: 16px;
    }
    /* .order-popup-buttons-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    } */
    .order-popup-buttons-right .add-order {
        width: 100%;
        margin-bottom: 16px;
    }
    .order-popup-buttons-right .attention {
        width: 100%;
    }
    #popupMainCalc .order-popup-details .right_params .col{
        font-size: 16px;
    }
    .order-popup-details .location .dropdown-search input{
        font-size: 16px;
    }
    .order-popup-details .date input{
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .home-details {
        height: auto;
    }
    .home-details-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-details .tablet {
        display: none;
    }
    .home-details .mobile {
        display: block;
    }
    .home-details .detail-title {
        font-size: 28px;
    }
    .home-details .left {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .home-details .right {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .home-details .right-top {
        width: 100%;
    }
    .home-details .right-top-1 {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 100%;
    }
    .home-details .right-top-2 {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 100%;
    }
    .home-details .right-bot {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .home-details .right-bot-1 {
        width: 50%;
    }
    .home-details .right-bot-2 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .home-video-title {
        font-size: 44px;
        line-height: 52px;
        word-break: normal;
    }
    .home-partner .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 35px;
    }
    .home-partner-left .your-partner {
        width: auto;
        margin-bottom: 30px;
    }
    .home-partner-left .about-company {
        display: none;
    }
    .home-partner-right ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .home-partner-right ul li {
        margin-bottom: 30px;
        width: 100%;
    }
    .home-partner-right ul li:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .home-partner-right ul li:nth-child(2) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .home-partner-right ul li:nth-child(3) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .home-partner-right ul li:nth-child(4) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .home-partner-right ul li:nth-child(5) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .home-partner-right ul li:nth-child(6) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 376px) {
    h1 {
        font-size: 44px;
    }

    /* .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    } */

    .home-video .container {
        padding: 0 32px !important;
    }
    .home-video-descr {
        font-size: 20px;
    }
    .home-services {
        padding-bottom: 230px;
        background-size: 232%;
        background-position: 77% bottom;
    }
    .home-services .container {
        padding-top: 60px !important;
    }
    .home-services-title {
        font-size: 28px;
    }
    .home-services-descr {
        font-size: 32px;
    }
    .home-services-list {
        font-size: 20px;
    }
    .home-company .container {
        padding: 0 !important;
    }
    .home-company-left {
        padding-left: 16px;
        padding-right: 16px;
    }
    .order-popup-details .col-6 .copy{
        width: 0;
    }
    .order-popup-details .col-6 .copy::after{
        right: -85px;
    }
    .order-popup-details .col-6 .delete{
        width: 0;
    }
    .order-popup-details .col-6 .delete::before{
        left: -65px;
    }
}
	.header-nav-left>a>img {
        width: 110px;
        margin-top: 5px;
    }
	.adress_block-top img{
		width:115px;
	}
@media(max-width: 1300px) and (min-width: 993px) {
    .header-nav-left>a>img {
        width: 110px;
        margin-top: 5px;
    }
    .header-nav-left>ul {
        padding-left: 25px;
    }
    .header-nav-left>ul>li:not(:last-child) {
        margin-right: 15px;
    }
    .header-nav-left-list>li {
        font-size: 14px;
    }
    .header-nav-right ul {
        margin-right: 25px;
        font-size: 14px;
    }
    .header-nav-right-icons #bx_basketFKauiI {
        margin-right: 15px;
    }
    .home-partner-right {
        margin-left: 60px;
    }
    .home-details .detail-subtitle {
        font-size: 20px;
    }
    .home-services-descr {
        padding-right: 15px;
        word-break: break-word;
        font-size: 40px;
    }
    .home-services-right {
        width: 50%;
    }
    .home-services {
        height: 925px;
    }
    .home-partner-right ul li {
        font-size: 16px;
    }
    .home-company{
        height: 45vw;
    }
    .home-company-left {
        padding-bottom: 50px;
    }
    .home-company-right {
        overflow: hidden;
    }
    .home-company-right video {
        /* width: auto; */
        /*height: 460px;*/
    }
    .adress_block-top img {
        width: 140px;
    }
    .footer .contacts_block-top .numbers a {
        font-size: 16px;
    }
    .footer-top>div {
        padding-right: 20px;
        max-width: 27%;
    }
    .footer .adress_block-bot a {
        font-size: 20px;
    }
    .footer-politics {
        flex-wrap: wrap;
    }
    .footer-politics>ul {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .footer-copyright {
        margin-bottom: 10px;
    }
    .footer .contacts_block {
        padding-right: 0;
    }
    .footer .contacts_block-top {
        margin-top: 4px;
    }
    .header-nav .dropdown>li {
        margin-right: 20px;
        margin-bottom: 30px;
    }
    .header-nav .dropdown {
        padding: 40px 15px 0 15px;
        flex-wrap: wrap;
    }
    .header-nav .more_info {
        padding: 40px 15px 0 15px;
    }
    .header-nav .dropdown .catalog_link {
        width: 15.2%;
    }
}
@media (max-width:1150px) {
    .header .container {
        padding: 0 10px;
    }
}

@media(min-width: 993px) {
    .home-services-left {
        width: 50%;
    }
    .home-services-right {
        width: 50%;
    }
}



.header-nav .dropdown-container .container {
    display: flex;
    height: auto;
    width: 100%;
}

.header-nav .dropdown-container {
    -ms-flex-direction: row;
    flex-direction: row;
    height: 400px;
}

.header-nav .dropdown-container>a {
    width: 15%;
    margin-top: 40px;
    padding-left: 40px;
}


.header-nav .dropdown-container .col-right {
    min-width: 318px;
    width: 318px;
    padding-top: 40px;
    overflow: hidden;
}

.header-nav .dropdown-container .col-left {
    min-width: 194px;
    width: 194px;
    padding-top: 40px;
}

.header-nav .dropdown-container .col-mid {
    flex: 1;
}

.header-nav .dropdown-container .dropdown {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    height: 400px;
}

@media(max-width: 1299px) {
    .header-nav .dropdown-container .col-left {
        min-width: 137px;
        width: 137px;
    }
}

@media(max-width: 1199px) {
    .header-nav .dropdown a {
        font-size: 14px;
    }
    .header-nav .dropdown-container .col-right {
        min-width: 300px;
        width: 300px;
    }
}

.header-nav .dropdown-lvl_2 {
    flex-direction: column!important;
}


.header-nav .dropdown {
    width: 55%;
    margin: 0;
    padding: 40px 40px 0 0;
}

.header-nav .more_info {
    width: 100%;
    background: #F9F9F9;
    padding: 30px 39px;
}

.header-nav .more_info span {
    margin-bottom: 16px;
}

.header-nav .more_info .header-zvonok {
    margin-top: 44px;
    width: 134px;
}

.header-nav .dropdown>li {
    margin-bottom: 40px;
}

.header-nav .more_info {
    width: 100%;
    background: #F9F9F9;
    padding: 30px 39px;
}

.header-nav .more_info a {
    display: block;
    margin-bottom: 4px;
}

/*.header .header-nav {*/
/*    position: initial;*/
/*}*/


.bx-hdr-profile{
    position: relative;
}

.basket-add{
    position: absolute;
    top: 73px;
    right: -31px;
    z-index: 10;
    border-radius: 2px;
    background: #c51315;
    width: 260px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: none;
}
.basket-add:before{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #D62631;
    position: absolute;
    top: -7px;
    transform: rotate(45deg);
    right: 77px;
}
.icon-cart{
    position: relative;
}
.header-nav-right-icons{
    position: relative;
}
@media(max-width: 1381px){
    .basket-add:before{
        right: 35px;
    }
    .basket-add{
        right: 12px;
    }
}
@media(max-width: 1024px){
    .basket-add:before{
        right: 20px;
    }
    .basket-add{
        right: -15px;
    }
    .header-nav-right-icons > div{
        margin-right: 0!important;
    }
    .home-details video {
        display: none !important;
    }
}
@media (max-width:768px) {
    .order-popup-delivery-selects{
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        padding-top: 16px;
        margin-top: 32px;
    }
    .order-popup-delivery-selects p{
        padding-left: 16px;
        font-size: 14px;
        color: #343434;
        opacity: 0.5;
    }
    .depo-icon {
        display: block;
        width: 15px;
        height: 18px;
        margin-left: 16px;
        background: url('/local/templates/main/img/location-icon.svg') no-repeat center;
        margin-bottom: 8px;
    }
    .order-popup-delivery-selects .depo .dropdown-search input{
        width: 100%;
        padding:  8px 0 8px 12px;
    }
    .dropdown-search {
        display: flex;
        align-items: center;
    }
    .order-popup-add_detail-selects .dropdown-search {
        display: block;
    }
    .col-9 .delete{
        padding-right: 11px;
    }
    .order-popup-delivery-selects .select{
        margin-right: 0;
        width: 100%;
    }
    #popupMainCalc .order-popup-delivery-selects .date{
        width: 100%;
    }
    .order-popup-content{
        padding: 56px 8px 42px 8px;
        
    }
    .select.depo{
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .order-popup-delivery-selects .depo .dropdown-search{
        padding-bottom: 8px;
    }
    .order-popup-delivery-selects .depo .dropdown-search::before{
        right: -5px;
    }
}
.req {
  font-family: "Arial";
  color: #D62631;
}


.order-form-accept .confirm.disabled {
    background: #c4c4c4;
    pointer-events: none;
}

/*# sourceMappingURL=style.css.map */