@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orelega-One";
  src: url("../fonts/OrelegaOne-Regular.eot");
  src: url("../fonts/OrelegaOne-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OrelegaOne-Regular.woff") format("woff"), url("../fonts/OrelegaOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* variables */
:root {
  --site-bg-color: #FFFFFF;
  --main-color: #A60822;
  --sub-main-color: #D90A2C;
  --main-neutral-color: #FFDCE2;
  --bg-neutral-color: #F5F7FA;
  --text-color: #2C2A39;
  --text-light: #868F9E;
  --text-contrast: #EBEDF0;
  --btn-bg: #D90A2C;
  --btn-text: #FFFFFF;
  --btn-bg-hover: #D90A2C;
  --btn-text-hover: #FFFFFF;
  --btn-bg-active: #A60822;
  --btn-text-active: #FFFFFF;
  --btn-bg-contrast: #F5F7FA;
  --btn-text-contrast: #D90A2C;
  --btn-bg-hover-contrast: #2C2A39;
  --btn-text-hover-contrast: #F5F7FA;
  --btn-bg-active-contrast: #D90A2C;
  --btn-text-active-contrast: #FFFFFF;
  --border-color: #868F9E;
  --border-color-active: #2C2A39;
  --icon-color: #D90A2C;
  --active-icon-color: #A60822;
  --link-color: #A60822;
  --link-color-active: #2C2A39;
  --section-bottom: 80px;
}

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

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

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

img {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

BODY, HTML {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  min-width: 360px;
  height: 100%;
  color: var(--text-color);
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--site-bg-color);
  position: relative;
}

main {
  position: relative;
  flex: 1 0 auto;
}

input[type=text], input[type=password], input[type=tel], input[type=number], input[type=email], textarea {
  color: #868F9E;
  font-size: 14px;
  line-height: 17px;
  height: 60px;
  border-radius: 4px;
  padding: 0 30px 0 20px;
  border: 1px solid #EBEDF0;
  transition: 0.3s;
}

textarea {
  height: 150px;
}

input[type=text]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=number]:hover, input[type=email]:hover, textarea:hover {
  border-color: #FFDCE2;
}

input[type=text].error, input[type=password].error, input[type=tel].error, input[type=number].error, input[type=email].error, textarea.error {
  border-color: #EE3C30;
}

input[type=text]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=number]:disabled, input[type=email]:disabled, textarea:disabled {
  color: #868F9E;
  background-color: #F5F7FA;
  border-color: #EBEDF0;
}

input[type=text]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=number]:focus, textarea:focus {
  color: var(--text-color);
  border-color: var(--sub_main-color);
  outline: 0;
  outline-offset: 0;
}

input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input:focus {
  outline: none !important;
  border-color: #1F1F1F;
}

