

/* Start:/local/templates/ek_2023/components/bitrix/news.list/support.service.centers/style.css?16915015086592*/
.filter-box .input-box {
    flex: 1 1 auto;
    padding: 0 0 20px;
    margin: 20px 0 0;
}
.filter-box .data-input-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: transparent;
    display: none;
    transition: 0.3s ease;
}
.filter-box .input-box:hover .data-input-wrapper {
    display: block;
}
.filter-box.filter-country .input-box:hover .data-input-wrapper {
    width: calc(100vw - 30px);
}

.service-centers {
    flex-direction: column;
}
.service-centers__map {
    padding-top: 400px;
    width: 100%;
    position: relative;
    margin-top: 20px;
}
.service-centers__map #map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.balloon-point {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    width: 40px;
    padding-top: 10px
}

.service-centers__list {
    display: grid;
    grid-gap: 15px;
    margin: 15px 0;
}
.dealer__box {
    box-shadow: 0px 0px 18px rgb(0 0 0 / 25%);
    border-radius: 3px;
    padding: 20px 30px;
    font-size: 14px;
    min-height: 150px;
}
.dealer__title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}
.dealer__show-map {
    text-decoration: underline;
    cursor: pointer;
}
.dealer__address-box {
  position: relative;
}
.dealer__icon {
    position: relative;
    padding-left: 25px;
}
.dealer__address-box.dealer__icon {
  padding-left: 0;
  flex-direction: row;
  justify-content: flex-start;
}
.dealer__icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
}
.dealer__address-box.dealer__icon::before {
  position: relative;
  display: inline-block;
  top: unset;
  left: unset;
}
.dealer__address-box.dealer__icon::before,
.dealer__address-box::before {
    background: url(/images/svg/icon-map-address.svg) no-repeat center center / contain;
}
.dealer__mail::before {
    background: url(/images/svg/icon-map-mail.svg) no-repeat center center / contain;
}
.dealer__site::before {
    background: url(/images/svg/icon-map-site.svg) no-repeat center center / contain;
}
.dealer__phone-box::before {
    background: url(/images/svg/icon-map-phone.svg) no-repeat center center / contain;
}
.dealer__www-box {
    margin: 10px 0;
    display: grid;
    grid-template-rows: auto;
    grid-row-gap: 10px;
}
.dealer__phone-box {
    display: flex;
}
.dealer__show-phone {
    padding: 10px 25px;
    border: 2px solid var(--color-primary);
    box-sizing: border-box;
    border-radius: 3px;
    color: var(--color-primary);
    background: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dealer__show-phone:hover {
    box-shadow: 0px 0px 18px rgb(0 0 0 / 25%);
}
.dealer__show-phone.phone-shown {
    padding: 0;
    height: unset!important;
    border: none;
    justify-content: flex-start;
}
.dealer__show-phone.phone-shown:hover {
    box-shadow: none;
    cursor: default;
}
.dealer__show-phone.phone-shown a {
    color: #000;
}

.dealer__phone-box {
  flex-direction: column;
}
.dealer__address-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.dealer__address-btn {
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-primary);
  padding: 0 15px;
  width: 220px;
}
.dealer__address-service_point {
  border-width: 2px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
}
.dealer__address-service_point::before {
  background: url(/images/svg/icon-map-address-green.svg) no-repeat center center / contain;
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.dealer__address-popup {
  display: none;
  opacity: 0;
  transition: 0.2s ease opacity;
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  background: #fff;
  box-shadow: 0px 0px 18px rgb(0 0 0 / 25%);
  padding: 33px 20px 20px;
  flex-direction: column;
  gap: 20px;
  color: var(--color-primary);
  font-weight: 400;
}
.dealer__address-btn.opened .dealer__address-popup {
  display: flex;
  opacity: 1;
  z-index: 2;
}
.dealer__address-title {
  text-align: center;
}
.text-bold {
  font-weight: 700;
}
.dealer__address-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.dealer__address-close::before,
.dealer__address-close::after {
  content: '';
  width: 22px;
  height: 2px;
  background: #7d7d7d;
  position: absolute;
  top: 9px;
  left: -3px;
  transition: 0.3s ease-out;
}
.dealer__address-close::before {
  transform: rotate(45deg);
}
.dealer__address-close::after {
  transform: rotate(-45deg);
}
.dealer__address-close:hover::before{
  transform: rotate(225deg);
}
.dealer__address-close:hover::after {
  transform: rotate(135deg);
}

@media all and (min-width: 576px) {
    .service-centers__filter {
        display: flex;
    }
    .filter-box {
        min-width: 250px;
    }
    .filter-box + .filter-box {
        margin-left: 15px;
    }
    .filter-box.filter-country .input-box:hover .data-input-wrapper {
        max-width: 250px;
    }
}
@media all and (min-width: 768px) {
    .filter-box {
        min-width: 300px;
    }
    .filter-box.filter-country .input-box:hover .data-input-wrapper {
        max-width: 300px;
        width: 300px;
        right: 0;
    }
    .dealer__box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 20px;
        grid-column-gap: 20px;
        padding: 10px 30px;
    }
    .dealer__name-box {
      grid-row: span 2;
      align-self: center;
    }
    .dealer__show-phone {
        padding: 10px 20px;
    }
    .dealer__www-box {
        margin: 0;
        align-self: center;
    }
    .dealer__address-box {
      margin-top: 0;
      align-self: center;
      height: 100%;
      justify-content: center;
      grid-row: span 2;
    }
    .dealer__address-box.dealer__icon {
      height: unset;
    }
    .dealer__phone-box {
      align-self: center;
    }
    .dealer__address-popup {
      top: -10px;
      bottom: -10px;
      left: -30px;
      right: -30px;
    }
}
@media all and (min-width: 1200px) {
    .dealer__box {
      grid-template-columns: 280px 295px 215px 1fr;
      grid-column-gap: 35px;
      padding: 10px 40px;
    }
    .dealer__name-box {
      grid-row: span 1;
    }
    .dealer__show-phone {
        width: 100%;
        margin-bottom: auto;
    }
    .dealer__address-box {
      grid-row: span 1;
    }
}
/* End */