textarea {
  font-size: 14px;
  line-height: 17px;
  border: 1px solid #EBEDF0;
  resize: none;
  outline: none;
  padding-left: 20px;
  padding-top: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

textarea.resize_textarea {
  resize: vertical;
}

a {
  font-weight: 500;
  color: var(--link-color);
}

a:hover {
  text-decoration: none;
}

a.style_link {
  color: var(--link-color-active);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

a.style_link:hover {
  color: var(--link-color);
}

a.style_link span {
  line-height: 1;
  border-bottom: 1px dashed var(--link-color);
  transition: 0.3s;
}

a.style_link .icon + span {
  margin-left: 15px;
}

a.style_link span + .icon {
  margin-left: 15px;
}

article > * {
  margin-bottom: 30px;
}

article a {
  color: var(--link-color);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: 0.3s;
}

article a:hover {
  color: var(--link-color-active);
}

article li {
  position: relative;
  padding-left: 10px;
}

article li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

a:active {
  color: inherit;
  /* НЕ УДАЛЯТИ */
}

.main_title,
h1 {
  font-family: "Orelega-One";
  font-weight: 700;
  display: inline-block;
  font-size: 40px;
  line-height: 1.2;
  text-decoration: none;
  color: var(--text-color);
  margin-bottom: 40px;
  transition: 0.3s;
}

a.main_title:hover {
  opacity: 0.7;
}

.section_title,
h2 {
  font-family: "Orelega-One";
  font-weight: 700;
  display: inline-block;
  font-size: 30px;
  line-height: 1.2;
  text-decoration: none;
  color: var(--text-color);
  margin-bottom: 28px;
  transition: 0.3s;
}

.item_title,
h3 {
  font-family: "Orelega-One";
  font-weight: 700;
  display: inline-block;
  font-size: 22px;
  line-height: 1.2;
  text-decoration: none;
  color: var(--text-color);
  margin-bottom: 20px;
  transition: 0.3s;
}

a.sub_title:hover {
  opacity: 0.7;
}

.centre {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1540px;
}

.centre.slim_centre {
  max-width: 1370px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: var(--icon-color);
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 5px 20px;
  min-height: 60px;
  border-radius: 6px;
  background-color: var(--btn-bg);
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn:hover {
  color: var(--btn-text-hover);
  background-color: var(--btn-bg-hover);
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(217, 10, 44, 0.35);
}

.btn:active {
  color: var(--btn-text-active);
  background-color: var(--btn-bg-active);
}

.btn.not_active {
  opacity: 0.4;
}

.btn.not_active:hover {
  color: var(--btn-text);
  background-color: var(--btn-bg);
  transform: none;
}

.btn.btn_contrast {
  color: var(--btn-text-contrast);
  background-color: var(--btn-bg-contrast);
}

.btn.btn_contrast:hover {
  color: var(--btn-text-hover-contrast);
  background-color: var(--btn-bg-hover-contrast);
  box-shadow: none;
}

.btn.btn_contrast:active {
  color: var(--btn-text-hover-contrast);
  background-color: var(--btn-bg-hover-contrast);
  filter: contrast(1.2);
}

.btn.btn_contrast.not_active {
  color: var(--btn-text-hover-contrast);
  background-color: var(--btn-bg-hover-contrast);
}

.btn.btn_light {
  color: var(--sub-main-color);
  background-color: #F7DFE3;
}

.close_btn {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.close_btn::before,
.close_btn::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--icon-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s;
}

.close_btn::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close_btn::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close_btn:hover::before,
.close_btn:hover::after {
  background-color: #EE3C30;
}

.shadow {
  font-size: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32, 30, 80, 0.4);
  z-index: 10;
  cursor: pointer;
}

/* ДРОПДАУН */
.dropdown {
  position: relative;
  margin-bottom: 10px;
  height: 62px;
  background: #EBEDF0;
  border: 10px solid #EBEDF0;
  border-radius: 6px;
  z-index: 1;
  transition: 0.3s;
}

.dropdown.dropdown-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown.error {
  border-color: var(--error-color);
}

.dropdown_short {
  width: 68px;
  height: 30px;
  margin: 0 20px;
  color: #1d1d1d;
}

.dropdown_short:hover .drop_arrow {
  background-color: #5ead5a;
}

.dropdown.dropdown-open {
  z-index: 2;
}

.dropdown.dropdown_short.dropdown-open {
  width: 68px;
}

.dropdown .overflow {
  width: 100%;
  height: 100%;
  padding: 0 42px 0 0;
  background-color: var(--site-bg-color);
  position: relative;
  border-radius: 3px;
  border: 1px solid transparent;
  float: left;
  overflow: hidden;
  transition: 0.3s;
}

.dropdown.dropdown_selected .overflow::before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
}

.dropdown:hover .overflow,
.dropdown.dropdown-open .overflow {
  border-color: #FFDCE2;
}

.dropdown.short .overflow {
  width: 138px;
}

.dropdown.dropdown-open .overflow {
  z-index: 10;
}

.dropdown Span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  height: 100%;
  padding: 0 0 0 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: 2;
}