/* Start:/local/templates/ek_2023/components/bitrix/main.userconsent.request/rperf/user_consent.css?17514575906938*/
.main-user-consent-request a {
	cursor: pointer;
}

.main-user-consent-request-popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: hidden;
	z-index: 99999;
}

.main-user-consent-request-popup-cont {
	min-height: 290px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	padding: 20px;
	min-width: 320px;
	width: 100%;
	max-width: 600px;
	background: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: auto;
}

.main-user-consent-request-popup-header {
	margin-bottom: 20px;
	font-size: 30px;
	color: rgba(87, 87, 86, 1);
	font-weight: 700;
}

@media only screen and (max-width: 991px) {
	.main-user-consent-request-popup-header {
		font-size: 22px;
		text-align: left;
	}
}

.main-user-consent-request-popup-textarea-block {
	margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 991px) {
	.main-user-consent-request-popup-buttons {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 20px;
	}
}


.main-user-consent-request-popup-button-acc {
	background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
	background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
	-webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
	box-shadow: inset 0 0 0 1px #a1a6ac;
	background: none;
}

.main-user-consent-request-popup-button-rej:hover {
	background: #cfd4d8;
}

.main-user-consent-request-popup-text {
	border: 1px solid #999;
	overflow: auto;
	padding: 8px;
	text-align: left;
	color: rgb(84, 84, 84);
	font-size: 16px;
}