.dropdown_short Span {
  padding: 0 10px;
}

.dropdown UL {
  position: absolute;
  top: calc(100% + 10px);
  right: -10px;
  left: -10px;
  background: #fff;
  border-bottom-right-radius: var(--border-r-size);
  border-bottom-left-radius: var(--border-r-size);
  z-index: 4;
  margin: 0;
  border-top: none;
  overflow: auto;
  display: none;
}

.dropdown_short ul {
  border-radius: 3px;
  top: 28px;
  overflow: auto;
}

.dropdown UL LI {
  position: relative;
  float: left;
  background: none;
  width: 100%;
  font-size: 15px;
  line-height: 1.2;
}

.dropdown_short UL LI {
  border: none;
}

.dropdown UL LI A {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  color: var(--text-color);
  width: 100%;
  float: left;
  padding: 12px 26px;
  transition: 0.3s;
}

.dropdown UL LI A::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.dropdown UL LI A:hover::before {
  background-color: var(--main-color);
}

.dropdown_short ul li a {
  color: var(--text-color);
  text-align: center;
  padding: 6px 0;
}

.dropdown UL LI A:hover {
  background-color: #F5F7FA;
}

.dropdown_short ul li a:hover {
  background-color: #F5F7FA;
  color: initial;
}

.dropdown UL LI A.selected {
  display: none;
}

.drop_arrow {
  font-size: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.drop_arrow::after,
.drop_arrow::before {
  content: "";
  width: 1px;
  height: 7px;
  background-color: #686868;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: bottom;
}

.drop_arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drop_arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown.dropdown-open .drop_arrow::after,
.dropdown.dropdown-open .drop_arrow::before {
  transform-origin: top;
}

.dropdown.dropdown-open .drop_arrow,
.drop_arrow:hover {
  background-color: var(--neutral-color);
}

.dropdown_short .drop_arrow {
  right: -1px;
  top: -1px;
  background-color: #70c46a;
  border-radius: 0 3px 3px 0;
  width: 31px;
  height: 30px;
}

.dropdown_short .drop_arrow:after {
  border-width: 6px 3.5px 0 3.5px;
  border-color: #ffffff transparent transparent transparent;
  margin-left: -3.5px;
}

.dropdown_sm {
  background-color: #fff;
  height: 45px;
}

.dropdown_sm .drop_arrow {
  width: 45px;
  height: 45px;
}

.dropdown_sm .drop_arrow:after {
  border-width: 8px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  margin: -4px 0 0 -6px;
}

.options_dropdown_list UL LI {
  position: relative;
  padding: 0 0 0 10px;
}

.options_dropdown_list UL LI:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 11px;
}

.options_dropdown_list UL LI A {
  text-decoration: none;
  color: #117f8a;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.options_dropdown_list UL LI A:hover {
  color: #000;
}

.options_dropdown_tile UL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 0 0;
}

.options_dropdown_tile UL LI {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 0 3px 3px 0;
}