.main-user-consent-request-popup-link {
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.main-user-consent-request-popup-link a {
	display: block;
	margin: 20px 0 0 0;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 260px;
}

/** LOADER **/
.main-user-consent-request-loader {
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.main-user-consent-request-path {
	stroke: #80868e;
	stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.main-user-consent-request-circular {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: inherit;
	width: inherit;
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.main-user-consent-request-path {
	stroke: #ccc;
	stroke-dasharray: 60, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}

.main-user-consent-request-announce {
	color: #333;
	font-size: 13px;
	line-height: 15px;
}

.main-user-consent-request-announce-link {
	cursor: pointer;
}

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

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

@media (min-width: 1000px) {

	.main-user-consent-request-popup-cont {
		min-height: 400px;
		width: 100%;
		max-width: 1140px;
		padding: 40px;
		border-radius: 20px;
	}

	.main-user-consent-request-popup-header {
		text-align: left;
	}

	.main-user-consent-request-popup-text,
	.main-user-consent-request-popup-link {
		height: 240px;
	}

	.main-user-consent-request-popup-link a {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.main-user-consent-request-popup-cont {
		height: 100%;
	}
}


.main-user-consent-request-popup-text {
	border: 0;
}


.main-user-consent-request-popup-text::-webkit-scrollbar {
	width: 10px;
	height: 100%;
	background: #fff;
	border: 1px solid rgba(181, 181, 181, 1);
}


.main-user-consent-request-popup-text::-webkit-scrollbar-thumb {
	width: 10px;
	background: rgba(181, 181, 181, 1);


}




.main-user-consent-request-popup-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	border-radius: 10px;
	min-width: 350px;
	font-size: 16px;
	font-weight: 700;
	margin-right: 30px;
	transition: 300ms;
	cursor: pointer;
}

.main-user-consent-request-popup-button:last-child {
	margin-right: 0;
}


@media only screen and (max-width: 991px) {
	.main-user-consent-request-popup-button {
		margin-right: 0;
		width: 100%;
	}
}


.main-user-consent-request-popup-button-acc {
	background: rgba(242, 96, 101, 1);
	border: 0;
	border-radius: 0;
	color: #fff;

}

.main-user-consent-request-popup-button-acc:hover {
	background: rgba(208, 64, 69, 1);

}

.main-user-consent-request-popup-button-acc:active {
	background: rgba(186, 41, 46, 1);

}


.main-user-consent-request-popup-button-rej {
	border: 1px solid rgba(226, 14, 24, 1);
	color: rgba(226, 14, 24, 1);
	background: #fff;
	border-radius: 0;
}

.main-user-consent-request-popup-button-rej:hover {
	border: 1px solid rgba(159, 40, 44, 1);
	color: rgba(159, 40, 44, 1);
	background: #fff;

}

.main-user-consent-request-popup-button-rej:active {
	border: 1px solid rgba(7, 55, 126, 1);
	color: rgba(7, 55, 126, 1);
	background: #fff;

}


@media only screen and (max-width: 991px) {
	.main-user-consent-request-popup-text {
		height: calc(100vh - 341px);

		font-size: 16px;
	}
}



.main-user-consent-request-popup-header {
	font-size: 32px;
	font-weight: 400;
	color: rgba(29, 29, 29, 1);
}


.main-user-consent-request-popup-text {
	color: rgba(29, 29, 29, 1);
}



.main-user-consent-request-popup-button-acc {
	width: 250px;
	height: 40px;
	background: #28ad62;
	min-width: 250px;
}


.main-user-consent-request-popup-button-acc:hover {
	background: #037434;

}

.main-user-consent-request-popup-button-acc:active {
	background: rgba(29, 29, 29, 1);
}

.main-user-consent-request-popup-button-rej {
	min-width: 250px;
	width: 250px;
	height: 40px;
	border: 1px solid #28ad62;
	color: #28ad62;
}

.main-user-consent-request-popup-button-rej:hover {
	color: #037434;
	border: 1px solid #037434;
}

.main-user-consent-request-popup-button-rej:active {
	color: rgba(29, 29, 29, 1);
	border: 1px solid rgba(29, 29, 29, 1);
}


@media only screen and (max-width: 991px) {
	.main-user-consent-request-popup-header {
		font-size: 20px;
	}

	.main-user-consent-request-popup-text {
		height: calc(100vh - 252px);
	}

	.main-user-consent-request-popup-button-rej {
		width: 100%;
	}

	.main-user-consent-request-popup-button-acc {
		width: 100%;
	}

	.main-user-consent-request-popup-buttons {
		gap: 10px;
	}
}
/* End */
/* /local/templates/ek_2023/components/bitrix/news.list/support.service.centers/style.css?16915015086592 */
/* /local/templates/ek_2023/components/bitrix/main.userconsent.request/rperf/user_consent.css?17514575906938 */