.options_dropdown_tile UL LI A {
  text-decoration: none;
  background-color: #f3f3f3;
  color: #000;
  padding: 5px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.options_dropdown_tile UL LI A:hover {
  background-color: #117f8a;
  color: #fff;
}

.options_dropdown_tile UL LI.disabled {
  opacity: 0.5;
}

.options_dropdown_tile UL LI.disabled a {
  cursor: default;
}

.options_dropdown_tile UL LI.disabled a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.hidden,
*[hidden] {
  display: none !important;
}

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

/* КРОКИ АНКЕТИ */
.steps {
  padding-top: 10px;
  padding-bottom: var(--section-bottom);
  background-color: var(--bg-neutral-color);
}

.steps_name {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

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

.steps_progress-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.steps_back {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  transition: 0.3s;
}

.steps_back::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.steps_back::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--main-color);
  border-left: 1px solid var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.steps_back:not(.steps_disable):hover {
  opacity: 0.7;
}

.steps_back.steps_disable {
  pointer-events: none;
}

.steps_back.steps_disable::before,
.steps_back.steps_disable::after {
  display: none;
}

.steps_back Small {
  font-size: 12px;
  color: var(--text-light);
}

.steps_progress-nav B {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.steps_progress-line {
  margin-left: -20px;
  width: calc(100% + 40px);
  height: 6px;
  background-color: #d0d0d0;
  position: relative;
}

.steps_progress-line::before {
  content: "";
  width: var(--progress);
  height: 6px;
  background-color: var(--sub-main-color);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}

.steps-content {
  padding: 30px 20px 50px 20px;
  margin-left: -20px;
  width: calc(100% + 40px);
  background-color: #fff;
}

.first_step {
  width: 100%;
}

.first_step-img {
  margin-bottom: 62px;
  width: 100%;
  height: auto;
}

.first_step-img Img {
  display: block;
  width: 100%;
  height: auto;
}

.first_step figcaption {
  display: flex;
  flex-direction: column;
}

.first_step-text {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 10px;
}

.first_step Input[type=text] {
  margin-bottom: 15px;
  max-width: 370px;
}

.first_step .btn {
  width: 100%;
  max-width: 370px;
}

.select_type {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 45px;
}

.select_type Label {
  flex: 0 1 calc(50% - 5px);
  cursor: pointer;
  margin-bottom: 25px;
}

.select_type Label:nth-child(2n+1) {
  margin-right: 10px;
}

.select_type Input[type=radio] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.select_type Figure {
  width: 100%;
}

.select_type-img {
  margin-bottom: 14px;
  width: 100%;
  height: auto;
  border: 2px solid #CCCDCE;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
}

.select_type Input:checked + figure .select_type-img {
  border-color: var(--sub-main-color);
}

.select_type-img Img {
  display: block;
  width: 100%;
  height: auto;
}

.select_type figcaption {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 26px;
}

.select_type figcaption::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #868F9E;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 0;
  transition: 0.3s;
}

.select_type Input:checked + figure figcaption::before {
  border-color: var(--sub-main-color);
}

.select_type figcaption::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--sub-main-color);
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 3px;
  transition: 0.3s;
}

.select_type Input:checked + figure figcaption::after {
  opacity: 1;
}

.select_type Figure B {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 5px;
  transition: 0.3s;
}

.steps_form label:hover Figure B {
  color: var(--sub-main-color);
}

.steps_form > * + .section_title {
  margin-top: 50px;
}

.select_type Figure Span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-light);
}

.steps_form Button[type=submit] {
  margin-top: 15px;
  width: 100%;
}

.steps_column {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.steps_column > .col-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.steps_column > .col-1 B {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.steps_column > .col-1 B Span {
  color: #D90A2C;
}

.steps_column > .col-1 Small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 5px;
}

.steps_column > .col-1 a {
  text-decoration: none;
  color: var(--link-color-active);
  margin-top: 5px;
  padding-bottom: 3px;
  border-bottom: 1px dashed var(--main-color);
  width: max-content;
  transition: 0.3s;
}

.steps_column > .col-1 a:hover {
  color: var(--link-color);
}

.color_select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.color_item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #CCCDCE;
  border-radius: 6px;
  transition: 0.3s;
}

.color_item:hover {
  border-color: #FFDCE2;
}

.color_item input[type=color] {
  -webkit-appearance: none;
  margin-right: 15px;
  padding: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #CCCDCE;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

/* -webkit */
.color_item input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color_item input[type=color]::-webkit-color-swatch {
  padding: 0;
  border: none;
  border-radius: 5px;
}

/* firefox */
.color_item input[type=color]::-moz-focus-inner {
  border: none;
  padding: 0;
  border-radius: 5px;
}

.color_item input[type=color]::-moz-color-swatch {
  padding: 0;
  border: none;
}

.color_item input[type=text] {
  width: calc(100% - 45px);
  padding: 0;
  height: 30px;
  border: none;
}

.steps_column .dropdown {
  border: none;
  border-radius: 4px;
}

.steps_column .dropdown .overflow {
  border: 1px solid #CCCDCE;
}

.steps_column .dropdown:hover .overflow {
  border-color: #FFDCE2;
}

.file_list {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  padding: 15px;
  width: 100%;
  border-radius: 4px;
  border: 1px dashed #CCCDCE;
}

.file_list Li {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 16px 12px;
  position: relative;
}

.file_list Li + Li {
  border-top: 1px solid #CCCDCE;
}

.file_list B {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.file_list Span {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-light);
}

.file_list .delete {
  position: absolute;
  top: 16px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.select_file {
  display: flex;
  flex-direction: column;
  max-width: 770px;
}

.file {
  padding: 15px;
  border: 1px dashed #CCCDCE;
  border-radius: 6px;
}

.file + .file {
  margin-top: 15px;
}

.file > .col-1 {
  display: flex;
  flex-direction: column;
}

.file B {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.file > .col-1 > span {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.file > .col-2 {
  display: flex;
  flex-wrap: wrap;
}

.file .btn {
  width: 100%;
  margin-bottom: 5px;
}

.file_box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  width: 100%;
}

.file_box .delete {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.file_box .delete .icon {
  fill: #D90A2C;
  transition: 0.3s;
}

.file_box .delete:hover .icon {
  fill: #333333;
}

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

.file .delete_file {
  font-size: 0;
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.file .delete_file::before,
.file .delete_file::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--sub-main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.file .delete_file::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.file .delete_file::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.file .delete_file:hover::before,
.file .delete_file:hover::after {
  background-color: #333;
}

.select_file + .add_block {
  margin-top: 10px;
}

.input_row {
  display: flex;
  flex-direction: column;
  max-width: 770px;
}

.input_wrap {
  width: 100%;
  position: relative;
}

.input_wrap + .input_wrap {
  margin-top: 15px;
}

.input_row + .select_file {
  margin-top: 15px;
}

.input_wrap Input {
  width: 100%;
  padding-right: 38px;
}

.input_wrap Textarea {
  width: 100%;
  height: 130px;
}

.input_wrap + .two_column {
  margin-top: 15px;
}

.length_text {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-light);
  position: absolute;
  bottom: 24px;
  right: 10px;
}

.two_column {
  display: grid;
  grid-gap: 15px;
  width: 100%;
  max-width: 770px;
}

.two_column + .two_column {
  margin-top: 15px;
}

.two_column + .input_wrap {
  margin-top: 15px;
}

.two_column-checkbox {
  position: relative;
}

.two_column-inner Input {
  width: 100%;
}

.two_column-title {
  display: block;
  margin-bottom: 10px;
}

.two_column-checkbox Input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}

.two_column-checkbox Span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px 0 55px;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #EBEDF0;
  cursor: pointer;
  transition: 0.3s;
}

.two_column-checkbox:hover Span {
  border-color: #FFDCE2;
}

.two_column-checkbox Span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #868F9E;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.two_column-checkbox Input[type=checkbox]:checked + Span::before {
  border-color: var(--sub-main-color);
}

.two_column-checkbox Span::after {
  content: "";
  margin-top: -2px;
  width: 12px;
  height: 8px;
  border-bottom: 3px solid var(--sub-main-color);
  border-left: 3px solid var(--sub-main-color);
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  transition: 0.3s;
}

.two_column-checkbox Input[type=checkbox]:checked + Span::after {
  opacity: 1;
}

.two_column + .add_block {
  margin-top: 10px;
}

.two_column + .select_file {
  margin-top: 15px;
}

.search_wrap {
  position: relative;
  margin-bottom: 15px;
}

.search_wrap Input[type=text] {
  width: 100%;
  padding-right: 50px;
}

.search_wrap a {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 40px;
  height: 100%;
}

.search_wrap .icon {
  fill: var(--text-color);
}

.map_wrap {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #EBEDF0;
}

.map_wrap > * {
  width: 100%;
  height: 100%;
}

.add_block {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.add_block:hover {
  color: var(--main-color);
}

.add_block.add_service {
  margin-top: 20px;
}

.add_block .icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.column_social {
  display: grid;
  grid-gap: 15px;
}

.social_item {
  display: flex;
  align-items: center;
  padding-left: 22px;
  border-radius: 4px;
  border: 1px solid #EBEDF0;
}

.social_item Input {
  border: none;
  flex: 1 1 auto;
}

.steps_subtitle {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  margin: 25px 0 10px 0;
}

.steps_padding {
  border: none;
  margin: 15px 0;
}

.service_price {
  display: grid;
  grid-gap: 15px;
}

.service_price > .col-1 {
  position: relative;
}

.service_price > .col-1 input {
  padding-right: 50px;
}

.service_price > .col-3 {
  position: relative;
}

.service_price > .col-3 input {
  padding-right: 50px;
}

.service_price Input {
  width: 100%;
}

.add_news {
  width: 100%;
  max-width: 770px;
}

.add_news + .input_wrap {
  margin-top: 15px;
}

.news_header {
  position: relative;
}

.news_control {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
}

.news_control.active,
.add_news.news_selected .news_control {
  display: flex;
}

.news_control A {
  display: block;
  padding: 12px;
  transition: 0.3s;
}

.news_control A:hover {
  opacity: 0.7;
}

.news_control .icon {
  width: 24px;
  height: 24px;
}

.news_control A.news_edit .icon {
  fill: var(--text-color);
}

.news_header {
  display: grid;
  grid-gap: 15px;
}

.add_news.news_selected .news_header {
  grid-gap: 0;
}

.add_news.news_selected .input_wrap Input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-color-active);
  background-color: #F5F7FA;
}

.date_wrap {
  position: relative;
}

.date_wrap Input {
  color: #868F9E;
  font-size: 14px;
  line-height: 17px;
  height: 60px;
  border-radius: 4px;
  padding: 0 30px 0 53px;
  border: 1px solid #EBEDF0;
  transition: 0.3s;
  width: 100%;
}

.date_wrap Input:hover {
  border-color: #FFDCE2;
}

.date_wrap Input:focus {
  color: var(--text-color);
  border-color: var(--sub_main-color);
  outline: 0;
  outline-offset: 0;
}

.add_news.news_selected .date_wrap Input {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: var(--border-color-active);
  margin-top: -1px;
  background-color: #F5F7FA;
}

.date_wrap .icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  fill: var(--text-color);
}

.news_content {
  padding-top: 15px;
}

.add_news.news_selected .news_content {
  display: none;
}

.open_more-steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.open_more-title {
  font-family: "Orelega-One";
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.open_more-btn {
  width: 100%;
  position: relative;
}

.open_more-btn::after {
  content: "";
  display: block;
  margin-top: -5px;
  margin-left: 15px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--sub-main-color);
  border-left: 2px solid var(--sub-main-color);
  position: relative;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.open_more-btn.active::after {
  transform: rotate(135deg);
  margin-top: 0;
}

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

.star_rating {
  color: #868F9E;
  font-size: 14px;
  line-height: 17px;
  height: 60px;
  border-radius: 4px;
  padding: 0 10px 0 20px;
  border: 1px solid #EBEDF0;
  display: flex;
  align-items: center;
}

.star_rating Span {
  margin-right: 10px;
}

.star_one {
  margin: 0 5px;
  cursor: pointer;
}

.star_one:nth-child(2) {
  margin-left: auto;
}

.star_one Svg {
  width: 30px;
  height: 30px;
}

.star_one Svg .center {
  fill: #fff;
  transition: 0.3s;
}

.star_one.active Svg .center {
  fill: #DBA507;
}

.star_one Svg .border {
  fill: #DBA507;
}